/* ========================================= */
/* GENEL STİL VE FONTLAR */
/* ========================================= */
body {
    font-family: 'Montserrat', sans-serif;
    color: #333; 
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f7f5f0; 
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #4A4A4A;
}

h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 10px;
}

/* Tüm H2 Başlıkları Altına Vurgu Çizgisi */
h2::after {
    content: '';
    width: 80px;
    height: 3px;
    background-color: #B4C699; 
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

a {
    text-decoration: none;
    color: #795548; 
}

/* ========================================= */
/* NAVİGASYON (Artık Sadece Gizleniyor) */
/* ========================================= */
.main-nav { 
    display: none !important; 
}


/* ========================================= */
/* Header ve Hero Bölümü */
/* ========================================= */
.hero-section {
    height: 70vh; /* Navigasyon kaldırıldığı için eski yüksekliğine döndü */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden; 
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1; 
    object-fit: cover; 
}


.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 5; 
}

.hero-content {
    z-index: 10;
}

.hero-content h1 {
    font-size: 4em;
    margin-bottom: 0.1em;
    color: #fff;
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 25px;
}

.cta-button {
    background-color: #B4C699;
    color: #4A4A4A;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #9DB483;
}

/* ========================================= */
/* Neden Biz Bölümü */
/* ========================================= */
.section-why-us {
    padding: 80px 20px;
    background-color: #f0ede8;
}

.why-us-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    flex-wrap: wrap;
}

.why-us-item {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 20px;
}

.why-us-item i {
    font-size: 3em;
    color: #795548;
    margin-bottom: 15px;
}

.why-us-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3em;
    margin-top: 0;
    color: #333;
}

.why-us-item p {
    font-size: 0.95em;
    color: #555;
}


/* ========================================= */
/* Paketler Bölümü */
/* ========================================= */
.section-paketler {
    padding: 80px 20px;
    background-color: #fff;
}

.paket-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap; 
    max-width: 950px; 
    margin: 0 auto;
}

.paket-card {
    background-color: #fcfcfc;
    border: 1px solid #eee;
    padding: 25px; 
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    position: relative; 
    box-sizing: border-box; 
    cursor: pointer;
    width: calc(50% - 15px);
    max-width: 450px;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
}

.paket-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.paket-header {
    margin-bottom: 10px; 
}
.paket-header h3 {
    font-size: 1.8em; 
    margin-bottom: 5px;
}

.paket-header i {
    font-size: 1.5em;
    margin-right: 10px;
}

.paket-card.seckin {
    border: 3px solid #FFD700; 
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}
.paket-card.seckin .paket-header h3 {
    color: #8B7355; 
}
.paket-card.seckin .paket-header i {
    color: #FFD700;
}

.paket-card.atolye {
    border: 3px solid #B4C699;
    background-color: #fcf8f5; 
    box-shadow: 0 4px 15px rgba(180, 198, 153, 0.2); 
}
.paket-card.atolye .paket-header h3 {
    color: #4A4A4A; 
}
.paket-card.atolye .paket-header i {
    color: #B4C699;
}


.paket-card ul {
    list-style: none;
    padding: 0 0 0 20px; 
    text-align: left;
    margin: 10px 0; 
    flex-grow: 1; 
}

.paket-card li {
    padding: 5px 0; 
    border-bottom: 1px dashed #e0e0e0;
    font-size: 0.95em;
}

.paket-card ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 10px;
    color: #B4C699;
}
.paket-card.seckin ul li::before {
    color: #FFD700;
}

.minimum-info {
    font-weight: 600;
    color: #555;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid #eee;
    margin-bottom: 15px; 
}

/* KART İÇİ TEKLİF AL BUTONU */
.paket-card .cta-button.paket-teklif-button {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px; 
    width: 70%; 
    max-width: 200px; 
    text-align: center; 
    padding: 10px 15px; 
    font-size: 1em; 
    color: #fff !important; 
    background-color: #795548; 
    font-weight: 700;
    border-radius: 50px; 
    transition: background-color 0.3s, transform 0.3s;
}

.paket-card .cta-button.paket-teklif-button:hover {
    background-color: #5D4037; 
    transform: scale(1.05);
}


