/* =========================================
   1. GENEL AYARLAR & SIFIRLAMALAR
========================================= */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; color: #333; background: #fff; }
a { text-decoration: none; }
ul { list-style: none; }

.container { width: 90%; max-width: 1100px; margin: 0 auto; }
.section-padding { padding: 80px 0; }

/* Arka Plan Renkleri */
.bg-light-gray { background-color: #f4f4f4; }
.bg-cream { background-color: #fdfbf7; }

/* Ortak Turkuaz El Yazısı Başlık */
.teal-title {
    font-family: 'Caveat', cursive;
    color: #3b8fa1;
    font-size: 34px;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 50px;
}

/* =========================================
   2. HEADER (ÜST MENÜ VE ARAMA)
========================================= */
.site-header { background: #fff; border-bottom: 1px solid #eee; }
.header-top { background-color: #f8f9fa; border-bottom: 1px solid #eee; padding: 10px 0; }
.header-top-inner { display: flex; justify-content: flex-end; align-items: center; gap: 20px; }
.search-box { display: flex; align-items: center; border: 1px solid #ddd; padding: 5px 10px; background: #fff; }
.search-box input { border: none; outline: none; padding-left: 8px; font-family: inherit; font-size: 13px; }
.login-link { color: #333; font-weight: 600; font-size: 13px; display: flex; align-items: center; gap: 5px; }

.header-main { padding: 25px 0; }
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.logo a { font-size: 26px; font-weight: 700; color: #111; letter-spacing: -0.5px; }
.main-menu ul { display: flex; gap: 35px; }
.main-menu a { color: #111; font-weight: 600; font-size: 13px; }
.main-menu a.active, .main-menu a:hover { color: #3b8fa1; }

/* =========================================
   3. HERO SECTION (Daha Geniş Kutulu Karşılama)
========================================= */
.main-content { margin-top: 20px; margin-bottom: 40px; }

/* Görselin yanlara doğru iyice açılması için özel genişlik */
.hero-container { width: 96%; max-width: 1600px; margin: 0 auto; }

.hero-section {
    background-image: url('../img/gobeklitepe-bg.jpeg');
    background-size: cover;
    background-position: center;
    background-color: #333;
    height: 75vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}
.hero-title {
    font-family: 'Monoton', cursive;
    font-size: 80px;
    color: #fff;
    font-weight: 400;
    letter-spacing: 5px;
    line-height: 1.1;
    margin-bottom: 30px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}
.btn-book {
    display: inline-block;
    background-color: #f4ccb4;
    color: #000;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 16px;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-book:hover { transform: translateY(-3px); background-color: #e5bca4; }


/* =========================================
   6. REVIEWS BÖLÜMÜ (Görselle Birebir Kutu Yapısı)
========================================= */
.reviews-section { 
    padding: 80px 0; 
    /* Dış bölümün arka planı açık gri (bg-light-gray sınıfından da alır) */
}
.reviews-box {
    background-color: #bfae83; /* Görseldeki altın/kum rengi */
    max-width: 1200px; /* İçerideki kutunun genişliği */
    margin: 0 auto;
    padding: 70px 50px;
    color: #fff;
    text-align: center;
}
.reviews-box h2 { 
    font-family: 'Montserrat', sans-serif;
    font-size: 34px; 
    margin-bottom: 40px; 
    font-weight: 600; 
}
.review-slider { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    gap: 30px; 
    max-width: 950px; 
    margin: 0 auto; 
}
/* İnce ve zarif oklar */
.review-slider i { 
    font-size: 45px; 
    font-weight: 100; 
    cursor: pointer; 
    opacity: 0.7; 
    transition: 0.3s;
}
.review-slider i:hover { opacity: 1; }
.review-content { max-width: 800px; }

/* Tırnaklı (Serif) klasik font ile yorum metni */
.review-text, .review-note { 
    font-family: 'Georgia', serif; 
    font-size: 16px; 
    line-height: 1.6; 
    margin-bottom: 25px; 
}
.review-note { font-size: 15px; opacity: 0.9; }

/* İsim alanındaki yatay çizgi ve hizalama */
.review-author-wrap {
    margin-top: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.author-line {
    display: inline-block;
    width: 35px;
    height: 1px;
    background-color: #fff;
}
.review-author { 
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
}

/* =========================================
   4. ABOUT BÖLÜMÜ
========================================= */
.about-grid { display: flex; gap: 60px; max-width: 900px; margin: 0 auto; }
.about-col { flex: 1; }
.about-col p { font-size: 14px; line-height: 1.8; color: #444; font-weight: 600; }

/* =========================================
   5. BESTSELLER TOUR (Tam Ekran, 3 Kolon)
========================================= */
.bestseller-section {
    width: 100%; 
    display: flex; 
    align-items: stretch; 
    min-height: 480px;
}
.bestseller-img {
    flex: 1; 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.bestseller-text {
    flex: 1.2; 
    background-color: #fdfbf7; 
    padding: 60px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.gold-title { 
    font-family: 'Playball', cursive; 
    color: #cba557; 
    font-size: 55px; 
    font-weight: 400; 
    margin-bottom: 5px; 
}
.bestseller-subtitle { 
    font-weight: 300; 
    font-size: 13px; 
    color: #888; 
    margin-bottom: 35px; 
    letter-spacing: 1px; 
}
.bestseller-text p { 
    font-size: 13px; 
    line-height: 2; 
    color: #555; 
    margin-bottom: 35px; 
    max-width: 420px; 
}
.gold-link { 
    font-family: 'Playfair Display', serif;
    color: #cba557; 
    font-style: italic; 
    font-size: 15px; 
}

/* =========================================
   6. REVIEWS BÖLÜMÜ (Genişletilmiş Kutu ve Slider)
========================================= */
.reviews-section { 
    padding: 80px 0; 
}

.reviews-box {
    background-color: #bfae83; 
    width: 96%; /* Hero görseli gibi sağdan soldan genişletildi */
    max-width: 1600px; /* Genişlik sınırı artırıldı */
    margin: 0 auto;
    padding: 70px 5%; /* İç boşluklar ekrana göre esnek yapıldı */
    color: #fff;
    text-align: center;
}

.reviews-box h2 { 
    font-family: 'Montserrat', sans-serif;
    font-size: 34px; 
    margin-bottom: 40px; 
    font-weight: 600; 
}

.review-slider { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    gap: 30px; 
    max-width: 1100px; /* Yazıların çok yayılmaması için iç sınır */
    margin: 0 auto; 
}

/* Ok İkonları (Çarpı hatası giderildi, boyutları ayarlandı) */
.arrow-left, .arrow-right { 
    font-size: 45px !important; 
    font-weight: 900 !important; 
    cursor: pointer; 
    opacity: 0.7; 
    transition: 0.3s;
    padding: 10px 20px;
}
.arrow-left:hover, .arrow-right:hover { 
    opacity: 1; 
    transform: scale(1.1);
}

.reviews-wrapper { 
    flex: 1; 
    min-height: 220px; /* Okların sabit durması için minimum yükseklik */
}

/* Yorumlar arası yumuşak geçiş efekti */
.review-content { 
    animation: fadeEffect 0.6s ease-in-out; 
}

@keyframes fadeEffect {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Klasik Tırnaklı (Serif) Font */
.review-text, .review-note { 
    font-family: 'Georgia', serif; 
    font-size: 16px; 
    line-height: 1.7; 
    margin-bottom: 25px; 
}
.review-note { 
    font-size: 14px; 
    opacity: 0.9; 
    font-style: italic;
}

.review-author-wrap {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-line {
    display: inline-block;
    width: 40px;
    height: 1px;
    background-color: #fff;
}

.review-author { 
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1px;
}
/* =========================================
   7. MEET YOUR GUIDE BÖLÜMÜ
========================================= */
.guide-content { max-width: 700px; margin: 0 auto; text-align: left; }
.guide-image { width: 100%; height: auto; margin-bottom: 25px; }
.guide-content h3 { font-family: 'Playfair Display', serif; font-size: 24px; margin-bottom: 15px; color: #333; }
.guide-content p { font-size: 13px; line-height: 1.7; color: #444; margin-bottom: 15px; }

/* =========================================
   8. CONTACT US BÖLÜMÜ
========================================= */
.contact-box { max-width: 850px; margin: 0 auto; border: 2px solid #222; background: #fff; }
.contact-top-row { display: flex; border-bottom: 2px solid #222; }
.contact-cell { flex: 1; padding: 40px 20px; text-align: center; border-right: 2px solid #222; display: flex; flex-direction: column; justify-content: center; align-items: center; }
.contact-cell:last-child { border-right: none; }
.social-icons { display: flex; gap: 18px; margin-bottom: 40px; font-size: 18px; color: #000; }
.contact-info { font-size: 12px; font-weight: 700; margin-bottom: 10px; letter-spacing: 0.5px; }
.map-cell { padding: 0; }
.subscribe-cell p { font-size: 13px; font-weight: 700; margin-bottom: 15px; }
.subscribe-cell input { width: 100%; padding: 10px; border: 1px solid #999; margin-bottom: 15px; font-size: 12px; text-align: center; font-family: inherit; }
.btn-subscribe { width: 100%; background-color: #3b5998; color: #fff; border: none; padding: 12px; font-weight: 600; font-size: 13px; cursor: pointer; transition: 0.3s; }
.btn-subscribe:hover { background-color: #2d4373; }
.contact-bottom-row { padding: 25px; text-align: center; font-size: 11px; font-weight: 700; line-height: 1.8; background-color: #f8f8f8; }

/* =========================================
   9. FOOTER & SABİT BUTONLAR
========================================= */
.site-footer { background-color: #555; color: #fff; text-align: center; padding: 20px 0; font-size: 12px; font-weight: 600; }

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.whatsapp-float:hover { background-color: #128C7E; transform: scale(1.1); }


/* Başlangıçta mobilde görünen alanları gizleyelim (Masaüstü görünümü) */
.mobile-only { display: none; }
.mobile-search-box { display: none; }
.mobile-menu-btn { display: none; }

/* =========================================
   AÇILIR MENÜ (DROPDOWN) MASAÜSTÜ TASARIMI
========================================= */
.main-menu ul li.has-dropdown {
    position: relative;
}

.main-menu ul li .dropdown {
    position: absolute;
    top: 100%;
    right: 0; 
    background-color: #fdfdfd; 
    min-width: 320px; /* Genişliği biraz artırdık */
    max-width: 400px; /* Çok fazla uzamasını engelledik */
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    border-top: 3px solid #3b8fa1; 
    border-radius: 0 0 5px 5px;
    z-index: 1000;
    display: none;
    flex-direction: column;
    padding: 5px 0; /* İç boşluğu daralttık */
    margin: 0; 
    list-style: none; 
}

/* Üzerine gelince (Hover) menüyü göster */
@media screen and (min-width: 769px) {
    .main-menu ul li.has-dropdown:hover .dropdown {
        display: flex;
    }
}

/* Liste Elemanları Boşluk Sıfırlama */
.main-menu ul li .dropdown li {
    padding: 0;
    margin: 0;
    width: 100%;
    list-style: none;
}

/* Yazılar ve Link Tasarımı (DÜZELTİLDİ) */
.main-menu ul li .dropdown li a {
    display: block;
    padding: 2px 2px; /* Etrafındaki boşlukları dengeledik */
    color: #333;
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-align: left; /* Okunabilirliği artırmak için sola yasladık */
    white-space: normal; /* UZUN YAZILARIN ALT SATIRA İNMESİNE İZİN VERDİK (Sorun buydu) */
    line-height: 1; /* Satır aralıklarını normale çevirdik */
    border-bottom: 1px solid #f4f4f4; /* Aralarına ince çizgi çektik */
    transition: 0.2s;
}

.main-menu ul li .dropdown li:last-child a {
    border-bottom: none; /* En alttaki çizgiyi kaldırdık */
}

.main-menu ul li .dropdown li a:hover {
    background-color: #f9f9f9;
    color: #3b8fa1;
}

/* =========================================
   MOBİL UYUMLULUK (TÜM SİTE İÇİN RESPONSIVE)
========================================= */
@media screen and (max-width: 768px) {
    /* Genel Container */
    .container { width: 90%; }
    .section-padding { padding: 50px 0; }
    
    /* 1. HEADER & MENÜ (Görselle Birebir Yapı) */
    .desktop-only { display: none !important; } /* Üst siyah barı mobilde gizle */
    .mobile-only { display: block; }

    .header-inner { display: block; padding: 15px 0; }
    
    .mobile-header-top { 
        display: flex; 
        justify-content: space-between; 
        align-items: center; 
        margin-bottom: 15px; 
    }
    
    .logo a { font-size: 24px; }
    
    .mobile-menu-btn { 
        display: block; 
        font-size: 28px; 
        color: #333; 
        cursor: pointer; 
    }

    /* Görseldeki Geniş Arama Kutusu */
    .mobile-search-box {
        display: flex;
        align-items: center;
        background: #f4f4f4;
        border: 1px solid #aaa;
        padding: 12px 15px;
        width: 100%;
        margin-bottom: 15px;
        color: #555;
    }
    .mobile-search-box input {
        border: none;
        background: transparent;
        outline: none;
        width: 100%;
        margin-left: 10px;
        font-size: 15px;
        font-family: 'Montserrat', sans-serif;
    }

    /* Açılır Kapanır Mobil Menü Tasarımı */
    .main-menu { 
        display: none; 
        width: 100%; 
        background: #fff; 
        border: 1px solid #eee; 
    }
    .main-menu.active { display: block; }
    .main-menu ul { flex-direction: column; gap: 0; }
    .main-menu a { 
        border-bottom: 1px solid #eee; 
        padding: 15px; 
        display: block; 
        font-size: 15px;
    }
    .main-menu li:last-child a { border-bottom: none; }

    /* 2. HERO (ANA GÖRSEL) ALANI */
    .hero-container { width: 100%; margin-top: 0; }
    .hero-section { height: 60vh; }
    .hero-title { font-size: 40px; letter-spacing: 2px; }

    /* 3. ABOUT ALANI */
    .about-grid { flex-direction: column; gap: 30px; }

    /* 4. BESTSELLER TOUR */
    .bestseller-section { flex-direction: column; }
    .bestseller-img { width: 100%; min-height: 250px; flex: none; }
    .bestseller-text { padding: 40px 5%; }
    .gold-title { font-size: 45px; }

    /* 5. REVIEWS ALANI */
    .reviews-box { padding: 40px 5%; width: 100%; border-radius: 0; }
    .review-slider { gap: 10px; }
    .arrow-left, .arrow-right { font-size: 30px !important; padding: 5px; }

    /* 6. CONTACT US */
    .contact-top-row { flex-direction: column; }
    .contact-cell { border-right: none; border-bottom: 2px solid #222; padding: 30px 15px; }
    .contact-cell:last-child { border-bottom: none; }
    
    /* WhatsApp İkonu Mobilde Ufalır */
    .whatsapp-float { width: 50px; height: 50px; font-size: 28px; bottom: 20px; right: 20px; }
    
    /* Mobilde Açılır Menü Ayarı */
    .main-menu ul li .dropdown {
        position: static;
        box-shadow: none;
        background-color: #eee;
        display: none; /* Mobilde JS ile açılacak */
        width: 100%;
        border: none;
    }
    .main-menu ul li.has-dropdown.open .dropdown {
        display: flex;
    }
    /* Mobilde yazılar sola veya ortaya yaslı dursun, sağa dayalı telefonda kötü durur */
    .main-menu ul li .dropdown li a {
        text-align: left;
        padding-left: 30px;
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    /* Daha küçük ekranlar için ince ayar */
    .hero-title { font-size: 32px; }
    .gold-title { font-size: 38px; }
}