@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

:root {
    --primary-gold: #D5A726;
    --dark-gold: #ab851e;
    --dark-text: #212529;
    --anthracite: #4A4A4A;
    --light-bg: #f8f9fa;
    --border-color: #e9ecef;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--dark-text);
    background-color: var(--light-bg);
}

a { text-decoration: none; }

/* Base Topbar/Header */
.top-header {
    padding: 1.2rem 0;
}

/* Solid Header (For Internal Pages) */
.solid-header {
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 5px 30px rgba(0,0,0,0.06);
    position: relative;
    z-index: 100;
}
.solid-header .main-nav-menu .nav-link,
.solid-header .social-icons-wrapper .top-social-icon {
    color: #000000;
}

/* Transparent Header (For Homepage Video Overlay) */
.transparent-header {
    position: absolute;
    top: 0; left: 0; width: 100%;
    z-index: 999;
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    box-shadow: none;
}
.transparent-header .main-nav-menu .nav-link,
.transparent-header .social-icons-wrapper .top-social-icon {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.brand-logo {
    height: 115px; /* 100px'den 115px'e çıkarıldı */
    width: auto;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
}

/* Nav Menu Top Inline */
.main-nav-menu .nav-link {
    font-size: 1.08rem; /* 0.95rem'den hafif büyütüldü */
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 0.5rem 0.85rem;
    transition: all 0.3s ease;
}
.main-nav-menu .nav-link:hover, .main-nav-menu .nav-link.active {
    color: var(--primary-gold) !important;
}

.header-social-top {
    margin-left: 20px;
}
.header-social-top .top-social-icon {
    font-size: 1.2rem; /* 0.95rem'den belirgin boyuta çıkarıldı */
    transition: all 0.3s;
}

/* Hover Support for Dropdowns on Desktop */
@media all and (min-width: 992px) {
    .main-nav-menu .dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
        animation: dropFade 0.2s ease;
    }
}
@keyframes dropFade {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Dropdown Menu Styling */
.main-nav-menu .dropdown-menu {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
    min-width: 200px;
    margin-top: 10px;
}
.solid-header .dropdown-menu {
    background: #fff;
}
.main-nav-menu .dropdown-item {
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.6rem 1.5rem;
    color: #000000;
    transition: all 0.2s;
}
.main-nav-menu .dropdown-item:hover {
    background: rgba(213, 167, 38, 0.08); /* Hafif sarı arka plan */
    color: var(--primary-gold);
    padding-left: 1.8rem; /* Estetik hover kayması */
}
.brand-text {
    font-weight: 800;
    color: var(--anthracite);
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}
.brand-text span {
    color: var(--primary-gold);
}

/* Topbar Buttons */
.btn-top-outline {
    border: 1px solid var(--border-color);
    background: #fff;
    color: var(--dark-text);
    border-radius: 50px;
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
}
.btn-top-outline:hover {
    background: #f8f9fa;
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}
.btn-top-pro {
    background: var(--primary-gold);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    transition: background 0.3s ease;
}
.btn-top-pro:hover {
    background: var(--dark-gold);
    color: #fff;
}
.social-icons-wrapper .top-social-icon {
    transition: all 0.3s;
}
.social-icons-wrapper .top-social-icon:hover {
    color: var(--primary-gold) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(74, 74, 74, 0.4); /* Anthracite tint */
}
.hero-content {
    position: absolute;
    top: 58%; /* Yarıdan biraz aşağı indirildi */
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 15px;
}
.hero-title {
    font-family: 'Great Vibes', cursive; /* Çok şık ve zarif el yazısı */
    font-size: 2.8rem; /* Biraz daha küçüldü */
    font-weight: 400;
    text-transform: none; /* El yazısında büyük harf zorunluluğu kalktı */
    letter-spacing: 2px;
    margin-bottom: 1rem;
    line-height: 1.3;
    text-shadow: 0 4px 15px rgba(0,0,0,0.5); /* Okunabilirliği artıran estetik gölge */
}
.hero-title .highlight {
    color: var(--primary-gold);
}
.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* Hero Pill Buttons */
.hero-pills {
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.hero-pill-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(213, 167, 38, 0.5);
    color: #fff;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}
.hero-pill-btn:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: #fff;
}
.hero-pill-btn i { margin-right: 0.5rem; }

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
}
.dot.active { background: var(--primary-gold); }

/* Categories Section */
.categories-section {
    padding: 5rem 0;
    background: #fff;
    text-align: center;
}
.cat-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--anthracite);
    margin-bottom: 0.5rem;
}
.cat-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--text-muted); /* Note: check if var(--text-muted) is defined, default to #6c757d if not */
    font-size: 1rem;
    margin-bottom: 3rem;
}

