/* =========================================
   1. GENEL AYARLAR VE DEĞİŞKENLER
   ========================================= */
:root {
    /* --- URFA TAŞI & SİYAH (DÜZELTİLMİŞ) --- */
    
    /* Ana Renk: Altın Sarısı */
    --ana-renk: #D4AF37;       
    --ana-renk-koyu: #B8860B;  
    
    /* GÖVDE ZEMİNİ: Urfa Taşı (Bej) */
    --arkaplan-ana: #F9F7F2;    
    
    /* KARTLAR: Zeminden ayrışması için BEYAZ */
    --arkaplan-kart: #FFFFFF;   
    
    /* MENÜ & FOOTER: SİMSİYAH (Çerçeve etkisi) */
    --arkaplan-menu: #000000;   
    
    /* YAZILAR: Açık zemin üstünde okunması için KOYU */
    --metin-ana: #222222;       
    --metin-silik: #555555;     
    
    /* Sabit Renkler */
    --siyah: #000000;
    --beyaz: #FFFFFF;
    
    /* Fontlar */
    --font-baslik: 'Playfair Display', serif;
    --font-metin: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-metin);
    line-height: 1.6;
    background-color: var(--arkaplan-ana);
    color: var(--metin-ana); /* Yazı rengini koyu yaptık */

    /* --- DOKU --- */
    background-image: url("https://www.transparenttextures.com/patterns/wall-4-light.png");
}

/* Link ve Başlık Genel Ayarları */
a { text-decoration: none; transition: 0.3s; }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
    color: var(--ana-renk);
    font-family: var(--font-baslik);
}

p { color: var(--metin-silik); }

.konteyner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Bölüm Başlıkları (Ortak Kullanım) */
.bolum-baslik {
    margin-bottom: 50px;
    text-align: center;
}

.ust-baslik {
    color: var(--ana-renk);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.bolum-baslik h2 { font-size: 2.5rem; }

/* =========================================
   2. BUTONLAR
   ========================================= */
.buton-ana {
    background-color: var(--ana-renk);
    color: var(--siyah) !important;
    padding: 15px 30px;
    display: inline-block;
    border-radius: 5px;
    font-weight: bold;
    border: 2px solid var(--ana-renk);
}

.buton-ana:hover {
    background-color: var(--ana-renk-koyu);
    border-color: var(--ana-renk-koyu);
    transform: translateY(-2px);
}

.buton-ikincil {
    border: 2px solid var(--ana-renk);
    color: var(--ana-renk);
    padding: 13px 28px;
    display: inline-block;
    border-radius: 5px;
    font-weight: bold;
}

.buton-ikincil:hover {
    background-color: var(--ana-renk);
    color: var(--siyah);
}

/* =========================================
   3. HEADER (ÜST MENÜ & TOP BAR)
   ========================================= */
/* Top Bar (Telefon & Adres) */
/* --- ÜST BİLGİ ÇUBUĞU (TOP BAR) - GÜNCELLENMİŞ --- */
.ust-bilgi-cubugu {
    background-color: #000; /* Arka planı TAM SİYAH yaptık */
    color: var(--beyaz);    /* Yazıları BEYAZ yaptık ki okunsun */
    padding: 10px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    
    
}

.bilgi-icerik {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Linkler ve Yazı Ayarları */
.iletisim-bilgi a, .iletisim-bilgi span, .adres-bilgi span {
    color: var(--beyaz); /* Linkler beyaz olsun */
    text-decoration: none;
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

/* İkonları Sarı Yapalım (Konsept bozulmasın) */
.iletisim-bilgi i, .adres-bilgi i {
    color: var(--ana-renk); /* Telefon ve mail ikonları ALTIN SARISI */
}

/* Linkin üzerine gelince (Hover) */
.iletisim-bilgi a:hover {
    color: var(--ana-renk); /* Üzerine gelince sarı olsun */
}

/* Navbar */
.ust-menu {
    background-color: var(--arkaplan-menu);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

.ust-menu nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: var(--beyaz);
    font-family: var(--font-baslik);
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.logo span {
    color: var(--ana-renk);
    display: block;
    font-size: 0.8rem;
    letter-spacing: 5px;
}

.nav-linkler { display: flex; }

.nav-linkler li a {
    color: var(--beyaz);
    margin: 0 15px;
    font-size: 0.9rem;
}

.nav-linkler li a:hover, .nav-linkler li a.aktif {
    color: var(--ana-renk);
}

/* Dil Seçimi (Bayraklı) */
.dil-secimi { display: flex; align-items: center; gap: 15px; }

.dil-secimi a {
    display: flex; align-items: center;
    color: var(--metin-silik);
    font-size: 0.85rem;
    font-weight: 500;
}

.dil-secimi a img {
    width: 24px; margin-right: 6px;
    border-radius: 3px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.dil-secimi a:hover, .dil-secimi a.aktif-dil { color: var(--ana-renk); }

/* =========================================
   4. HERO SLIDER (KESİN ÇÖZÜM)
   ========================================= */

/* 1. Ana Kapsayıcı */
.kahraman-slider {
    position: relative;
    width: 100%;
    height: 100vh; /* Mobilde tam ekran olması için şart */
    min-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: #000;
    z-index: 1;
}

/* 2. Video Ayarları (Arka Plana Çivileme) */
.arkaplan-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Görüntüyü sündürmeden yayar */
    z-index: 0; /* En altta */
    
    /* Tıklamayı iptal et (Garanti kodlar) */
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
}

/* Tarayıcı oynatıcılarını gizle */
video::-webkit-media-controls { display: none !important; }

/* 3. Karartma (Overlay) */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1; /* Videonun üstünde */
    pointer-events: none;
}

/* 4. İçerik Kutusu */
.kahraman-icerik {
    position: relative;
    z-index: 10; /* Her şeyin üstünde */
    text-align: center;
    width: 90%;
    max-width: 900px;
    padding: 20px;
    color: #fff;
}

.kahraman-icerik h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.kahraman-icerik p {
    font-size: 1.3rem;
    margin: 0 auto 30px;
    max-width: 700px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

/* 5. Butonlar */
.kahraman-butonlar {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 999; /* En önde ve tıklanabilir */
}

.kahraman-butonlar a {
    cursor: pointer;
    width: auto;
    min-width: 250px;
    padding: 15px 20px;
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    /* Tıklamayı algılaması için */
    position: relative; 
}

/* 6. DALGA AYIRICI (SENİN İSTEDİĞİN GİBİ) */
.dalga-ayirici {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg); /* Senin ayarın */
    z-index: 3;
}
.dalga-ayirici svg {
    width: calc(100% + 1.3px);
    height: 60px;
}
.dalga-ayirici .shape-fill { fill: #ffffff; }

/* --- MOBİL AYARLARI --- */
@media (max-width: 768px) {
    .kahraman-slider {
        height: 100vh !important;
    }

    /* Mobilde içerik fontlarını ayarla */
    .kahraman-icerik h1 {
        font-size: 2rem;
    }
    .kahraman-icerik p {
        font-size: 1rem;
    }

    /* Butonları Alt Alta Diz */
    .kahraman-butonlar {
        flex-direction: column !important;
        gap: 20px !important;
        margin-top: 30px;
    }
    
    .kahraman-butonlar a {
        width: 100% !important;
        max-width: 300px !important;
    }
}
/* =========================================
   5. BÖLÜMLER (FEATURES, EVENTS, GUIDE, VIDEO)
   ========================================= */

/* Özellik Kartları (Neden Biz) */
.ozellikler-alani { padding: 80px 20px; text-align: center; }

.kart-izgara {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.ozellik-kart {
    background: var(--arkaplan-kart);
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid #333;
    transition: all 0.4s ease;
    display: flex; flex-direction: column; justify-content: center;
    min-height: 300px;
}

.ozellik-kart:hover {
    transform: translateY(-10px);
    border-color: var(--ana-renk);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.1); /* Sarımsı gölge */
}

.ozellik-kart i { font-size: 2.5rem; color: var(--ana-renk); margin-bottom: 20px; }
.ozellik-kart h3 { font-size: 1.4rem; margin-bottom: 15px; }

/* Etkinlikler Bölümü */
.etkinlik-bolumu {
    background-color: var(--arkaplan-menu); /* Daha koyu zemin */
    padding: 80px 0; margin-top: 50px;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}
.etkinlik-icerik { display: flex; align-items: center; gap: 50px; }
.etkinlik-metin { flex: 1; }
.etkinlik-gorsel { flex: 1; }
.etkinlik-gorsel img {
    width: 100%; border-radius: 10px;
    border: 5px solid rgba(255,255,255,0.1);
}

/* --- ŞANLIURFA REHBERİ CSS (YATAY SCROLL DÜZENİ) --- */
.rehber-bolumu {
    padding: 80px 20px;
    background-color: var(--arkaplan-ana); /* Sayfa rengiyle uyumlu */
}

/* Grid yerine Flex kullanarak yan yana diziyoruz */
.rehber-grid {
    display: flex;
    overflow-x: auto; /* Yana doğru kaydırma aç */
    gap: 30px;
    padding-bottom: 30px; /* Scroll çubuğu için boşluk */
    scroll-snap-type: x mandatory; /* Kartların hizalı durması için */
    -webkit-overflow-scrolling: touch; /* Mobilde akıcı kaydırma */
}

.rehber-kart {
    /* Kartların genişliğini sabitliyoruz ki sıkışmasınlar */
    min-width: 320px;
    max-width: 320px;
    
    background: var(--arkaplan-kart);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #333;
    transition: 0.3s;
    scroll-snap-align: start; /* Kaydırınca başa hizalansın */
    display: flex;
    flex-direction: column;
}

.rehber-kart:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.15); /* Sarı gölge */
    border-color: var(--ana-renk);
}

.rehber-gorsel img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.5s;
}

.rehber-kart:hover .rehber-gorsel img {
    transform: scale(1.05);
}

.rehber-bilgi {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* İçeriği alt tarafa yay */
    justify-content: space-between;
}

.rehber-bilgi h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--ana-renk);
}

