/* ================= VARIABLES ================= */
:root {
    /* Renk Paleti (Koyu Tema + Altın) */
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --bg-card-hover: #1c1c1c;
    --gold: #d4af37;
    --gold-hover: #b5952f;
    --text-light: #f5f5f5;
    --text-muted: #a3a3a3;
    --border-color: rgba(212, 175, 55, 0.15);
    
    /* Tipografi */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Tasarım Değişkenleri */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 12px;
}

/* ================= RESET & BASE ================= */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}
ul { list-style: none; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 500; line-height: 1.2; }

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 100px 0; }
.text-center { text-align: center; }

/* Typography Utilities */
.section-subtitle {
    display: inline-block;
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
}
.section-title {
    font-size: 3rem;
    margin-bottom: 25px;
    color: var(--text-light);
}
.section-header { margin-bottom: 60px; }

/* ================= BUTTONS ================= */
.btn {
    display: inline-block;
    padding: 15px 35px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}
.btn-gold {
    background-color: var(--gold);
    color: var(--bg-dark);
    border: 1px solid var(--gold);
}
.btn-gold:hover {
    background-color: var(--gold-hover);
    border-color: var(--gold-hover);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
    transform: translateY(-3px);
}
.btn-outline {
    background-color: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}
.btn-outline:hover {
    background-color: var(--gold);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

/* ================= NAVBAR ================= */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    padding: 25px 0;
    z-index: 1000;
    transition: var(--transition);
}
.navbar.scrolled {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-container {
    display: flex; justify-content: space-between; align-items: center;
}
.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-light);
}
.logo span { color: var(--gold); }

.nav-links { display: flex; gap: 35px; }
.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}
.nav-links a::after {
    content: ''; position: absolute;
    bottom: -5px; left: 0;
    width: 0; height: 1px;
    background-color: var(--gold);
    transition: var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }

.hamburger { display: none; font-size: 2rem; cursor: pointer; color: var(--gold); }

/* ================= HERO ================= */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    background: url('https://images.unsplash.com/photo-1514933651103-005eec06c04b?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.9) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 800px; padding: 0 20px; }
.hero-subtitle {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 15px;
}
.hero-title {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 5px;
}
.hero-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.hero-btns { display: flex; gap: 20px; justify-content: center; }

/* ================= ABOUT ================= */
.about-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image { position: relative; }
.about-image img { border-radius: var(--radius); }
.about-image::after {
    content: ''; position: absolute;
    top: 20px; right: -20px; bottom: -20px; left: 20px;
    border: 2px solid var(--gold);
    border-radius: var(--radius);
    z-index: -1;
}
.about-text p { color: var(--text-muted); margin-bottom: 20px; }
.about-stats {
    display: flex; gap: 30px; margin-top: 40px;
    padding-top: 30px; border-top: 1px solid var(--border-color);
}
.stat-item h3 { font-size: 2.5rem; color: var(--gold); margin-bottom: 5px; }
.stat-item p { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }

/* ================= MENU (THE MOST IMPORTANT PART) ================= */
.menu-section { background-color: var(--bg-card); }

.menu-tabs {
    display: flex; justify-content: center; gap: 20px; margin-bottom: 50px;
    flex-wrap: wrap;
}
.tab-btn {
    background: transparent;
    border: none;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    padding: 10px 20px;
    position: relative;
    transition: var(--transition);
}
.tab-btn::after {
    content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 0; height: 2px; background-color: var(--gold); transition: var(--transition);
}
.tab-btn:hover, .tab-btn.active { color: var(--gold); }
.tab-btn:hover::after, .tab-btn.active::after { width: 100%; }

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
.menu-item {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 20px;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.02);
    border: 1px solid transparent;
    transition: var(--transition);
    animation: fadeIn 0.5s ease forwards;
}
.menu-item:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-color);
    transform: translateX(10px);
}
.menu-item img {
    width: 100px; height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}
.menu-item-info { flex: 1; }
.menu-item-header {
    display: flex; justify-content: space-between; align-items: baseline;
    margin-bottom: 10px;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
    padding-bottom: 5px;
}
.menu-item-title { font-size: 1.2rem; font-family: var(--font-heading); }
.menu-item-price { font-size: 1.2rem; color: var(--gold); font-family: var(--font-heading); }
.menu-item-desc { color: var(--text-muted); font-size: 0.9rem; font-style: italic; }

/* ================= WHY US ================= */
.features-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
}
.feature-card {
    text-align: center; padding: 40px 20px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    border-color: var(--gold);
}
.feature-icon {
    font-size: 3rem; color: var(--gold); margin-bottom: 20px;
}
.feature-card h3 { font-size: 1.3rem; margin-bottom: 15px; }
.feature-card p { color: var(--text-muted); font-size: 0.9rem; }