/* ========================================= */
/* KOKTEYL BAR VE ATÖLYE SAYFASI STİLLERİ */
/* ========================================= */

.section-kokteyller {
    padding: 80px 20px 20px;
}
.section-atolyeler {
    padding: 80px 0;
    background-color: #f7f5f0;
    text-align: center;
}

/* BAŞLIK VE BUTONLAR KAPSAYICISI (FLEX) */
.menu-title-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px; 
    margin-bottom: 30px; 
    flex-wrap: wrap; 
}

.menu-intro {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1em;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Kokteyl Menüsü Grid Yerleşimi */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); 
    gap: 30px; 
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

/* Kokteyl Kart İçerik Hizalaması */
.cocktail-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: box-shadow 0.3s;
    width: 100%; 
    display: flex;
    flex-direction: column;
}

.cocktail-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.cocktail-item img {
    width: 100%;
    height: 300px; 
    object-fit: cover; 
    cursor: pointer; 
}

.lightbox-trigger {
    display: block;
    text-decoration: none; 
}


.cocktail-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5em;
    color: #4A4A4A;
    margin: 15px 0 5px;
}

.cocktail-item p {
    font-size: 0.9em;
    color: #777;
    line-height: 1.2; 
    padding: 0 15px 15px; 
    margin: 0;
    flex-grow: 1;
}

/* KATEGORİ AYIRICILARI */
#kokteyller-bar .menu-category-divider {
    grid-column: 1 / -1; 
    width: 100%;
    margin-top: 25px;
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: 2px solid #333; 
    text-align: left;
}
#kokteyller-bar .menu-category-divider h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8em;
    color: #000;
    margin: 0;
}