.rehber-bilgi p {
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: var(--metin-silik);
    line-height: 1.5;
}

.rehber-link {
    color: var(--ana-renk);
    font-weight: 600;
    font-size: 0.9rem;
    align-self: flex-start; /* Linki sola yasla */
}

.rehber-link:hover {
    color: var(--ana-renk);
    padding-left: 5px;
}

/* Rehber için özel Scrollbar (Yorumlarla aynı stil) */
.rehber-grid::-webkit-scrollbar {
    height: 8px;
}
.rehber-grid::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 10px;
}
.rehber-grid::-webkit-scrollbar-thumb {
    background: var(--ana-renk);
    border-radius: 10px;
    border: 2px solid #1a1a1a;
}
/* Video Bölümü */
.video-bolumu {
    background-color: var(--arkaplan-menu);
    padding: 80px 0; text-align: center;
}
.video-cerceve {
    max-width: 900px; margin: 0 auto;
    border: 5px solid rgba(255,255,255,0.1);
    border-radius: 10px; overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* =========================================
   6. YORUMLAR (YATAY SCROLL)
   ========================================= */
.yorumlar-bolumu {
    background-color: var(--arkaplan-ana);
    padding: 80px 20px;
}

.yatay-yorum-akisi {
    display: flex;
    overflow-x: auto;
    gap: 30px; padding-bottom: 30px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.yorum-kart {
    min-width: 350px; max-width: 350px;
    background: var(--arkaplan-kart);
    padding: 30px; border-radius: 15px;
    border: 1px solid #333; position: relative;
    scroll-snap-align: center;
    display: flex; flex-direction: column; justify-content: space-between;
}

.otel-imza {
    position: absolute; top: 0; right: 0;
    background-color: var(--ana-renk); color: var(--siyah);
    font-size: 0.7rem; font-weight: bold;
    padding: 5px 15px;
    border-bottom-left-radius: 15px;
    border-top-right-radius: 15px;
}

.yildizlar { color: var(--ana-renk); margin-bottom: 15px; }
.yorum-kart p { font-style: italic; margin-bottom: 20px; }

.musteri-profil { display: flex; align-items: center; gap: 15px; }
.musteri-profil img {
    width: 50px; height: 50px; border-radius: 50%;
    object-fit: cover; border: 2px solid var(--ana-renk);
}

/* Scrollbar Özelleştirme */
.yatay-yorum-akisi::-webkit-scrollbar { height: 8px; }
.yatay-yorum-akisi::-webkit-scrollbar-track { background: #1a1a1a; border-radius: 10px; }
.yatay-yorum-akisi::-webkit-scrollbar-thumb { background: var(--ana-renk); border-radius: 10px; }

/* --- GELİŞMİŞ VE ESTETİK FOOTER --- */
.ana-footer {
    background-color: #111; /* Çok koyu antrasit/siyah */
    color: #aaa; /* Göz yormayan gri metin rengi */
    padding-top: 80px;
    padding-bottom: 30px;
    border-top: 3px solid var(--ana-renk); /* Üstte belirgin altın çizgi */
    font-size: 0.95rem;
}

.footer-kolonlar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px; /* Kolonlar arası boşluğu açarak ferahlık sağladık */
    margin-bottom: 60px;
}

/* Başlık Tasarımı */
.f-kolon h3 {
    color: var(--ana-renk); /* Altın Sarısı */
    font-family: var(--font-baslik);
    font-size: 1.5rem;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    letter-spacing: 1px;
}

/* Başlık Altındaki Yarım Çizgi Efekti */
.f-kolon h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--ana-renk);
    bottom: -10px;
    left: 0;
    transition: width 0.3s ease;
}

