@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700;900&display=swap');

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body { 
    background: #080808; 
    color: #ddd; 
    font-family: 'Montserrat', sans-serif; 
    line-height: 1.8; 
}

/* ==========================================
   HEADER & MASAÜSTÜ MENÜ (DESKTOP)
   ========================================== */
header {
    background: rgba(0,0,0,0.95);
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    border-bottom: 1px solid #1a1a1a;
    position: sticky;
    top: 0;
    z-index: 9999;
    backdrop-filter: blur(10px);
}

.logo {
    color: #ff2e63;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 2px;
    text-decoration: none;
    white-space: nowrap;
}

.logo:hover { 
    color: #fff; 
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    z-index: 10000;
}

.nav-desktop > a, .dropdown > .dropbtn {
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    background: none;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    padding: 10px 0;
}

.nav-desktop > a:hover, .dropdown:hover > .dropbtn { 
    color: #ff2e63;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: #111;
    min-width: 260px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.6);
    border-radius: 10px;
    border: 1px solid #222;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.dropdown-submenu {
    position: relative;
}

.submenu-title {
    color: #ff2e63 !important;
    padding: 12px 16px !important;
    font-weight: 700;
    border-bottom: 1px solid #222;
    background: #111;
    text-decoration: none;
    cursor: default;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.submenu-title:hover {
    background: #111 !important;
    color: #ff2e63 !important;
}

.submenu-content {
    position: absolute;
    left: auto;
    right: 100%;
    top: 0;
    background: #111;
    min-width: 240px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.6);
    border-radius: 10px;
    border: 1px solid #222;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    margin-right: 5px;
}

.dropdown-submenu:hover .submenu-content {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.dropdown-content a, .submenu-content a {
    color: #d1d1d1;
    padding: 11px 20px;
    display: block;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
    border-bottom: 1px solid #1a1a1a;
    white-space: nowrap;
}

.dropdown-content a:last-child, .submenu-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover, .submenu-content a:hover {
    background: #222;
    color: #ff2e63;
    padding-left: 25px;
}

/* ==========================================
   HAMBURGER BUTON & MOBİL MENÜ STİLLERİ
   ========================================== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 10005;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #fff;
    transition: 0.4s;
    border-radius: 3px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(8, 8, 8, 0.98);
    display: flex;
    flex-direction: column;
    padding: 80px 30px 40px;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 99999;
}

.mobile-menu.active { 
    transform: translateX(0); 
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 3rem;
    color: #ff2e63;
    cursor: pointer;
    line-height: 1;
}

.mobile-menu a {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 8px 0;
    display: block;
    text-decoration: none;
    border-bottom: 1px solid #111;
    padding-bottom: 8px;
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: #ff2e63;
}

.mobile-section-title-main {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 900;
    margin: 25px 0 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-section-title {
    color: #ff2e63;
    font-size: 1rem;
    font-weight: 700;
    margin: 20px 0 10px;
    text-transform: uppercase;
    border-bottom: 2px solid #ff2e63;
    padding-bottom: 3px;
    display: inline-block;
}

/* ==========================================
   HERO & İÇERİK ALANLARI
   ========================================== */
.hero {
    min-height: 68vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(5, 5, 5, 0.56)), url('/img/kibris-bayan-katalog.webp') center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px 5%;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 0 10px 30px rgba(0,0,0,1);
}

.cta-btn {
    background: #ff2e63;
    color: #fff;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.1rem;
    transition: 0.4s;
    box-shadow: 0 10px 40px rgba(255,46,99,0.3);
    border: 2px solid transparent;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
}

.cta-btn:hover { 
    background: transparent; 
    border: 2px solid #fff; 
    color: #fff; 
}

.stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: -50px auto 60px;
    padding: 0 5%;
}

.stat-card {
    background: #111;
    padding: 25px;
    border-radius: 20px;
    border: 1px solid #222;
    text-align: center;
}

.stat-card h3 { 
    color: #ff2e63; 
    font-size: clamp(1.6rem, 5vw, 2rem); 
    margin-bottom: 5px; 
}

.stat-card span {
    display: block;       
    color: #ff69b4;      
    font-weight: bold;     
    font-size: 1.8rem;     
    margin-bottom: 5px;    
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 5%;
}

.blog-card {
    background: #111;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #1a1a1a;
    transition: 0.4s;
    text-decoration: none;
    display: block;
}

.blog-card:hover { 
    border-color: #ff2e63; 
    transform: translateY(-5px); 
}

.blog-card img { 
    width: 100%; 
    height: 200px; 
    object-fit: cover; 
    filter: grayscale(20%); 
}

.blog-card-body { 
    padding: 25px; 
}

.blog-card h3, .blog-card h4 { 
    color: #fff; 
    font-size: 1.1rem; 
    margin-bottom: 10px; 
}

.blog-card p { 
    color: #888; 
    font-size: 0.9rem; 
    margin-bottom: 15px; 
}

.read-more { 
    color: #ff2e63; 
    font-weight: 700; 
    text-transform: uppercase; 
    font-size: 12px; 
    letter-spacing: 1px; 
}

.wa-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: #fff;
    padding: 18px 30px;
    border-radius: 50px;
    z-index: 9999;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    text-decoration: none;
    transition: 0.3s;
}

.wa-float:hover {
    background: #128C7E;
    transform: scale(1.05);
}

footer { 
    text-align: center; 
    padding: 80px 20px; 
    color: #444; 
    border-top: 1px solid #111; 
}

