/* Sidebar Alanları */
.sidenav {
    /* Menü stil ve boyutları */
    position: fixed;
    width: 250px;
    top: 0;
    left: -250px;
    height: 100%;
    z-index: 1050;
    transition: all 0.3s;
    overflow-y: auto;
}

.sidenav.active {
    left: 0;
}

.sdprofile {
    /* Profil alanı ve resim düzeni */
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: #2c3e50;
    color: #fff;
}

.sdp-left img {
    /* Profil resmi stil ve boyutları */
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.sdp-right {
    /* Profil metinleri */
    margin-left: 15px;
}

/* Topbar Alanları */
.navbar {
    /* Sabit üst çubuk */
    position: sticky;
    top: 0;
    z-index: 1000;
}

.bg-header {
    /* Başlık çubuğu arka planı */
    background-color: #34495e;
    color: #fff;
}

.logo a {
    /* Logo metni */
    font-size: 16px;
    font-weight: 700;
}

/* Footer Alanları */
.footer {
    /* Alt bilgi çubuğu */
    padding: 20px;
    text-align: center;
    background-color: #ecf0f1;
}

/* Footer logo: alana uygun otomatik küçültme */
.footer .footer-logo {
    width: auto;
    max-width: 200px;
    max-height: 64px;
    height: auto;
    object-fit: contain;
}

/* Kategori kart görselleri ve banner yükseklik artırımı */
.home-category-list .home-box-category {
    height: 150px;
}

.section-home.home-banner img {
    width: 100%;
    height: 290px !important;
    object-fit: cover;
}

.section-subscribe {
    min-height: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.section-subscribe .subcontainer {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 760px;
    padding: 0 18px;
}

.section-subscribe .subrow,
.section-subscribe .subcol {
    width: 100%;
}

.section-subscribe .bg-subscribe img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
}

/* Alt banner üzerindeki metin rengi */
.section-subscribe .subcontainer .textsub {
    color: #111111 !important;
    text-align: center;
    font-size: 28px;
    line-height: 1.25;
    font-weight: 800;
    margin: 0 0 16px 0;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

.section-subscribe .subcontainer .more-category {
    text-align: center;
    padding-top: 0 !important;
}

@media (max-width: 768px) {
    .home-category-list .home-box-category {
        height: 130px;
    }

    .section-home.home-banner img {
        height: 220px !important;
    }

    .section-subscribe {
        min-height: 260px;
    }

    .section-subscribe .subcontainer .textsub {
        font-size: 21px;
        line-height: 1.3;
        margin-bottom: 14px;
    }

    .footer .footer-logo {
        max-width: 170px;
        max-height: 56px;
    }
}
