/* --- EGEMEN CIGAR MASTER IDENTITY --- */
:root {
    --accent-color: #d4af37 !important; 
    --bg-color: #1a120b;
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: #1a120b !important;
    border-bottom: 2px solid var(--accent-color) !important;
    position: sticky;
    top: 0;
    z-index: 10000;
}

.logo-area {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-area img {
    height: 50px !important;
    width: auto;
    margin-right: 15px;
}

.brand-name {
    color: #d4af37;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.4rem;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-links a {
    color: #d4af37;
    font-family: 'Cinzel', serif;
    font-weight: 700; 
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.9;
    transition: 0.3s ease;
}


.nav-links a:hover, 
.nav-links a.active {
    opacity: 1;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.4); /* Hafif bir derinlik katar */
}
.ccst-link {
    border: 2px solid #d4af37;
    padding: px 12px;
    border-radius: 3px;
}

.ccst-link {
    border: 1px solid var(--accent-color);
    padding: 5px 12px;
    border-radius: 3px;
    font-weight: bold;
}

/* CSS içinde renkleri artık şu şekilde kullanıyoruz: */
body {
    background-color: var(--bg-color);
    color: var(--text-main);
}

h1, h2, h3 {
    color: var(--accent-color);
}

.btn, .option-btn {
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    background-color: var(--primary-color);
    color: var(--accent-color);
}
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body {
    background-color: #1a120b;
    background-image: linear-gradient(rgba(20, 10, 5, 0.85), rgba(20, 10, 5, 0.9)), 
                      url('https://www.transparenttextures.com/patterns/black-felt.png');
    background-attachment: fixed;
    color: #e0c068;
    font-family: 'Lora', serif;
    line-height: 1.7;
}

h1, h2, h3, .brand-name, .nav-links a, .btn, .accordion-header, .option-btn {
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
}


.nav-brand { 
    display: flex; 
    align-items: center; 
    text-decoration: none; 
    color: #d4af37; 
}


/* --- İÇERİK YAPISI --- */
.container { 
    max-width: 1000px; 
    margin: 40px auto; 
    padding: 0 30px; 
}

.section { 
    background: rgba(61, 43, 31, 0.3); 
    padding: 40px; 
    border-radius: 10px; 
    border: 1px solid rgba(212, 175, 55, 0.1); 
    margin-bottom: 40px; 
}