/* ================= GALLERY ================= */
.gallery-section { background-color: var(--bg-card); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 15px;
}
.gallery-item {
    position: relative; overflow: hidden; border-radius: 8px; cursor: pointer;
}
.gallery-item.large { grid-column: span 2; grid-row: span 2; }
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease;
}
.gallery-overlay {
    position: absolute; inset: 0;
    background: rgba(10,10,10,0.6);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: var(--transition);
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 2rem; color: var(--gold); }

/* ================= TESTIMONIALS ================= */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.testimonial-card {
    background: var(--bg-card); padding: 40px; border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.05); position: relative;
}
.quote-icon {
    position: absolute; top: 20px; right: 20px; font-size: 4rem;
    color: rgba(212, 175, 55, 0.1); font-family: var(--font-heading);
    line-height: 1;
}
.stars { color: var(--gold); margin-bottom: 20px; font-size: 1.2rem; }
.testimonial-text { font-style: italic; color: var(--text-muted); margin-bottom: 30px; }
.client-info h4 { font-size: 1.1rem; color: var(--text-light); }
.client-info span { font-size: 0.85rem; color: var(--gold); text-transform: uppercase; }

/* ================= RESERVATION ================= */
.reservation-section {
    background: linear-gradient(rgba(10,10,10,0.9), rgba(10,10,10,0.9)), url('https://images.unsplash.com/photo-1550966871-3ed3cdb5ed0c?q=80&w=1920&auto=format&fit=crop') center/cover fixed;
}
.reservation-form-container {
    max-width: 800px; margin: 0 auto;
    background: rgba(20, 20, 20, 0.85);
    backdrop-filter: blur(15px);
    padding: 50px; border-radius: var(--radius);
    border: 1px solid var(--border-color);
}
.res-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; margin-bottom: 25px; }
.form-group label { display: block; margin-bottom: 8px; font-size: 0.9rem; color: var(--text-muted); }
.form-control {
    width: 100%; padding: 15px;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-light);
    border-radius: 4px; font-family: var(--font-body);
    transition: var(--transition);
}
.form-control:focus { outline: none; border-color: var(--gold); }
/* Takvim ikonu rengi için */
::-webkit-calendar-picker-indicator { filter: invert(1); opacity: 0.6; cursor: pointer;}

/* ================= CONTACT & FOOTER ================= */
.footer { background: #050505; padding-top: 80px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; margin-bottom: 60px; }
.footer-brand p { color: var(--text-muted); margin: 20px 0; max-width: 80%; }
.social-links { display: flex; gap: 15px; }
.social-links a {
    width: 45px; height: 45px; background: var(--bg-card);
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; color: var(--text-light); border: 1px solid transparent;
}
.social-links a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.footer-links h4 { font-size: 1.2rem; margin-bottom: 25px; color: var(--gold); }
.footer-links ul { display: flex; flex-direction: column; gap: 15px; }
.footer-links a { color: var(--text-muted); }
.footer-links a:hover { color: var(--gold); padding-left: 5px; }
.contact-info-list li { display: flex; align-items: center; gap: 15px; color: var(--text-muted); margin-bottom: 15px; }
.contact-info-list i { color: var(--gold); font-size: 1.2rem; }
.footer-bottom {
    text-align: center; padding: 25px 0; border-top: 1px solid rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.3); font-size: 0.9rem;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed; bottom: 30px; right: 30px;
    background: #25D366; color: white;
    width: 60px; height: 60px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 1000; transition: var(--transition);
}
.floating-whatsapp:hover { transform: scale(1.1); background: #1ebe57; }

/* ================= ANIMATIONS ================= */
.reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.active { opacity: 1; transform: translateY(0); }
@keyframes fadeIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .hero-title { font-size: 4rem; }
    .menu-grid, .features-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid, .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item.large { grid-column: span 1; grid-row: span 1; }
}
@media (max-width: 768px) {
    .hamburger { display: block; z-index: 1001; position: relative; }
    .nav-btn { display: none; }
    
    .nav-links {
        position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column; justify-content: center; align-items: center;
        gap: 40px; transform: translateY(-100%); opacity: 0;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }
    
    .nav-links.nav-active {
        transform: translateY(0); opacity: 1;
    }
    
    .nav-links a { font-size: 1.5rem; letter-spacing: 3px; }
    
    .hero-title { font-size: 3rem; }
    .about-container { grid-template-columns: 1fr; }
    .about-image::after { display: none; }
    .menu-grid, .features-grid, .gallery-grid, .testimonials-grid, .footer-grid, .res-grid { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; }
    .reservation-form-container { padding: 30px 20px; }
    .section-title { font-size: 2.2rem; }
    
    /* Mobil için kaydırılabilir (swipeable) menü kategorileri */
    .menu-tabs {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch; /* iOS'ta akıcı kaydırma (momentum scrolling) */
        padding-bottom: 10px; /* Alt kısımdan kırpılmayı önler */
        scrollbar-width: none; /* Firefox için scrollbar gizleme */
    }
    .menu-tabs::-webkit-scrollbar { display: none; } /* Chrome/Safari/Edge için scrollbar gizleme */
    .tab-btn { white-space: nowrap; flex-shrink: 0; }
}