.f-kolon:hover h3::after {
    width: 100%; /* Üzerine gelince çizgi uzasın */
}

/* Metin ve Paragraflar */
.f-kolon p {
    color: #bbb;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Liste Linkleri (Hızlı Erişim) */
.f-kolon ul {
    list-style: none;
    padding: 0;
}

.f-kolon ul li {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); /* Çok hafif ayırıcı çizgiler */
    padding-bottom: 10px;
}

.f-kolon ul li:last-child {
    border-bottom: none;
}

.f-kolon ul li a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

/* Link Hover Efekti */
.f-kolon ul li a:hover {
    color: var(--ana-renk);
    transform: translateX(10px); /* Sağa doğru kayma */
}

/* Linkin başına ok işareti ekleyelim (Hoverda çıksın) */
.f-kolon ul li a::before {
    content: '\f105'; /* FontAwesome sağ ok */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    opacity: 0;
    margin-right: -10px;
    transition: 0.3s;
    color: var(--ana-renk);
}

.f-kolon ul li a:hover::before {
    opacity: 1;
    margin-right: 10px;
}

/* İletişim Listesi */
.iletisim-listesi li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: #ccc;
}

.iletisim-listesi i {
    color: var(--ana-renk);
    font-size: 1.1rem;
    margin-top: 4px;
    background: rgba(255, 193, 7, 0.1); /* İkon arkasına hafif sarı gölge */
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Sosyal Medya İkonları */
.sosyal-medya-footer {
    display: flex;
    gap: 15px;
}

.sosyal-medya-footer a {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.sosyal-medya-footer a:hover {
    background-color: var(--ana-renk);
    color: #000;
    transform: translateY(-5px) rotate(360deg); /* Dönerek yukarı çıkma */
    box-shadow: 0 0 15px var(--ana-renk);
}

/* Alt Bar (Telif Hakkı) */
.alt-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.85rem;
    color: #777;
    letter-spacing: 1px;
}
/* Sabit Butonlar (WhatsApp & Yukarı Çık) */
.float-btn {
    position: fixed; width: 55px; height: 55px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; box-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    z-index: 9999; transition: all 0.3s ease;
}

.whatsapp-btn {
    bottom: 30px; right: 30px;
    background-color: #25d366; color: #fff;
}
.whatsapp-btn:hover { background-color: #128c7e; transform: translateY(-5px); }

.up-btn {
    bottom: 100px; right: 30px;
    background-color: var(--ana-renk); color: var(--siyah);
    font-size: 22px; display: none; border: 2px solid #000;
}
.up-btn:hover { background-color: var(--beyaz); transform: translateY(-5px); }

/* =========================================
   8. RESPONSIVE TASARIM (MOBİL MENÜ DAHİL)
   ========================================= */

/* Hamburger Menü İkonu (Varsayılan: Gizli) */
.hamburger-menu { 
    display: none; 
    font-size: 1.8rem; 
    color: var(--ana-renk); /* Altın rengi değişkeni */
    cursor: pointer; 
    margin-left: 20px; 
    margin-right: 15px; /* BURASI EKLENDİ: Sağdan 15px iter, yani sola kayar */
}

/* TABLET VE TELEFON EKRANLARI (992px altı) */
@media (max-width: 992px) {
    
    /* 1. Header Düzeni */
    .ust-menu nav {
        position: relative; /* Menü buna göre konumlanacak */
    }

    /* 2. Hamburger İkonunu Göster */
    .hamburger-menu {
        display: block;
    }

    /* 3. Menü Linkleri (Kapalı Hali) */
    .nav-linkler {
        position: absolute;
        top: 100%; /* Header'ın hemen altına yapış */
        left: 0;
        width: 100%;
        background-color: #000; /* Tam Siyah Zemin */
        border-top: 2px solid var(--ana-renk); /* Üstte altın çizgi */
        flex-direction: column; /* Alt alta diz */
        align-items: center;
        padding: 20px 0;
        gap: 20px;
        
        /* Animasyonlu Açılış İçin Ayarlar */
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.4s ease-in-out;
        z-index: 1000;
        box-shadow: 0 10px 20px rgba(0,0,0,0.8);
    }

    /* 4. Menü Linkleri (AÇIK HALİ - JS Ekleyecek) */
    .nav-linkler.aktif-menu {
        max-height: 500px; /* Menünün açılacağı maksimum yükseklik */
        opacity: 1;
        padding: 30px 0; /* Açılınca dolgun dursun */
    }

    /* 5. Mobilde Link Stilleri */
    .nav-linkler li {
        width: 100%;
        text-align: center;
    }

    .nav-linkler li a {
        display: block;
        padding: 10px;
        font-size: 1.1rem;
        color: var(--metin-ana);
    }

    .nav-linkler li a:hover {
        color: var(--ana-renk);
        background-color: rgba(255, 193, 7, 0.1);
    }

    /* 6. Diğer Bölümlerin Mobildeki Hali */
    
    
    .kahraman-icerik h1 { font-size: 2rem; }
    
   /* =========================================
   BİZ KİMİZ (RESİMLİ ALAN) DÜZENLEMESİ
   ========================================= */
}
/* 1. Dış Kapsayıcı Ayarları */
.tanitim-bolumu {
    padding: 80px 0; /* Üstten alttan boşluk */
    background-color: #fff;
    width: 100%;
}

/* 2. Konteyner (İçeriği Ortalar ve Sınırlar) */
/* Eğer senin genel CSS'inde 'konteyner' varsa bunu silebilirsin */
.konteyner {
    width: 90%;
    max-width: 1200px; /* Çok geniş ekranlarda yayılmasın */
    margin: 0 auto; /* Ortala */
}

/* 3. Yan Yana Düzen (Flexbox) */
.tanitim-icerik-kapsayici {
    display: flex;       /* Yan yana getir */
    align-items: center; /* Dikeyde ortala */
    justify-content: space-between; /* Aralarını aç */
    gap: 50px;           /* Yazı ve Resim arası boşluk */
}

/* --- YAZI KISMI --- */
.tanitim-metin {
    flex: 1; /* Alanın %50'sini kapla */
}

.tanitim-metin .ust-baslik {
    color: #bfa15f; /* Altın rengi */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.tanitim-metin h2 {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.2;
}

.tanitim-metin p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

/* --- RESİM KISMI --- */
.tanitim-gorsel {
    flex: 1; /* Alanın diğer %50'sini kapla */
    position: relative;
    display: flex;       /* Resmin kutu içinde ortalanması için */
    justify-content: center;
}

/* Resmin Ayarları */
.tanitim-gorsel img {
    width: 100%;         /* Kutunun genişliğini doldur */
    height: auto;        /* Yükseklik orantılı olsun */
    max-height: 500px;   /* Çok devasa olmasın */
    object-fit: cover;   /* Resmi düzgünce kesip oturt */
    border-radius: 15px; /* Köşeleri yuvarlat */
    box-shadow: 0 10px 30px rgba(0,0,0,0.15); /* Gölge */
    display: block;
}

/* --- MOBİL UYUMLULUK (TELEFONLAR İÇİN) --- */
@media (max-width: 991px) {
    
    .tanitim-icerik-kapsayici {
        flex-direction: column; /* Mobilde alt alta diz */
        text-align: center;     /* Yazıları ortala */
        gap: 40px;              /* Aradaki boşluğu ayarla */
    }

    .tanitim-metin h2 {
        font-size: 2rem;        /* Başlığı mobilde küçült */
    }

    .tanitim-gorsel {
        width: 100%;            /* Resim alanı tam genişlik olsun */
        margin-bottom: 20px;
    }
    
    /* Eğer başka yerde kahraman butonlar varsa onların ayarı (Senin kodundan) */
    .kahraman-butonlar a {
        display: block; 
        margin: 10px auto; 
        width: 80%;
    }
} 
/* SON SÜSLÜ PARANTEZ KAPANDI - ARTIK HATA VERMEZ */
/* --- RTL (ARAPÇA) DESTEĞİ --- */
html[dir="rtl"] body {
    font-family: 'Tahoma', 'Arial', sans-serif; /* Arapça için daha uygun fontlar */
    text-align: right;
}

html[dir="rtl"] .nav-linkler {
    flex-direction: row-reverse; /* Menüyü ters çevir */
}

html[dir="rtl"] .iletisim-bilgi span, 
html[dir="rtl"] .adres-bilgi span {
    margin-right: 0;
    margin-left: 20px;
    flex-direction: row-reverse;
}

html[dir="rtl"] .ozellik-kart, 
html[dir="rtl"] .rehber-kart,
html[dir="rtl"] .yorum-kart {
    text-align: right;
}

html[dir="rtl"] .otel-imza {
    right: auto;
    left: 0; /* İmzayı sola al */
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

html[dir="rtl"] .rehber-link {
    align-self: flex-end; /* Linki sağa değil sola daya */
}

/* İkon ile yazı arasındaki boşluğu düzelt */
html[dir="rtl"] i {
    margin-right: 0;
    margin-left: 10px;
}
/* --- AÇILIŞ ANİMASYONU (PRELOADER) GÜNCEL --- */
#acilis-perdesi {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease-out, visibility 0.8s;
}

.gizle-perde {
    opacity: 0;
    visibility: hidden;
}

.yukleme-icerigi {
    text-align: center;
    color: var(--ana-renk);
}

.logo-ikon i {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0;
    animation: ikonGelis 1s ease-out forwards;
}

.logo-yazi {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    letter-spacing: 5px;
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    animation: yaziGelis 1s ease-out 0.5s forwards;
    background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo-alt {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: #888;
    margin-top: 10px;
    opacity: 0;
    animation: altYaziGelis 1s ease-out 1s forwards;
}

/* YENİ EKLENEN: LOADING YAZISI */
.yukleme-yazisi {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 4px; /* Harfler arası açık olsun */
    color: #555; /* Çok parlak olmasın, sönük dursun */
    margin-top: 40px;
    opacity: 0; /* Başlangıçta gizli */
    
    /* Önce belirsin, sonra sonsuza kadar yanıp sönsün */
    animation: 
        gorunurOl 0.5s ease-out 1.5s forwards, 
        nefesAl 1.5s ease-in-out infinite 2s; 
}

/* --- KEYFRAMES --- */
@keyframes ikonGelis {
    0% { transform: scale(0); opacity: 0; }
    80% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes yaziGelis {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes altYaziGelis {
    from { letter-spacing: 0px; opacity: 0; }
    to { letter-spacing: 8px; opacity: 1; }
}

/* Loading yazısı için efektler */
@keyframes gorunurOl {
    to { opacity: 1; }
}

@keyframes nefesAl {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; color: var(--ana-renk); } /* Yanınca sarı olsun */
}

/* --- RESMİ BELGE KARTLARI --- */
.belgeler-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto;
}

.belge-karti {
    background-color: var(--arkaplan-kart);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: 0.3s all ease;
    position: relative;
    overflow: hidden;
}

.belge-karti:hover {
    border-color: var(--ana-renk); /* Altın rengi çerçeve */
    transform: translateY(-5px);
    background-color: rgba(255, 215, 0, 0.05);
}

.belge-ikon {
    font-size: 2.5rem;
    color: var(--ana-renk);
    margin-right: 20px;
}

.belge-bilgi h3 {
    font-family: var(--font-baslik);
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}

.belge-bilgi span {
    font-size: 0.85rem;
    color: var(--metin-silik);
    font-family: var(--font-metin);
}

.belge-ok {
    margin-left: auto;
    color: var(--ana-renk);
    font-size: 1.2rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: 0.3s all ease;
}

.belge-karti:hover .belge-ok {
    opacity: 1;
    transform: translateX(0);
}

/* --- PRELOADER LOGO DÜZENİ (ORİJİNAL ŞEKİL) --- */
.logo-kapsayici {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.preloader-logo {
    /* 1. Boyut Ayarları */
    width: 300px;       /* Genişliği artırdık ki logo rahat görünsün */
    height: auto;       /* Yükseklik orantılı olsun, resim basık durmasın */
    max-width: 90%;     /* Mobilde ekran dışına taşmasın */
    
    /* 2. Şekil ve Arka Plan (SIFIRLAMA) */
    object-fit: contain;           /* Resmi kesmeden sığdır */
    border-radius: 0 !important;   /* Yuvarlaklığı İPTAL ET */
    border: none !important;       /* Altın çerçeveyi İPTAL ET */
    background-color: transparent !important; /* Arka plan rengini İPTAL ET */
    box-shadow: none !important;   /* Kutu gölgesini İPTAL ET */
    
    /* 3. Estetik (Sadece Logonun Kendisine Gölge) */
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.5)); /* Logonun etrafına altın hare */
    
    /* 4. Animasyon */
    animation: logoNefes 2s infinite ease-in-out;
}

@keyframes logoNefes {
    0% { transform: scale(1); box-shadow: 0 0 20px rgba(214, 90, 49, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 0 40px rgba(214, 90, 49, 0.6); }
    100% { transform: scale(1); box-shadow: 0 0 20px rgba(214, 90, 49, 0.3); }
}
/* --- MENU LOGO AYARLARI --- */

/* Link kapsayıcısını esnek yap (Yan yana dizilim) */
.logo-link {
    display: flex;
    align-items: center;
    gap: 30px; /* Logo ile yazı arasındaki boşluk */
    text-decoration: none;
}

/* Logo Resmi Stilleri */
.nav-logo {
    height: 100px; /* Menüye sığacak ideal yükseklik */
    width: 100px;
    object-fit: cover;
    border-radius: 50%; /* Yuvarlak olması için */
   /* border: 2px solid var(--ana-renk);  Altın çerçeve */
    transition: transform 0.3s ease;
}

/* Üzerine gelince hafif büyüme efekti 
.logo-link:hover .nav-logo {
    transform: rotate(10deg) scale(1.1);
}
    */

/* Yazı Alanı Düzenlemesi */
.logo-metin {
    display: flex;
    flex-direction: column; /* Alt alta (Tarihi Han üstte, Konuk Evi altta) */
    font-family: var(--font-baslik);
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    line-height: 1.1;
}

/* Konuk Evi yazısının stili (Span) */
.logo-metin span {
    font-size: 0.75rem;
    color: var(--ana-renk); /* Altın rengi */
    font-weight: normal;
    letter-spacing: 2px;
}/* --- MEVCUT KODLARIN BURADA KALSIN --- */

/* ... senin yukarıdaki kodların ... */


/* =========================================
   MOBİL UYUMLULUK (PROFESYONEL DÜZENLEME)
   ========================================= */
@media (max-width: 992px) {
    
    /* 1. Navbar Düzeni: Esnek ve Geniş */
    .ust-menu nav {
        min-height: 80px; /* Yüksekliği biraz artırdık ki logo sığsın */
        padding: 5px 0;
        align-items: center;
        /* Elemanları yay: Logo Sola, Diğerleri Sağa */
        justify-content: flex-start; 
    }

    /* 2. LOGO KISMI (Sola Yaslı ve Büyük) */
    .logo {
        flex-grow: 1; /* Boş alanı logonun kaplamasına izin ver */
    }

    .logo-link {
        gap: 10px;
        justify-content: flex-start; /* Sola hizala */
    }

    .nav-logo {
        height: 70px; /* Logo resmini büyüttük */
        width: 70px;
        border-width: 2px;
    }

    .logo-metin {
        font-size: 1.7rem; /* "TARİHİ HAN" yazısını büyüttük */
        line-height: 1;
        align-items: flex-start; /* Yazıları sola hizala */
    }

    .logo-metin span {
        font-size: 1rem; /* "KONUK EVİ" yazısı */
        letter-spacing: 2px;
        margin-top: 3px;
    }

    /* 3. DİL SEÇİMİ (Sağa Yatık & Sadece Bayrak) */
    .dil-secimi {
        margin-left: auto; /* Logodan uzağa, en sağa it */
        margin-right: 15px; /* Hamburger menü ile arasına boşluk */
        gap: 12px; /* Bayraklar arası mesafe */
    }

    /* Mobilde "TR, EN" yazılarını gizle, SADECE BAYRAK kalsın */
    /* Bu sayede logoya devasa yer açılır */
    .dil-secimi a {
        font-size: 0; /* Yazıyı yok et */
    }

    .dil-secimi a img {
        margin-right: 0; 
        width: 30px; /* Bayrakları büyüt (Dokunması kolay olsun) */
        height: auto;
        box-shadow: 0 2px 5px rgba(0,0,0,0.8); /* Belirginleştir */
    }

    /* 4. Hamburger Menü */
    .hamburger-menu {
        font-size: 2rem; /* Menü ikonunu büyüt */
        margin-left:0;
    }

    /* Menü Açılır Alanı (Standart Ayar) */
    .nav-linkler {
        top: 90px; /* Navbar yüksekliğine göre ayarlandı */
        background-color: #000;
        border-top: 1px solid var(--ana-renk);
    }
}
/* =========================================
   MOBİL İÇİN ÜST BİLGİ ÇUBUĞU AYARI
   ========================================= */
@media (max-width: 992px) {
    
    /* 1. Gizlenen çubuğu geri getir */
    .ust-bilgi-cubugu {
        display: block !important; /* Görünür yap */
        padding: 5px 0;
    }

    /* 2. İçerikleri alt alta ve ortalı diz */
    .ust-bilgi-cubugu .bilgi-icerik {
        flex-direction: column; /* Alt alta sırala */
        gap: 5px; /* Aralarına boşluk koy */
        text-align: center;
    }

    /* 3. Yazı boyutlarını telefona göre ayarla */
    .iletisim-bilgi a, 
    .adres-bilgi span {
        margin-right: 0; /* Sağ boşluğu sıfırla */
        justify-content: center; /* Ortala */
        font-size: 0.75rem; /* Yazıyı biraz küçült */
        width: 100%;
    }
    
    /* İkonları biraz belirginleştir */
    .iletisim-bilgi i, .adres-bilgi i {
        font-size: 0.9rem;
    }
}
/* --- İKİNCİL BUTON TASARIMI (Ghost Button) --- */
.buton-ikincil {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--ana-renk); /* Yazı Altın Rengi */
    border: 2px solid var(--ana-renk); /* Çerçeve Altın Rengi */
    background-color: transparent; /* İçi Şeffaf */
    border-radius: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Üzerine gelince (Hover) */
.buton-ikincil:hover {
    background-color: var(--ana-renk); /* İçi Altın dolsun */
    color: #000; /* Yazı siyah olsun */
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4); /* Parlama efekti */
    transform: translateY(-3px);
}

/* Mobilde butonlar alt alta gelmesin, yan yana sığsın diye ayar */
@media (max-width: 768px) {
    .kahraman-butonlar {
        flex-direction: column; /* Telefonda alt alta olsun */
        gap: 15px;
        width: 80%;
        margin: 30px auto 0;
    }
    
    .buton-ana, .buton-ikincil {
        width: 100%; /* Tam genişlik */
        justify-content: center;
    }
}
/* --- SCROLL PROGRESS BUTONU (Görünür & Kalın) --- */
.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 100px; /* WhatsApp'ın üstünde */
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    border-radius: 50%;
    
    /* Zemin Rengi */
    background-color: #ffffff; 
    
    /* Etrafına hafif gri bir 'yol' çiziyoruz ki dolan kısım belli olsun */
    box-shadow: inset 0 0 0 4px rgba(0, 0, 0, 0.1); 
    
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 200ms linear;
}

/* Sayfa inince görünsün */
.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Çemberin (SVG) Ayarları - KALINLAŞTIRDIK */
.progress-circle path {
    fill: none;
    
    /* Rengi daha belirgin yap (Mevcut ana rengi kullanır) */
    stroke: var(--ana-renk); 
    
    /* Çizgi kalınlığı: 4'ten 5'e çıkardık, daha net görünür */
    stroke-width: 5; 
    
    box-sizing: border-box;
    transition: all 200ms linear;
    
    /* Çizginin altına hafif gölge atarak patlatalım */
    filter: drop-shadow(0 0 2px rgba(0,0,0,0.3));
}

/* Ortadaki Ok İkonu - DAHA KOYU */
.progress-wrap i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px; /* Oku da biraz büyüttük */
    color: var(--ana-renk); 
    transition: all 200ms linear;
}

