.title-wrapper {
    width: 100%;
    position: relative;
    padding: 0;
    height: max-content;
}

.title-wrapper h1 {
    text-align: center;
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    z-index: 2;
    color: var(--text-light);
    text-shadow: 4px 4px 6px rgba(66, 68, 90, 1);
}

.title-wrapper img {
    background-color: blue;
    width: 100%;
    aspect-ratio: 19 / 4;
    object-fit: cover;
    filter: blur(3px);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--main-color);
    opacity: 0.2;
    z-index: 1;
}

.nav-home {
    background-color: transparent !important;
    backdrop-filter: blur(5px);
    z-index: 1000;
}

.nav-home a {
    color: var(--text-light) !important;
    text-shadow: 4px 4px 6px rgba(66, 68, 90, 1);

}

.hero {
    width: 100%;
    max-height: 100vh;
    overflow: hidden;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;

}

.hero-slide img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center bottom; /* Görselin altı sabit kalır */
}

.hero-slide .slide-content {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    color: var(--text-light);
    padding: 1rem;
    padding-top: calc(var(--header-height) + 1rem) !important;
}

.slide-content h1 {
    text-shadow: 4px 4px 6px rgba(66, 68, 90, 1);

}
.post-slider{
}
.post-slider .title{
    font-size: 1.7rem;
    font-weight: 500;
    text-shadow: 2px 2px 6px rgba(66, 68, 90, 0.3);
}
.post-slider .slider-slide{
    width: 100%;
    margin-top: 1rem;
}
.post-slider .slider-slide .pslider-card{
    padding-bottom: 12px;
    flex: 1 0 auto;
    min-width: 250px;
    max-width: 100%;
    color: var(--text-dark);
    background-color: var(--text-light);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.pslider-card img{
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 16px;
}
.pslider-card p{
    padding-left: 12px;
}
.pslider-card .date{
color: #3c3c3c;
padding: 20px 12px;
font-size: 0.8rem;
}
 .pslider-card .p-title{
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 12px;
}
 .pslider-card .description{
    color: var(--text-dark-300);
}
.divider{
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}
.divider img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.divider .overlay{
    z-index: 2;
}
.divider .divider-card{
    z-index: 3;
    width: 30vw;
    height: calc(100% - 134px);
    position: absolute;
    right: 67px;
    bottom: 67px;
    background-color: var(--text-light);
    border-radius: 12px;
    padding: 12px;
}
.progress-container {
    width: 100%;
    height: 10px;
    position: absolute;
    bottom: 0px;
    z-index: 10;
  }
  
  .progress-bar {
    height: 100%;
    width: 0%;
    background: var(--main-color);
    transition: width 0.3s ease;
    border-radius: 0px 12px 12px 0px;
  }
@media only screen and (max-width: 900px) {
    .hero {
        height: auto !important;
        aspect-ratio: 16 / 9;
    }
    .main-swiper{
        height: auto !important;
        margin-top: var(--header-height);
    }
    .main-swiper .swiper-button-next,
    .main-swiper .swiper-button-prev,
    .main-swiper .swiper-pagination,
    .swiper-haber .swiper-button-next,
    .swiper-haber .swiper-button-prev,
    .swiper-haber2 .swiper-button-next,
    .swiper-haber2 .swiper-button-prev {
        display: none !important;
    }
    .divider .divider-card{
        width: auto !important;
        margin: 24px !important;
        bottom: 0px !important;
        right: 0px !important;
        height: auto !important;
    }
    .title-wrapper{
        height: 140px !important;
        margin-top: var(--header-height);
    }
    .title-wrapper img{
        height: 100%;
    }
    .title-wrapper h1{
        font-size: 3rem;
    }
}