/* ATÖLYE DETAY KISMI */
.atolye-detay {
    max-width: 950px; 
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 0 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.atolye-item {
    flex: 1;
    width: calc(50% - 15px);
    max-width: 450px; 
    text-align: left;
    background: white;
    padding: 25px; 
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.atolye-item h3 {
    font-size: 1.5em;
    color: #795548;
    margin-top: 0;
    margin-bottom: 15px;
    border-bottom: 2px solid #B4C699;
    padding-bottom: 10px;
}

.atolye-item h3 i {
    color: #B4C699;
    margin-right: 10px;
}

.atolye-item p {
    color: #555;
    flex-grow: 1;
}

.atolye-uyari {
    font-style: italic;
    color: #888;
    margin-top: 20px;
    font-size: 0.95em;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

/* ========================================= */
/* GÖRSEL CAROUSEL STİLLERİ */
/* ========================================= */
.hizmet-gorselleri-container {
    max-width: 1000px; 
    margin: 0 auto 40px; 
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.hizmet-gorseli {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* BAR VE ATÖLYE CAROUSEL BOYUTLARI */
.hizmet-gorselleri-bar, 
.hizmet-gorselleri-atolye-carousel {
    height: 400px; 
}
.hizmet-gorselleri-bar .hizmet-gorseli, 
.hizmet-gorselleri-atolye-carousel .hizmet-gorseli {
    display: none; 
    height: 400px; 
    animation: fadein 1s;
}
.hizmet-gorselleri-bar .hizmet-gorseli.active, 
.hizmet-gorselleri-atolye-carousel .hizmet-gorseli.active {
    display: block; 
}

@keyframes fadein {
    from { opacity: 0.8; }
    to { opacity: 1; }
}


/* ========================================= */
/* TEKLİF VE ANA SAYFA BUTON KAPSAYICISI (BAR VE ATÖLYE SAYFALARI İÇİN) */
/* ========================================= */
.bottom-cta-container {
    display: flex;
    justify-content: center; 
    gap: 20px; 
    margin: 40px auto 60px; 
    max-width: 550px; 
    padding: 0 20px;
}

.bottom-cta-container .cta-button {
    padding: 12px 25px;
    border-radius: 50px; 
    font-weight: 700;
    transition: all 0.3s;
    text-align: center;
    width: 50%;
    box-sizing: border-box; /* Butonların genişliğe tam oturmasını sağlar */
}

.bottom-cta-container .primary-button {
    /* Ana Teklif Butonu (Koyu Vurgu) */
    background-color: #795548; /* Kahverengi */
    color: #fff;
    border: 2px solid #795548;
}

.bottom-cta-container .primary-button:hover {
    background-color: #5D4037; 
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.bottom-cta-container .secondary-button {
    /* Ana Sayfa Butonu (Daha Hafif) */
    background-color: transparent;
    color: #795548;
    border: 2px solid #B4C699;
}

.bottom-cta-container .secondary-button:hover {
    background-color: #B4C699;
    color: #4A4A4A;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(180, 198, 153, 0.3);
}


/* ========================================= */
/* Footer */
/* ========================================= */
footer {
    background-color: #1a1a1a;
    color: #f0f0f0; 
    padding: 40px 20px; 
    text-align: center;
    border-top: 3px solid #795548;
    position: relative;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column; 
    align-items: center;
    gap: 15px; 
}

.footer-contact-new {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    order: 1;
}

.copyright {
    font-size: 0.95em;
    opacity: 0.8; 
    order: 2; 
    margin-top: 0;
    margin-bottom: 15px; 
}

.footer-logo {
    order: 3; 
    position: static; 
    margin-top: 0;
    margin-bottom: 0; 
}

.footer-logo img {
    height: 100px; 
    width: auto;
    border-radius: 4px;
}

.contact-link {
    display: flex;
    align-items: center;
    color: #1a1a1a; 
    background-color: #B4C699; 
    padding: 8px 15px;
    border-radius: 50px; 
    font-weight: 700;
    font-size: 0.9em;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-link:hover {
    background-color: #f0f0f0; 
    color: #795548; 
    transform: translateY(-3px); 
    box-shadow: 0 8px 15px rgba(180, 198, 153, 0.3);
}

.contact-link i {
    font-size: 1.1em;
    margin-right: 8px;
}

/* ========================================= */
/* MOBİL DÜZENLEME (767px ve altı) */
/* ========================================= */
@media (max-width: 767px) {
    
    .hero-content h1 {
        font-size: 3em; 
    }
    
    /* Etkinlik Paketleri ve Atölye Detaylarını Alt Alta Sırala */
    .paket-card {
        width: 100%; 
        max-width: none; 
        margin-bottom: 20px; 
    }
    
    .atolye-item {
        width: 100%; 
        max-width: none; 
        margin-bottom: 20px; 
    }
    
    .paket-container, .atolye-detay {
        gap: 0; 
        flex-direction: column; 
    }
    
    /* GÖRSEL DÜZELTMELER */
    .hizmet-gorselleri-container {
        margin-bottom: 20px;
        padding: 0 10px; 
        box-shadow: none; 
        border-radius: 0;
    }
    .hizmet-gorselleri-bar, .hizmet-gorselleri-atolye-carousel {
         height: 250px; 
    }
    .hizmet-gorselleri-bar .hizmet-gorseli, .hizmet-gorselleri-atolye-carousel .hizmet-gorseli {
        height: 250px;
    }
    
    /* BUTONLARIN CEP TELEFONUNDA ALT ALTA LİSTELENMESİ */
    .bottom-cta-container {
        flex-direction: column; /* Butonları alt alta sırala */
        gap: 10px;
        max-width: 90%; 
        margin-left: auto;
        margin-right: auto;
        padding: 0; /* İç padding'i sıfırla, max-width ile hallediyoruz */
    }
    
    .bottom-cta-container .cta-button {
        width: 100%; /* Her butonu tam genişlik yap */
        max-width: none;
        padding: 10px 15px; 
        font-size: 0.95em; 
    }
}


/* ========================================= */
/* MASAÜSTÜ DÜZENLEME (768px ve üzeri) */
/* ========================================= */
@media (min-width: 768px) {
    .footer-content {
        flex-direction: column; 
        justify-content: center;
        align-items: center; 
    }
    
    .footer-logo img {
        height: 130px; 
    }
    
    .copyright, .footer-contact-new, .footer-logo {
        margin: 0;
    }
    .copyright {
        margin-bottom: 20px; 
    }
}