.section-title { 
    text-align: center; 
    font-size: 2.5rem; 
    margin: 40px 0 20px; 
    color: #fff; 
}

.katalog-banner { 
    width: 100%; 
    margin: 40px 0; 
    text-align: center; 
}

.katalog-banner img { 
    width: 100%; 
    max-width: 1000px; 
    height: auto; 
    border-radius: 10px; 
}

.katalog-btn {
    background: #ff2e63;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    margin-top: 20px;
    transition: 0.3s;
}

.katalog-btn:hover { 
    background: #fff; 
    color: #ff2e63; 
}

/* ==========================================
   RESPONSIVE KURAL VE MEDYA SORGULARI
   ========================================== */
@media (max-width: 992px) {
    .nav-desktop { 
        display: none !important; 
    }
    .hamburger { 
        display: flex; 
    }
    header { 
        padding: 0 6%; 
    }
    .hero { 
        min-height: 60vh; 
    }
}

@media (max-width: 768px) {
    .stats-bar { 
        grid-template-columns: repeat(2, 1fr); 
        margin: -30px auto 50px; 
    }
    .blog-grid { 
        grid-template-columns: 1fr; 
    }
    .hero h1 { 
        font-size: clamp(2.2rem, 9vw, 3.5rem); 
    }
    .cta-btn { 
        padding: 14px 35px; 
        font-size: 1rem; 
    }
    .section-title { 
        font-size: 2rem; 
    }
}

@media (max-width: 480px) {
    header { 
        height: 80px; 
    }
    .logo { 
        font-size: 22px; 
    }
    .hamburger span { 
        width: 26px; 
    }
    .wa-float { 
        bottom: 20px; 
        right: 20px; 
        padding: 14px 24px; 
        font-size: 0.95rem; 
    }
}

#header-sabit {
    min-height: 90px;
    background: #080808;
    display: block;
    width: 100%;
}

.wrapper { display: flex; max-width: 1400px; margin: 40px auto; padding: 0 20px; gap: 40px; }
            .main-content { flex: 3; background: #111; padding: 40px; border-radius: 20px; border: 1px solid #222; }
            .sidebar { flex: 1; }
            h1 { font-size: 2.5rem; color: #fff; line-height: 1.2; margin-bottom: 20px; font-weight: 900; }
            h2 { color: #ff2e63; font-size: 1.8rem; margin-top: 40px; margin-bottom: 20px; border-bottom: 1px solid #333; padding-bottom: 10px; }
            h3 { color: #fff; font-size: 1.4rem; margin-top: 25px; margin-bottom: 15px; }
            p { margin-bottom: 20px; font-size: 1rem; line-height: 1.8; }
            .hero-img { width: 100%; height: 500px; object-fit: cover; border-radius: 15px; margin-bottom: 30px; border: 2px solid #222; }
            .sidebar-widget { background: #111; padding: 25px; border-radius: 15px; border-left: 5px solid #ff2e63; margin-bottom: 25px; }
            .sidebar-widget h4 { color: #ff2e63; margin-bottom: 15px; font-size: 1.2rem; }
            .sidebar-widget ul { list-style: none; padding: 0; }
            .sidebar-widget li { margin-bottom: 8px; }
            .sidebar-widget a { color: #ccc; text-decoration: none; display: block; padding: 8px 0; border-bottom: 1px solid #222; font-size: 13px; transition: 0.3s; }
            .sidebar-widget a:hover { color: #ff2e63; padding-left: 10px; }
            .wa-btn { background: #25d366; color: white; padding: 20px; display: block; text-align: center; border-radius: 10px; text-decoration: none; font-weight: 900; font-size: 20px; margin-top: 30px; }
            .katalog-banner { width: 100%; margin: 40px 0; text-align: center; }
            .katalog-banner img { width: 100%; max-width: 1000px; height: auto; border-radius: 10px; }
            .katalog-btn { background: #ff2e63; color: white; padding: 15px 30px; border-radius: 50px; text-decoration: none; font-weight: 700; display: inline-block; margin-top: 20px; transition: 0.3s; }
            .katalog-btn:hover { background: #fff; color: #ff2e63; }
            .breadcrumb { display: flex; flex-wrap: wrap; padding: 10px 0; margin-bottom: 20px; list-style: none; background: transparent; }
            .breadcrumb-item { font-size: 14px; color: #888; }
            .breadcrumb-item + .breadcrumb-item::before { content: "›"; padding: 0 10px; color: #ff2e63; }
            .breadcrumb-item a { color: #888; text-decoration: none; }
            .breadcrumb-item a:hover { color: #ff2e63; }
            .breadcrumb-item.active { color: #ff2e63; }
            .rating { color: #ff2e63; font-size: 20px; margin: 10px 0; }
            .related-posts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 30px; }
            .related-post { background: #1a1a1a; padding: 15px; border-radius: 10px; }
            .related-post a { color: #fff; text-decoration: none; }
            .related-post a:hover { color: #ff2e63; }
            .comment-count { color: #888; font-size: 14px; margin-left: 10px; }
            @media (max-width: 992px) {
                .wrapper { flex-direction: column; }
                .main-content, .sidebar { width: 100%; }
                .hero-img { height: 300px; }
                .related-posts { grid-template-columns: 1fr; }
            }
            @media (max-width: 768px) {
                .main-content { padding: 20px; }
                h1 { font-size: 2rem; }
                h2 { font-size: 1.5rem; }
            }