/* Üzerine gelince (Hover) */
.progress-wrap:hover {
    transform: translateY(-5px); 
    box-shadow: inset 0 0 0 4px rgba(212, 175, 55, 0.2); /* Hoverda iz rengi de hafif sararsın */
}

.progress-wrap:hover i {
    color: #000; /* Ok siyah olsun */
}

/* =================================================================
   YAMA: OKUNABİLİRLİK VE RENK DÜZELTMESİ (MEVCUT DÜZENİ BOZMAZ)
   Bunu style.css dosyanın en altına ekle.
   ================================================================= */

/* 1. GENEL ZEMİN VE YAZI RENGİ GÜNCELLEMESİ */
body {
    background-color: #F9F7F2 !important; /* Urfa Taşı Rengi */
    color: #222222 !important;            /* Genel yazı rengi KOYU GRİ (Okunsun diye) */
}

/* 2. PARAGRAFLAR VE BAŞLIKLAR (Siyah Zeminli Yerler Hariç) */
/* Header, Footer ve Slider dışındaki tüm başlıkları SİYAH yap */
body > section:not(.ust-menu):not(.kahraman-slider):not(.etkinlik-bolumu):not(.video-bolumu):not(.ana-footer) h1,
body > section:not(.ust-menu):not(.kahraman-slider):not(.etkinlik-bolumu):not(.video-bolumu):not(.ana-footer) h2,
body > section:not(.ust-menu):not(.kahraman-slider):not(.etkinlik-bolumu):not(.video-bolumu):not(.ana-footer) h3,
body > section:not(.ust-menu):not(.kahraman-slider):not(.etkinlik-bolumu):not(.video-bolumu):not(.ana-footer) h4,
body > section:not(.ust-menu):not(.kahraman-slider):not(.etkinlik-bolumu):not(.video-bolumu):not(.ana-footer) h5,
body > section:not(.ust-menu):not(.kahraman-slider):not(.etkinlik-bolumu):not(.video-bolumu):not(.ana-footer) h6 {
    color: #1a1a1a !important;
}

