/*
Theme Name: Noetras Business Academy
Author: Gemini
Description: Premium Danışmanlık Teması
Version: 1.0
*/

:root {
    --color-gold: #C5A028;
    --color-gold-dark: #A6861F;
    --color-off-white: #FAFAFA;
    --color-deep-black: #0A0A0A;
    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

body {
    font-family: var(--font-sans);
    color: var(--color-deep-black);
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
}
a{
    text-decoration: none;
}
/* --- Typography & Utilities --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
}

.text-gold { color: var(--color-gold) !important; }
.bg-gold { background-color: var(--color-gold) !important; }
.bg-deep-black { background-color: var(--color-deep-black) !important; }
.text-deep-black { color: var(--color-deep-black) !important; }

.tracking-widest-2 { letter-spacing: 0.2em; }
.tracking-widest-3 { letter-spacing: 0.3em; }
.tracking-widest-4 { letter-spacing: 0.4em; }

.font-serif { font-family: var(--font-serif); }
.font-sans { font-family: var(--font-sans); }

.text-xxs { font-size: 10px; }
.text-xs-plus { font-size: 11px; }

/* --- Buttons --- */
.btn-gold-outline {
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    padding: 10px 32px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    background: transparent;
}
.btn-gold-outline:hover {
    background-color: var(--color-gold);
    color: #000;
}

.btn-gold-solid {
    background-color: var(--color-gold);
    color: var(--color-deep-black);
    padding: 20px 48px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    border: none;
    transition: all 0.5s ease;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}
.btn-gold-solid:hover {
    background-color: #fff;
    color: #000;
}

/* --- Navigation --- */
.glass-nav {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1050;
    transition: all 0.3s;
}

.nav-link-custom {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-weight: 600;
    color: #999;
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s;
}
.nav-link-custom:hover, .nav-link-custom.active {
    color: #fff;
}
.nav-link-custom::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.nav-link-custom:hover::after {
    transform: scaleX(1);
}

/* --- Components --- */
.luxury-card {
    border: 1px solid #f5f5f5; /* neutral-100 */
    background-color: #fff;
    transition: all 0.5s duration;
    height: 100%;
    padding: 3rem;
}
.luxury-card:hover {
    border-color: rgba(197, 160, 40, 0.3);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.bw-image {
    filter: grayscale(100%) contrast(110%) brightness(30%);
}

.grayscale-overlay {
    position: relative;
}
.grayscale-overlay::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0,0,0,0.6); /* brightness adjustment equivalent */
    z-index: 1;
    transition: background-color 0.7s;
}
.group:hover .grayscale-overlay::before {
    background-color: rgba(0,0,0,0.3);
}

/* --- Specific Section Overrides --- */
.section-padding { padding-top: 8rem; padding-bottom: 8rem; }
.bg-cover { background-size: cover; background-position: center; }

