:root {
    --gold: #f4c430;      
    --deep-orange: #e67e22; 
    --dark-bg: #0a0a0a;  
    --smoke-gray: #333333; 
    --text-light: #ecf0f1; 
    --white: #ffffff;
}

body { font-family: 'Poppins', sans-serif; margin: 0; background: var(--dark-bg); color: var(--text-light); line-height: 1.6; overflow-x: hidden; scroll-behavior: smooth; }

/* 1. YÜKLENİYOR EKRANI (ATEŞ) */
#loader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: #000; z-index: 9999; display: flex; justify-content: center; align-items: center; transition: opacity 0.5s; }
.fire { position: relative; width: 60px; height: 60px; background: var(--gold); border-radius: 50% 50% 0 50%; transform: rotate(-45deg); box-shadow: 0 0 20px var(--deep-orange); animation: blaze 1.5s infinite; }
.flames { position: absolute; bottom: 0; left: 0; width: 100%; height: 100%; background: var(--deep-orange); border-radius: 50% 50% 0 50%; transform: scale(1.1); filter: blur(5px); animation: blaze 1s infinite; }
@keyframes blaze { 0%, 100% { transform: rotate(-45deg) scale(1); } 50% { transform: rotate(-45deg) scale(1.1); filter: blur(2px); } }

/* 2. HEADER & NAV (MENÜ ARALIKLARI FERAH) */
header { background: rgba(0, 0, 0, 0.95); padding: 10px 5%; display: flex; justify-content: space-between; align-items: center; position: fixed; width: 100%; top: 0; z-index: 1000; border-bottom: 2px solid var(--gold); box-sizing: border-box; backdrop-filter: blur(10px); }
.logo-area { text-decoration: none; display: flex; align-items: center; gap: 5px; cursor: pointer; }
.logo-zula { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--white); font-weight: 900; letter-spacing: 1px; }
.logo-tantuni { font-family: 'Poppins', sans-serif; font-size: 24px; color: var(--gold); font-weight: 400; }

.header-right { display: flex; align-items: center; gap: 10px; } 
.nav-links { display: flex; gap: 35px; align-items: center; } 
.nav-links button { background: none; border: none; font-family: 'Poppins', sans-serif; font-size: 1rem; color: var(--text-light); font-weight: 600; cursor: pointer; transition: 0.3s; padding: 5px 0; }
.nav-links button:hover, .nav-links button.active-nav { color: var(--gold); border-bottom: 2px solid var(--gold); }

