/* Genel Stiller ve Fontlar */
:root {
    --primary-color: #d4af37; /* Altın rengi bir tema */
    --dark-bg: #121212;
    --light-text: #f5f5f5;
    --dark-text: #333;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: var(--dark-bg);
    margin: 0;
    padding: 0;
    color: var(--light-text);
}

/* 1. NAVBAR */
/* NAVBAR (Güncellenmiş) */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: rgba(255, 255, 255, 0.6);
    position: fixed; /* Sayfa kaydırılsa bile üstte kalır */
    width: 100%;
    top: 0;
    z-index: 1000;
    box-sizing: border-box;
}
.nav-item {
    flex: 1;
}
.nav-left {
    text-align: left;
}
.nav-center {
    text-align: center;
}
.logo {
    height: 50px;
}
.nav-right {
    text-align: right;
}

/* MENÜ BUTONU (Sağ taraf) */
.menu-button {
    font-size: 1.5em;
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s ease;
}
.menu-button:hover {
    color: var(--primary-color);
}

/* DİL BAYRAKLARI (Sol taraf) */
.lang-option .flag-icon {
    font-size: 20px;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    vertical-align: middle;
}
.nav-left .lang-option {
    display: inline-block;
    padding: 5px;
    margin: 0 3px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}
.nav-left .lang-option.active,
.nav-left .lang-option:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

/* Menü sayfasının navbar'ın altında kalmaması için */
.menu-section {
    padding-top: 120px; /* Navbar'ın yüksekliği + boşluk */
    padding-bottom: 60px;
    padding-left: 20px;
    padding-right: 20px;
    background-color: #fff;
    color: var(--dark-text);
}

/* MOBİL İÇİN KÜÇÜK AYAR */
@media (max-width: 768px) {
    .navbar {
        padding: 10px 15px;
    }
    .logo {
        height: 40px;
    }
}

/* 2. GİRİŞ VİDEO ALANI */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Videoyu karartmak için */
    z-index: 2;
}
.hero-content {
    position: relative;
    z-index: 3;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}
.hero-content h1 {
    font-size: 4em;
    margin: 0;
    font-weight: 700;
}
.hero-content p {
    font-size: 1.5em;
    margin-top: 10px;
    letter-spacing: 2px;
}

/* 3. MENÜ BÖLÜMÜ */
.menu-section {
    padding: 60px 20px;
    background-color: #fff; /* Menü alanı açık renk */
    color: var(--dark-text);
}

#menu-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Yükleniyor ve Menü stilleri öncekiyle aynı, burada tekrar tanımlıyoruz */
#loading { text-align: center; padding: 50px; }
.spinner { border: 4px solid rgba(0, 0, 0, 0.1); width: 36px; height: 36px; border-radius: 50%; border-left-color: var(--primary-color); animation: spin 1s ease infinite; margin: 0 auto 10px; }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.kategori-baslik { font-size: 2em; color: #1a1a1a; border-bottom: 2px solid #eee; padding-bottom: 10px; margin-top: 30px; margin-bottom: 20px; }
.kategori-baslik:first-child { margin-top: 0; }
.urun-item { display: flex; justify-content: space-between; align-items: flex-start; padding: 15px 0; border-bottom: 1px solid #f0f0f0; }
.urun-item:last-child { border-bottom: none; }
.urun-bilgi { flex-grow: 1; margin-right: 15px; }
.urun-adi { font-size: 1.2em; margin: 0 0 5px 0; }
.urun-aciklama { font-size: 0.9em; color: #666; margin: 0; }
.urun-fiyat { font-size: 1.2em; font-weight: bold; white-space: nowrap; }
.hata { text-align: center; color: #d9534f; font-size: 1.2em; }


/* 4. FOOTER */
.site-footer {
    background-color: #1a1a1a;
    padding: 40px 20px 20px;
    color: #aaa;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-left .fa-instagram {
    font-size: 3em;
    color: var(--light-text);
    transition: color 0.3s ease;
}
.footer-left a:hover .fa-instagram {
    color: var(--primary-color);
}
.footer-right iframe {
    border-radius: 8px;
    max-width: 100%;
}
.footer-copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 0.9em;
}
.footer-copyright a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}
.footer-copyright a:hover {
    color: var(--primary-color);
}
/* --- SPLASH SCREEN STİLLERİ BAŞLANGIÇ --- EKLENDİ --- */
        /* --- POP-UP REKLAM STİLLERİ BAŞLANGIÇ --- EKLENDİ --- */
        #popup-modal {
            position: fixed;
            /* Ekranı kaplayan yarı saydam arka plan */
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 9999;
            background-color: rgba(0, 0, 0, 0.6);
            /* Siyah ve %60 saydamlıkta arka plan */
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .popup-content {
            position: relative;
            /* Kapatma tuşunu konumlandırmak için */
            background-color: var(--primary-bg);
            /* Sitenizin ana arka plan rengi */
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            max-width: 90%;
            max-height: 90vh;
        }

        .popup-content a {
            display: block;
            /* Linkin resim boyutunu almasını sağlar */
        }

        .popup-content img {
            max-width: 100%;
            max-height: calc(90vh - 80px);
            /* Dikeyde taşmayı önler */
            display: block;
            border-radius: 5px;
        }

        #popup-close-btn {
            position: absolute;
            /* İçeriğe göre sağ üste konumlanır */
            top: 5px;
            right: 15px;
            font-size: 30px;
            font-weight: bold;
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }

        #popup-close-btn:hover {
            color: #000;
        }

        /* --- POP-UP REKLAM STİLLERİ BİTİŞ --- */
        /* --- SPLASH SCREEN STİLLERİ BİTİŞ --- EKLENDİ --- */