p {
    color: #444444; /* Düz yazılar koyu gri */
}

/* 3. KARTLARIN OKUNABİLİRLİĞİ (Politikalar, Hakkımızda vb.) */
/* Tüm kutu ve kartların içini BEYAZ, yazılarını SİYAH yap */
.ozellik-kart, 
.rehber-kart, 
.yorum-kart, 
.belge-karti,
.hakkimizda-kutu,   /* Hakkımızda kısmı için */
.vizyon-kart,       /* Vizyon kısmı için */
.politikalar-kutu { /* Politikalar kısmı için */
    background-color: #FFFFFF !important;
    color: #000000 !important;
    border: 1px solid #e0e0e0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Kartların içindeki başlık ve yazıları zorla siyah yap */
.ozellik-kart h3, 
.rehber-kart h3, 
.yorum-kart p, 
.belge-karti h3, 
.belge-karti span,
.hakkimizda-kutu h2, 
.hakkimizda-kutu p {
    color: #000000 !important;
}

/* 4. İSTİSNALAR (Siyah Kalması Gereken Yerler) */

/* Navbar (Menü) Linkleri - BEYAZ KALMALI */
.nav-linkler li a {
    color: #FFFFFF !important;
}

/* Slider (Ana Resim) Üzerindeki Yazılar - BEYAZ KALMALI */
.kahraman-icerik h1, 
.kahraman-icerik p {
    color: #FFFFFF !important;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

/* Footer (Alt Kısım) - BEYAZ/GRİ KALMALI */
.ana-footer, 
.ana-footer p, 
.ana-footer a, 
.ana-footer li {
    color: #bbbbbb !important;
}
.ana-footer h3 {
    color: #D4AF37 !important; /* Altın Rengi */
}

/* Etkinlik ve Video Bölümleri (Koyu Şeritler) - BEYAZ KALMALI */
.etkinlik-bolumu, .video-bolumu {
    background-color: #111 !important;
    color: #fff !important;
}
.etkinlik-bolumu h2, 
.etkinlik-bolumu p, 
.video-bolumu h2 {
    color: #FFFFFF !important;
}

/* =================================================================
   İLETİŞİM SAYFASI DÜZENLEMELERİ (EN ALTA EKLE)
   Bu kod, iletişim kutularını ve formu bej zemin üzerinde belirginleştirir.
   ================================================================= */

/* 1. İletişim Bilgi Kutuları (Adres, Telefon, Email) */
.iletisim-kutu {
    background-color: #FFFFFF !important; /* Kutu içi BEYAZ */
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); /* Hafif gölge */
    text-align: center;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.iletisim-kutu:hover {
    transform: translateY(-5px); /* Üzerine gelince kalksın */
    border-color: #D4AF37; /* Kenarı altın olsun */
}

.iletisim-kutu i {
    font-size: 2.5rem;
    color: #D4AF37; /* İkon Altın */
    margin-bottom: 15px;
}

.iletisim-kutu h3 {
    font-size: 1.2rem;
    color: #000000 !important; /* Başlık Siyah */
    margin-bottom: 10px;
    font-weight: bold;
}

.iletisim-kutu p, .iletisim-kutu a {
    color: #444444 !important; /* Yazı Koyu Gri */
    font-size: 0.95rem;
    text-decoration: none;
}

/* 2. İletişim Formu Alanı */
.iletisim-form-kapsayici {
    background-color: #FFFFFF !important; /* Form zemini BEYAZ */
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #e0e0e0;
}

.iletisim-form-kapsayici h3 {
    color: #000000 !important;
    margin-bottom: 25px;
}

/* Form Kutucukları (Inputlar) */
.form-grup input, 
.form-grup textarea,
.form-control { /* Genel kullanım için */
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background-color: #f9f9f9 !important; /* Çok hafif gri */
    border: 1px solid #ddd !important;
    border-radius: 5px;
    color: #000000 !important; /* Yazı rengi SİYAH */
    font-family: 'Poppins', sans-serif;
    transition: 0.3s;
}

/* Kutuya tıklayınca (Focus) */
.form-grup input:focus, 
.form-grup textarea:focus,
.form-control:focus {
    background-color: #ffffff !important;
    border-color: #D4AF37 !important; /* Altın rengi çerçeve */
    outline: none;
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
}

/* Placeholder (İpucu yazısı) Rengi */
::placeholder {
    color: #888888 !important;
    opacity: 1;
}

/* 3. Harita Bölümü */
.harita-alani iframe {
    width: 100%;
    height: 450px;
    border-radius: 15px;
    border: 5px solid #FFFFFF; /* Beyaz çerçeve */
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
/* =================================================================
   LİNK HOVER AYARLARI (ÜZERİNE GELİNCE SARI OLSUN)
   Bunu style.css dosyanın en altına ekle.
   ================================================================= */

/* 1. İletişim Sayfasındaki Linkler (Telefon, Mail vb.) */
.iletisim-kutu a {
    transition: all 0.3s ease; /* Rengin yumuşak değişmesi için */
    display: inline-block;     /* Hareket edebilmesi için */
}

.iletisim-kutu a:hover {
    color: #D4AF37 !important; /* Üzerine gelince ALTIN SARISI */
    transform: translateX(5px); /* Hafifçe sağa kaysın (Hoş bir efekt) */
}

/* 2. İkonların da rengi değişsin (Opsiyonel ama şık durur) */
.iletisim-kutu:hover i {
    color: #000000 !important; /* Kutuya gelince ikon Siyah olsun */
    transform: scale(1.1);     /* İkon biraz büyüsün */
    transition: all 0.3s ease;
}

/* 3. Sayfa Genelindeki Metin Linkleri */
/* Siyah zeminli yerler (Footer/Menu) hariç, düz yazı içindeki linkler */
p a {
    color: #000000; /* Normalde siyah/koyu olsun */
    font-weight: 600;
    text-decoration: underline;
    transition: all 0.3s ease;
}

p a:hover {
    color: #D4AF37 !important; /* Üzerine gelince SARI */
    text-decoration: none;
}
/* =================================================================
   NAVBAR (MENÜ) HOVER DÜZELTMESİ (EN ALTA YAPIŞTIR)
   Bu kod, menü linklerinin üzerine gelince tekrar Altın olmasını sağlar.
   ================================================================= */

.nav-linkler li a:hover,
.nav-linkler li a.aktif {
    color: #D4AF37 !important; /* Kesinlikle Altın Sarısı Olsun */
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.6); /* Hafifçe parlasın */
    transform: translateY(-2px); /* Hafifçe yukarı kalksın */
    background: none !important; /* Arka plan değişmesin */
}


/* =========================================
   MENÜ SAYFASI TASARIMI (menu.html)
   ========================================= */

/* Başlık Alanı */
.menu-baslik-alani {
    padding: 60px 20px 40px;
    text-align: center;
    background-color: #fcfcfc;
}

/* Kategori Butonları (Tablar) */
.menu-tab-alani {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.menu-tab-btn {
    background: transparent;
    border: 2px solid #D4AF37;
    color: #000;
    padding: 12px 30px;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-tab-btn:hover, 
.menu-tab-btn.aktif-tab {
    background-color: #D4AF37;
    color: #fff;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

/* Menü İçerik Alanı (Grid) */
.menu-icerik-alani {
    display: none; /* Varsayılan gizli */
    animation: fadeInMenu 0.5s ease;
    padding-bottom: 80px;
}

.menu-icerik-alani.aktif-icerik {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

@keyframes fadeInMenu {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Menü Kartı Tasarımı */
.menu-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-left: 4px solid #D4AF37;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Yemek Resmi */
.menu-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f0f0f0;
    flex-shrink: 0;
}

/* Yemek Detayları */
.menu-detay {
    flex: 1;
}

.menu-ad {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 5px;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 5px;
    display: block;
}

.menu-aciklama {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    font-style: italic;
    margin: 0;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .menu-item {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    .menu-ad {
        justify-content: center;
        border-bottom: none;
        margin-top: 10px;
    }
    .menu-img {
        width: 110px;
        height: 110px;
    }
}

/* --- YENİ EKLENEN ŞEFİN İMZASI ALANI --- */
.sefin-secimi-karti {
    display: flex;
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border: 1px solid #eee;
    margin-top: 20px;
}

.sef-gorsel {
    flex: 1;
    position: relative;
    min-height: 300px;
}

.sef-gorsel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-sef {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #D4AF37;
    color: #000;
    padding: 8px 15px;
    font-weight: bold;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    font-family: 'Poppins', sans-serif;
}

.sef-detay {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(to right, #fff, #fcfcfc);
}

.sef-ust-baslik {
    color: #D4AF37;
    letter-spacing: 3px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.sef-detay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #222;
}

.sef-detay p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.sef-ozellikler {
    display: flex;
    gap: 20px;
}

.sef-ozellikler span {
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sef-ozellikler i {
    color: #D4AF37;
}

/* --- YENİ EKLENEN PARALLAX ALANI --- */
.lezzet-parallax {
    background-image: url('https://images.unsplash.com/photo-1596451990425-4c0291931818?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80'); /* Urfa/Baharat temalı resim */
    background-attachment: fixed; /* Resmi sabitler, sayfa kayar */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    height: 400px;
    margin-bottom: 0;
}

.parallax-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Karanlık filtre */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.parallax-icerik i {
    font-size: 3rem;
    color: #D4AF37;
    margin-bottom: 20px;
}

.parallax-icerik h2 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-style: italic;
}

.parallax-icerik p {
    color: #ddd;
    font-size: 1.1rem;
    line-height: 1.6;
}

* --- HEMEN ARA BANDI --- */
.rezervasyon-bandi { background-color: #111; padding: 40px 0; border-top: 4px solid #D4AF37; }
.band-flex { display: flex; justify-content: space-between; align-items: center; }
.band-yazi h3 { color: #fff; font-family: 'Playfair Display', serif; font-size: 1.8rem; margin-bottom: 5px; }
.band-yazi p { color: #aaa; margin: 0; }
.band-buton { background-color: #D4AF37; color: #000; padding: 15px 35px; border-radius: 50px; font-weight: 700; font-size: 1.1rem; transition: 0.3s; white-space: nowrap; }
.band-buton:hover { background-color: #fff; transform: scale(1.05); }

/* Mobil Uyum */
@media (max-width: 768px) {
    .sefin-secimi-karti { flex-direction: column; }
    .sef-gorsel { min-height: 250px; }
    .sef-detay { padding: 25px; text-align: center; }
    .sef-ozellikler { justify-content: center; flex-wrap: wrap; }
    
    .band-flex { flex-direction: column; text-align: center; gap: 20px; }
    .parallax-icerik h2 { font-size: 1.5rem; }
    .lezzet-parallax { height: 350px; background-attachment: scroll; /* Mobilde parallax kasar, kapatıyoruz */ }
}

/* WhatsApp Butonu Tasarımı */
.buton-whatsapp {
    background-color: #25D366; /* WhatsApp Yeşili */
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px; /* Kenarları yuvarlar */
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 8px; /* İkon ile yazı arası boşluk */
    transition: background-color 0.3s;
}

.buton-whatsapp:hover {
    background-color: #128C7E; /* Üzerine gelince koyu yeşil olur */
}

/* Mevcut "buton-ana" sınıfın zaten vardır ama yoksa standart bir renk verelim */
.buton-ana {
    background-color: #bfa15f; /* Senin sitenin altın sarısı rengi */
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Mobilde butonlar alt alta değil yan yana sığsın diye */
@media (max-width: 768px) {
    .rezervasyon-butonlari {
        flex-direction: column; /* Mobilde alt alta olsun istersen bunu kullan */
        /* Yan yana kalsın istersen bu satırı sil */
    }
    
    .buton-whatsapp, .buton-ana {
        width: 100%; /* Mobilde butonlar tam genişlik olsun */
        justify-content: center; /* Yazıyı ortala */
        margin-bottom: 5px;
    }
}