/* Hizmetler arası boşluk ayarı - İstediğin satır boşluğu burada */
.service-preview { 
    margin-bottom: 60px; 
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.service-preview:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* --- BUTONLAR --- */
.btn { 
    display: inline-block; 
    padding: 12px 25px; 
    border: 1px solid #d4af37; 
    color: #d4af37; 
    text-decoration: none; 
    margin-top: 15px; 
    transition: 0.3s; 
    font-size: 0.8rem; 
    background: transparent; 
    cursor: pointer; 
}

.btn:hover { 
    background: #d4af37; 
    color: #1a120b; 
}

/* --- AKORDİYON (Bakım Sayfası) --- */
.accordion-item { 
    border: 1px solid rgba(212, 175, 55, 0.3); 
    margin-bottom: 10px; 
    border-radius: 5px; 
    overflow: hidden; 
}

.accordion-header { 
    background: rgba(61, 43, 31, 0.8); 
    padding: 20px; 
    cursor: pointer; 
    color: #e0c068; 
    font-weight: bold; 
    display: flex;
    justify-content: space-between;
}

.accordion-content { 
    max-height: 0; 
    overflow: hidden; 
    transition: 0.4s ease-out; 
    background: rgba(30, 20, 10, 0.5); 
}

.accordion-content.active { 
    max-height: 1000px; 
    padding: 20px; 
    border-top: 1px solid rgba(212, 175, 55, 0.2); 
}

/* --- ARŞİV KARTLARI & GALERİ --- */
.puro-card { 
    background: rgba(61, 43, 31, 0.5); 
    border: 1px solid rgba(212, 175, 55, 0.3); 
    padding: 20px; 
    margin-bottom: 20px; 
    border-radius: 8px; 
    display: flex; 
    justify-content: space-between; 
}

.gallery { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 20px; 
}

.gallery-item { 
    background: rgba(61, 43, 31, 0.5); 
    border: 1px solid rgba(212, 175, 55, 0.2); 
    padding: 15px; 
    text-align: center; 
    text-decoration: none; 
    color: inherit; 
    transition: 0.3s; 
}

.gallery-item img { width: 100%; height: 200px; object-fit: cover; margin-bottom: 15px; }

/* --- SİHİRBAZ (Rehber) --- */
.wizard-card { text-align: center; padding: 40px; }
.step { display: none; }
.step.active { display: block; }
.option-btn { 
    display: block; 
    width: 100%; 
    max-width: 400px; 
    margin: 10px auto; 
    padding: 15px; 
    background: rgba(212, 175, 55, 0.1); 
    border: 1px solid #d4af37; 
    color: #e0c068; 
    cursor: pointer; 
}

/* --- FOOTER --- */
.site-footer { 
    background: linear-gradient(to top, #0a0500, #1a120b); 
    border-top: 1px solid #d4af37; 
    padding: 60px 20px 20px; 
    text-align: center; 
    margin-top: 100px; 
}

.footer-link { 
    display: inline-block; 
    margin: 10px 20px; 
    color: #e0c068; 
    text-decoration: none; 
    border: 1px solid rgba(212, 175, 55, 0.2); 
    padding: 10px 20px; 
    border-radius: 5px; 
}

.location { margin-top: 30px; font-style: italic; opacity: 0.8; }
.footer-bottom { margin-top: 50px; border-top: 1px solid rgba(212, 175, 55, 0.1); padding-top: 20px; font-size: 0.8rem; opacity: 0.5; }

/* --- SABİT SOSYAL BAR --- */
.fixed-social-bar { 
    position: fixed; 
    bottom: 25px; 
    right: 25px; 
    display: flex; 
    flex-direction: column; 
    gap: 12px; 
    z-index: 1000; 
}

.social-icon { 
    background: rgba(30, 20, 10, 0.9); 
    border: 1px solid #d4af37; 
    width: 45px; 
    height: 45px; 
    border-radius: 50%; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    text-decoration: none; 
}
/* --- MOBİL UYUMLULUK (RESPONSIVE) --- */
@media (max-width: 768px) {
    /* Navigasyon Yapısı */
    .site-header {
        flex-direction: column;
        padding: 1rem;
    }

    .nav-links {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .nav-links a {
        margin-left: 0;
        font-size: 0.75rem;
    }

    .nav-brand {
        margin-bottom: 5px;
    }

    /* Hero Alanı (Giriş) */
    .hero-section {
        height: 60vh;
    }

    .hero-logo {
        width: 70%; /* Mobilde logo biraz daha küçük ama dengeli */
    }

    .hero-subtitle {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }

    /* İçerik ve Konteyner */
    .container {
        padding: 0 15px;
        margin: 30px auto;
    }

    .section {
        padding: 25px 15px;
    }

    h2 {
        font-size: 1.4rem;
    }

    /* Arşiv Kartları (Mobilde alt alta) */
    .puro-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .ca-score {
        align-self: flex-start;
    }

    /* Sabit Sosyal Bar */
    .fixed-social-bar {
        bottom: 15px;
        right: 15px;
    }
}
/* --- HAMBURGER MENU STİLLERİ --- */
.menu-toggle {
    display: none; /* Masaüstünde gizle */
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #d4af37;
    transition: 0.3s;
}

/* MOBİL GÖRÜNÜM (768px ve altı) */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex; /* Mobilde göster */
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        right: -100%; /* Başlangıçta ekranın dışında */
        top: 82px;
        flex-direction: column;
        background-color: rgba(30, 20, 10, 0.98);
        width: 100%;
        height: calc(100vh - 82px);
        text-align: center;
        transition: 0.4s ease;
        padding-top: 50px;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
    }

    .nav-links.active {
        right: 0; /* Menü açıldığında ekrana kayar */
    }

    .nav-links a {
        display: block;
        margin: 20px 0;
        font-size: 1.2rem;
    }

    /* Hamburger ikonunun 'X' işaretine dönüşme animasyonu (Opsiyonel) */
    .menu-toggle.open .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.open .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.open .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}
.puro-card {
    cursor: pointer; /* Fare üzerine gelince el işareti çıksın */
    transition: background 0.3s ease;
}

.puro-card:hover {
    background: rgba(212, 175, 55, 0.1); /* Üzerine gelince hafif bir parlama */
}

/* Detay kısmının yumuşak açılması için */
.puro-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}
.star-rating { color: #555; font-size: 1.2rem; cursor: pointer; margin-top: 10px; }
.star-rating .fa-star.active { color: #d4af37; }
.vote-info { font-size: 0.7rem; opacity: 0.6; margin-left: 10px; }
.hero-section {
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    box-sizing: border-box; /* Şeridi yüksekliğin içine dahil eder */
    border-bottom: 2px solid #d4af37;
    overflow: hidden; /* İçeriğin dışarı taşmasını engeller */
}

.vision-section {
    /* Yazıyı şeritten aşağı iten Sommelier nefesi (Boşluk) */
    padding-top: 120px !important; 
    padding-bottom: 80px;
    background-color: #1a120b;
    position: relative;
    clear: both; /* Önceki bölümlerin baskısını sıfırlar */
}

.vision-section h2 {
    margin-top: 0;
    font-family: 'Cinzel', serif;
    color: #d4af37;
    font-size: 2.5rem;
}