/* Grid Borders Imitation */
.border-right-light { border-right: 1px solid #f5f5f5; }
@media (max-width: 768px) { .border-right-light { border-right: none; border-bottom: 1px solid #f5f5f5; } }

/* Feature Box Hover */
.feature-box {
    border: 1px solid #e5e5e5;
    transition: all 0.5s;
}
.feature-box:hover {
    border-color: rgba(197, 160, 40, 0.4);
}
.feature-box:hover .material-symbols-outlined {
    transform: scale(1.1);
}

/* Footer Inputs */
.footer-input {
    background: transparent;
    border: none;
    border-bottom: 1px solid #d4d4d4;
    border-radius: 0;
    padding: 10px 0;
    font-size: 12px;
    width: 100%;
}
.footer-input:focus {
    outline: none;
    border-bottom-color: var(--color-gold);
    box-shadow: none;
}
.border-gold{
    border-color: var(--color-gold) !important;
}
/* --- NOETRAS LUXURY DROPDOWN CSS --- */

/* Dropdown Container */
.luxury-dropdown {
    background-color: #0A0A0A; /* Deep Black */
    border: 1px solid rgba(197, 160, 40, 0.3); /* Gold border opacity */
    border-radius: 0; /* Keskin köşeler */
    padding: 15px 0;
    
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    min-width: 220px;
}

/* Dropdown Items (Linkler) */
.luxury-dropdown-item {
    color: #999 !important; /* Pasif renk */
    font-family: var(--font-sans); /* Inter */
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 10px 25px;
    transition: all 0.3s ease;
    background: transparent !important;
}

/* Hover ve Active Durumu */
.luxury-dropdown-item:hover,
.luxury-dropdown-item.active {
    color: #fff !important; /* Beyaz */
    padding-left: 30px; /* Sağa kayma efekti */
    background: transparent !important;
}

.luxury-dropdown-item:hover::before {
    content: "•"; /* Gold nokta */
    color: #C5A028;
    position: absolute;
    left: 15px;
}
.tag-badge {
        font-size: 11px; text-transform: uppercase; font-weight: bold; letter-spacing: 1px;
        padding: 8px 16px; background: #f8f9fa; color: #666; text-decoration: none;
        transition: all 0.3s;
    }
    .tag-badge:hover { background: var(--color-gold); color: #000; }
.pageheader{
    margin-top:98px;
    padding:80px 0;
}
    /* Content Tipografi */
    .blog-content-body { font-size: 1.125rem; color: #2c2c2c; }
    .blog-content-body p { margin-bottom: 1.8rem; line-height: 1.8; }
    
    /* Drop Cap */
    .blog-content-body > p:first-of-type::first-letter {
        float: left; font-size: 3.5rem; line-height: 0.8; font-weight: 700;
        color: var(--color-gold); margin-right: 12px; margin-top: 6px; font-family: var(--font-serif);
    }

    /* Başlıklar */
    .blog-content-body h2 { font-size: 2rem; margin-top: 3rem; margin-bottom: 1.5rem; font-weight: 700; }
    .blog-content-body h3 { font-size: 1.5rem; margin-top: 2.5rem; margin-bottom: 1rem; font-weight: 700; }

    /* Alıntılar */
    .blog-content-body blockquote {
        border-left: 3px solid var(--color-gold); padding-left: 30px; margin: 40px 0;
        font-style: italic; font-size: 1.35rem; color: #000;
    }

    /* Paylaşım Butonları */
    .social-share-btn {
        width: 35px; height: 35px; border: 1px solid #eee; border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        color: #999; text-decoration: none; transition: all 0.3s;
    }
    .social-share-btn:hover { border-color: var(--color-gold); color: var(--color-gold); }

    /* Etiket Rozetleri */
    .tag-badge {
        font-size: 11px; text-transform: uppercase; font-weight: bold; letter-spacing: 1px;
        padding: 8px 16px; background: #f8f9fa; color: #666; text-decoration: none;
        transition: all 0.3s;
    }
    .tag-badge:hover { background: var(--color-gold); color: #000; }

    /* Masaüstü Sol Çizgi */
    @media (min-width: 992px) {
        .border-start-lg { border-left: 1px solid #f0f0f0 !important; }
    }
/* --- HOVER İLE AÇILMA & 3. SEVİYE MENÜ --- */
@media (min-width: 992px) {
    /* Ana menü hover olunca dropdown aç */
    .nav-item.dropdown:hover > .dropdown-menu {
        display: block;
        animation: fadeIn 0.3s ease;
    }

    /* 3. Seviye Menü (Sub-submenu) */
    .dropend:hover > .dropdown-menu {
        display: block;
        position: absolute;
        top: 0;
        left: 100%;
        margin-left: 0.125rem;
    }
    
    /* Dropdown ok işaretlerini gizle (temiz görünüm için) */
    .dropdown-toggle::after {
        display: none !important; 
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.sidebar-link {
        color: #6c757d; /* Secondary Color */
        font-family: var(--font-sans);
        font-size: 13px;
        letter-spacing: 0.5px;
        border-left: 2px solid transparent;
    }
    
    .sidebar-link:hover {
        color: var(--color-deep-black);
        padding-left: 20px !important; /* Hover efekti */
        background-color: #f8f9fa;
    }

    .active-sidebar-link {
        color: var(--color-gold) !important;
        border-left-color: var(--color-gold);
        font-weight: 600;
        background-color: #fff;
        padding-left: 20px !important;
    }

    /* Content Typography (Lüks Görünüm İçin) */
    .content-body p {
        margin-bottom: 1.5rem;
        font-size: 1.05rem;
    }

    .content-body h2, .content-body h3, .content-body h4 {
        font-family: var(--font-serif);
        color: var(--color-deep-black);
        margin-top: 3rem;
        margin-bottom: 1.5rem;
        font-weight: 700;
    }

    .content-body ul, .content-body ol {
        margin-bottom: 2rem;
        padding-left: 1.5rem;
    }
    
    .content-body li {
        margin-bottom: 0.8rem;
    }

    /* Blockquote Özelleştirme */
    .content-body blockquote {
        border-left: 4px solid var(--color-gold);
        padding-left: 2rem;
        margin: 2.5rem 0;
        font-family: var(--font-serif);
        font-size: 1.5rem;
        font-style: italic;
        color: var(--color-deep-black);
        background: transparent;
    }

    /* Masaüstünde Border Desteği */
    @media (min-width: 992px) {
        .border-start-lg {
            border-left: 1px solid #eee !important;
        }
    }
     /* Ortak Pagination ve Search Stilleri (Blog ile Aynı) */
    .luxury-search-input {
        width: 100%; border: none; border-bottom: 1px solid #ddd;
        padding: 10px 40px 10px 0; background: transparent;
        font-family: var(--font-serif); font-size: 1rem; color: var(--color-deep-black);
        transition: all 0.3s; border-radius: 0;
    }
    .luxury-search-input:focus { outline: none; border-bottom-color: var(--color-gold); }
    
    .luxury-search-btn {
        position: absolute; right: 0; top: 50%; transform: translateY(-50%);
        background: none; border: none; color: #999; transition: color 0.3s; padding: 0;
    }
    .luxury-search-input:focus + .luxury-search-btn { color: var(--color-gold); }

    .sidebar-cat-link {
        color: #666; text-decoration: none; font-size: 13px; text-transform: uppercase;
        letter-spacing: 0.5px; transition: all 0.3s; display: block; padding: 5px 0;
    }
    .sidebar-cat-link:hover, .sidebar-cat-link.active {
        color: var(--color-gold); padding-left: 5px;
    }

    ul.page-numbers { display: flex; gap: 10px; list-style: none; padding: 0; margin: 0; }
    ul.page-numbers li { margin: 0; }
    ul.page-numbers a, ul.page-numbers span {
        display: flex; align-items: center; justify-content: center;
        width: 40px; height: 40px; border: 1px solid #eee;
        color: var(--color-deep-black); text-decoration: none;
        font-size: 12px; font-weight: bold; transition: all 0.3s;
    }
    ul.page-numbers span.current, ul.page-numbers a:hover {
        background-color: var(--color-gold); border-color: var(--color-gold); color: #000;
    }
    
    .line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
    .group-hover-translate-x { transition: transform 0.3s; }
    .group:hover .group-hover-translate-x { transform: translateX(5px); }

    @media (min-width: 992px) {
        .border-start-lg { border-left: 1px solid #f0f0f0 !important; }
    }
    /* --- Hiyerarşik Kategori Ağacı CSS --- */

/* Ana Liste Yapısı */
.noetras-cat-tree {
    font-family: var(--font-sans); /* Inter */
}

/* Tüm Linkler (Ana ve Alt) */
.noetras-cat-tree li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666; /* Secondary Color */
    text-decoration: none;
    font-size: 13px;
    padding: 8px 0;
    transition: all 0.3s;
    border-bottom: 1px solid transparent;
}

/* Hover ve Aktif Durumu */
.noetras-cat-tree li a:hover,
.noetras-cat-tree li.current-cat > a,
.noetras-cat-tree li.current-cat-parent > a {
    color: var(--color-gold); /* Gold */
    font-weight: 600;
    padding-left: 5px; /* Hafif sağa kayma */
}

/* Alt Kategoriler (Children) - Girinti ve Çizgi */
.noetras-cat-tree .children {
    list-style: none;
    padding-left: 20px; /* Girinti */
    border-left: 1px solid #eee; /* Sol çizgi kılavuzu */
    margin-left: 5px;
    display: block; /* Her zaman açık olsun istenirse block, sadece aktifken olsun istenirse JS gerekir */
}

.noetras-cat-tree .children li a {
    font-size: 12px; /* Alt kategoriler biraz daha küçük */
    padding: 6px 0;
    color: #888;
}

/* Sayı (Count) Balonu */
.noetras-cat-tree li a span {
    font-size: 10px;
    background-color: #f8f9fa;
    padding: 2px 6px;
    border-radius: 4px;
    color: #999;
}

/* Aktif olduğunda sayı rengi */
.noetras-cat-tree li.current-cat > a span {
    color: var(--color-gold);
    background-color: rgba(197, 160, 40, 0.1);
}
    .line-clamp-3 {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .group-hover-translate-x { transition: transform 0.3s; }
    .group:hover .group-hover-translate-x { transform: translateX(5px); }