/* Category Cards (3D Windows) */
.cat-card-wrapper {
    background: #fff;
    border: 1px solid #e4e4e4;
    border-radius: 20px;
    padding: 2.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    height: 100%;
    position: relative;
    /* 3D Extrusion Effect */
    box-shadow: 0 8px 0px #d4d4d4, 0 15px 25px rgba(0,0,0,0.06);
}
.cat-card-wrapper::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: inherit;
    box-shadow: inset 0 2px 4px rgba(255,255,255,1);
    pointer-events: none;
}
.cat-card-wrapper:hover {
    transform: translateY(4px); 
    /* Press down effect */
    box-shadow: 0 4px 0px #d4d4d4, 0 10px 15px rgba(0,0,0,0.06);
    border-color: rgba(213, 167, 38, 0.6);
}

.premium-cat-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--anthracite);
    margin-top: 1.5rem;
    margin-bottom: 0;
    transition: color 0.3s ease;
}
.cat-card-wrapper:hover .premium-cat-title {
    color: var(--primary-gold);
}
.cat-icon-box {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 1.8rem;
    background: rgba(213, 167, 38, 0.1);
}

/* Video Background */
.video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translate(-50%, -50%);
    object-fit: cover;
}
.video-background iframe, .video-background video {
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    object-fit: cover;
}

/* Logo Branded Frame Effect */
.logo-frame-wrapper {
    position: relative;
    padding: 10px;
    z-index: 1;
}
.logo-frame-wrapper::before {
    content: '';
    position: absolute;
    top: 15px;
    left: -15px;
    right: 35px;
    bottom: -15px;
    border: 4px solid var(--primary-gold);
    z-index: -1;
    transform: skew(-3deg, -3deg);
    transition: all 0.4s ease;
}
.logo-frame-wrapper::after {
    content: '';
    position: absolute;
    top: -15px;
    left: 35px;
    right: -15px;
    bottom: 15px;
    border: 4px solid var(--anthracite);
    z-index: -2;
    transform: skew(3deg, 3deg);
    transition: all 0.4s ease;
}
.logo-frame-wrapper:hover::before, .logo-frame-wrapper:hover::after {
    transform: skew(0deg, 0deg);
    top: 0; left: 0; right: 0; bottom: 0;
}
.logo-frame-wrapper img {
    position: relative;
    z-index: 2;
}

/* Icon Branded Frame Effect for Category Cards */
.icon-frame-wrapper {
    position: relative;
    padding: 5px;
    margin-bottom: 25px;
    margin-top: 15px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
}
.icon-frame-wrapper::before {
    content: '';
    position: absolute;
    top: 8px; left: -8px; right: 20px; bottom: -8px;
    border: 3px solid var(--primary-gold);
    z-index: -1;
    transform: skew(-6deg, -6deg);
    transition: all 0.4s ease;
}
.icon-frame-wrapper::after {
    content: '';
    position: absolute;
    top: -8px; left: 20px; right: -8px; bottom: 8px;
    border: 3px solid var(--anthracite);
    z-index: -2;
    transform: skew(6deg, 6deg);
    transition: all 0.4s ease;
}
.cat-card-wrapper:hover .icon-frame-wrapper::before, 
.cat-card-wrapper:hover .icon-frame-wrapper::after {
    transform: skew(0deg, 0deg);
    top: 0; left: 0; right: 0; bottom: 0;
}
.icon-frame-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

/* Removed Bottom Nav Menu */

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    font-size: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.whatsapp-float:hover {
    background-color: #128c7e;
    color: #fff;
    transform: scale(1.1);
}

@media (max-width: 991px) {
    .btn-top-outline, .btn-top-pro { margin-bottom: 10px; width: 100%; display:block; text-align:center;}
}

/* Notalar (Videonun Altına Binen ve Hareketli Yerleşim) */
.header-note-decoration {
    position: relative;
    width: 100%;
    text-align: center;
    z-index: 15; /* Videonun ve sliderın üstünde görünmesi için */
    margin-top: -80px; /* Videonun alt kısmına (içine) doğru taşması (üzerine binmesi) için */
    pointer-events: none; /* Yanlışlıkla tıklanmayı önler */
    animation: noteFloat 4s ease-in-out infinite; /* İlk baştaki o harika hareketlilik */
}

.header-note-decoration img {
    max-width: 100%;
    height: auto;
}

@keyframes noteFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); } /* Süzülme efekti */
}