/* 3. DİL SEÇİCİ (GÖRÜNMEZ KÖPRÜ İLE DÜZELTİLDİ) */
.lang-dropdown { position: relative; display: inline-block; padding-bottom: 15px; margin-bottom: -15px; }
.lang-btn { background: #222; color: #fff; border: 1px solid #444; padding: 6px 14px; border-radius: 8px; cursor: pointer; font-family: 'Poppins'; font-size: 0.9rem; font-weight: 600; transition: 0.3s; }
.lang-btn:hover { border-color: var(--gold); box-shadow: 0 0 10px rgba(244, 196, 48, 0.2); }
.lang-content { display: none; position: absolute; top: 100%; right: 0; background-color: #111; min-width: 120px; box-shadow: 0px 8px 16px rgba(0,0,0,0.5); border-radius: 8px; overflow: hidden; z-index: 9999; border: 1px solid #333; margin-top: 0; }
.lang-content a { color: white; padding: 12px 15px; text-decoration: none; display: block; font-size: 0.9rem; transition: 0.2s; }
.lang-content a:hover { background-color: var(--gold); color: #000; font-weight: bold; padding-left: 20px; }
.lang-dropdown:hover .lang-content { display: block; animation: fadeIn 0.3s ease; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* 4. YÜZER BUTON (FAB) - TAM SAĞ ALTTA, YUKARI AÇILIR */
.fab-container { position: fixed; bottom: 25px; right: 25px; z-index: 9999; }
.fab-main { width: 65px; height: 65px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--deep-orange)); border: none; font-size: 30px; cursor: pointer; box-shadow: 0 5px 20px rgba(0,0,0,0.6); transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); z-index: 2; position: relative; display: flex; align-items: center; justify-content: center; color: #000; }
.fab-container.open .fab-main { transform: rotate(135deg); background: #333; color: var(--gold); }
.fab-menu { position: absolute; bottom: 85px; right: 7px; display: flex; flex-direction: column; gap: 15px; opacity: 0; transform: translateY(30px) scale(0.5); pointer-events: none; transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.fab-container.open .fab-menu { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }

.fab-item { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; color: #fff; box-shadow: 0 4px 15px rgba(0,0,0,0.4); transition: 0.2s; font-size: 22px; }
.fab-item:hover { transform: scale(1.15); }
.fab-wp { background: #25D366; }
.fab-phone { background: #3498db; }
.fab-map { background: #e74c3c; }

/* 5. VIEW TRANSITIONS */
.view-section { display: none; opacity: 0; padding-top: 80px; }
.view-section.active { display: block; animation: smoothFadeIn 0.6s ease forwards; }
@keyframes smoothFadeIn { 0% { opacity: 0; transform: translateY(20px); } 100% { opacity: 1; transform: translateY(0); } }

/* 6. KAHRAMAN BÖLÜMÜ (YENİ LOGO EFEKTİ VE DEV SAYDAM ARKA PLAN İLE) */
.hero-interactive { position: relative; height: 85vh; background: #000; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: var(--white); overflow: hidden; padding-top: 40px; }

/* İŞTE USTANIN İSTEDİĞİ DEV SAYDAM ARKA PLAN LOGOSU */
.hero-interactive::before {
    content: '';
    position: absolute;
    top: -5%; left: -5%; right: -5%; bottom: -5%;
    background: url('../img/zula.png') center center no-repeat;
    background-size: 80%; /* Logoyu tüm ekrana klas bir şekilde yayar */
    opacity: 0.05; /* Çok hafif, gölge gibi (saydamlık iyice düşürüldü) */
    z-index: 1;
    pointer-events: none;
}

.smoke-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('https://www.transparenttextures.com/patterns/asfalt-dark.png'); opacity: 0.25; z-index: 2; pointer-events: none;}
.hero-content { z-index: 10; position: relative; }

/* VİTRİNDEKİ ORTA LOGO EFEKTİ */
.hero-logo-wrapper { z-index: 10; margin-bottom: 20px; position: relative; }
.center-glow-logo { width: 100%; max-width: 250px; object-fit: contain; filter: drop-shadow(0 0 15px rgba(244, 196, 48, 0.4)); animation: heartbeat 2.5s infinite alternate ease-in-out; }

@keyframes heartbeat {
    0% { transform: scale(1); filter: drop-shadow(0 0 15px rgba(244, 196, 48, 0.4)); }
    100% { transform: scale(1.08); filter: drop-shadow(0 0 35px rgba(230, 126, 34, 0.8)); }
}

.hero-content h1 { font-family: 'Playfair Display', serif; font-size: 3.5rem; line-height: 1.2; margin: 0; color: var(--white); text-shadow: 0 5px 15px rgba(0,0,0,0.8); }
.hero-content h1 span { color: var(--gold); font-weight: 900; }
.hero-content p { font-size: 1.2rem; margin: 15px 0 35px; color: #ccc; letter-spacing: 0.5px; text-shadow: 0 2px 5px rgba(0,0,0,0.8); }

.btn-fire { padding: 16px 45px; background: linear-gradient(135deg, var(--gold) 0%, var(--deep-orange) 100%); color: #000; text-decoration: none; font-weight: 800; border-radius: 50px; border: none; font-size: 1.2rem; cursor: pointer; transition: 0.4s; box-shadow: 0 0 20px rgba(244, 196, 48, 0.4); text-transform: uppercase; letter-spacing: 1px; }
.btn-fire:hover { transform: translateY(-5px) scale(1.05); box-shadow: 0 10px 30px rgba(230, 126, 34, 0.7); }

/* 7. VİDEO BÖLÜMÜ */
.video-section { padding: 60px 5%; background: #0a0a0a; text-align: center; }
.video-wrapper { position: relative; max-width: 500px; margin: 0 auto; border-radius: 15px; overflow: hidden; box-shadow: 0 10px 40px rgba(244, 196, 48, 0.15); border: 2px solid #222; }
#muteBtn { position: absolute; bottom: 15px; right: 15px; background: rgba(0,0,0,0.8); border: 1px solid var(--gold); color: var(--gold); border-radius: 50%; width: 45px; height: 45px; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 18px; transition: 0.3s; }
#muteBtn:hover { background: var(--gold); color: #000; transform: scale(1.1); }

/* 8. MENÜ BÖLÜMÜ */
.menu-container { max-width: 850px; margin: 40px auto 80px; padding: 0 20px; }
.menu-title { text-align: center; color: var(--white); font-family: 'Playfair Display', serif; font-size: 3rem; margin-bottom: 50px; text-shadow: 2px 2px 10px rgba(0,0,0,0.5); }
.category-title { color: var(--gold); border-bottom: 2px solid #333; padding-bottom: 8px; margin: 50px 0 20px 0; font-family: 'Playfair Display', serif; font-size: 1.8rem; }
.menu-grid { display: grid; gap: 15px; }
.menu-item { background: #111; padding: 20px 25px; border-radius: 12px; display: flex; justify-content: space-between; align-items: center; border-left: 5px solid transparent; transition: 0.3s; border: 1px solid #1a1a1a; box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
.menu-item:hover { border-left-color: var(--gold); transform: translateX(8px); background: #151515; border-color: #333; }
.item-price { font-weight: 800; color: var(--gold); font-size: 1.25rem; padding-left: 15px; background: rgba(244, 196, 48, 0.1); padding: 5px 12px; border-radius: 8px; }

/* 9. İLETİŞİM BÖLÜMÜ */
.contact-container { max-width: 800px; margin: 40px auto 80px; padding: 0 20px; text-align: center; }
.contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; margin-top: 40px; }
.c-card { background: #111; padding: 35px 25px; border-radius: 15px; border: 1px solid #222; transition: 0.3s; box-shadow: 0 10px 20px rgba(0,0,0,0.3); }
.c-card:hover { border-color: var(--gold); transform: translateY(-5px); }
.c-card h3 { color: var(--gold); margin-top: 0; font-size: 1.6rem; font-family: 'Playfair Display', serif; }
.c-card p { font-size: 1.1rem; color: #ccc; }
.phone-link { color: var(--white); text-decoration: none; font-size: 1.5rem; font-weight: 800; transition: 0.3s; display: inline-block; padding: 10px 20px; border: 2px dashed var(--gold); border-radius: 10px; margin-top: 10px; }
.phone-link:hover { background: var(--gold); color: #000; }

/* 10. FOOTER & INSTAGRAM ŞOVU */
footer { background: #050505; color: #888; padding: 50px 10%; text-align: center; border-top: 3px solid var(--gold); position: relative; overflow: hidden; }
.footer-inner { position: relative; z-index: 2; }
footer h3 { color: var(--white); font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 25px; }

.insta-btn-new { display: inline-flex; align-items: center; justify-content: center; gap: 12px; background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); color: white; padding: 12px 30px; border-radius: 30px; font-weight: bold; text-decoration: none; font-size: 1.1rem; transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); box-shadow: 0 5px 15px rgba(220, 39, 67, 0.3); }
.insta-btn-new:hover { transform: translateY(-5px) scale(1.05); box-shadow: 0 12px 25px rgba(220, 39, 67, 0.6); color: white; }

/* MOBİL UYUMLULUK */
@media(max-width: 768px) {
    header { padding: 15px; flex-direction: column; gap: 10px; }
    .header-right { flex-direction: column; gap: 15px; width: 100%; }
    .nav-links { gap: 15px; width: 100%; justify-content: center; }
    .hero-content h1 { font-size: 2.5rem; }
    .center-glow-logo { max-width: 180px; }
    .menu-item { flex-direction: column; align-items: flex-start; gap: 10px; }
    .item-price { align-self: flex-start; margin-left: -5px; }
}