:root {
    --primary-color: #f1bc1b;
    --primary-glow: rgba(241, 188, 27, 0.3);
    --dark-bg: #121212;
    --card-bg: #1e1e1e;
    --text-light: #f4f4f4;
    --text-gray: #a0a0a0;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}


::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: var(--primary-color); border-radius: 5px; }

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text-light);
    background-color: var(--dark-bg);
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(241, 188, 27, 0.03) 0%, transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(241, 188, 27, 0.03) 0%, transparent 25%);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}


body.menu-open {
    overflow: hidden;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }


.sub-title {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-style: italic;
    font-size: 1.4rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.main-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}


.header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
    will-change: background, padding;
    background: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent);
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
}

.nav-container { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.logo { 
    font-family: var(--font-heading); 
    font-size: 2.2rem; 
    font-weight: 700; 
    color: #fff; 
    letter-spacing: -1px; 
}
.logo .highlight { color: var(--primary-color); }

.nav-links { 
    display: flex; 
    gap: 35px; 
  
    flex-direction: row; 
    position: static;
}
.nav-links a { 
    font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 500; position: relative; 
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px;
    background: var(--primary-color); transition: 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }

.header-icons { 
    display: flex; 
    align-items: center; 
    gap: 20px; 
}
.btn-book {
    padding: 8px 20px; border: 1px solid var(--primary-color); border-radius: 30px;
    color: var(--primary-color); font-size: 0.8rem; text-transform: uppercase; font-weight: 600;
}
.btn-book:hover { background: var(--primary-color); color: #000; }

.hamburger { display: none; font-size: 1.5rem; cursor: pointer; color: #fff; }


.hero {
    height: 100vh;
  
    background: url('bg.webp') no-repeat center center/cover;
    background-attachment: fixed; 
    position: relative;
    display: flex; align-items: center; justify-content: center;
}
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
}
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 850px; padding: 0 20px; animation: fadeInUp 1s ease-out; }


.section { padding: 100px 0; position: relative; }
.divider {
    width: 80px; height: 3px; background: var(--primary-color); margin: 20px auto;
    position: relative;
}
.divider::before, .divider::after {
    content: ''; position: absolute; top: -4px; width: 10px; height: 10px; 
    background: var(--primary-color); border-radius: 50%; transform: rotate(45deg);
}
.divider::before { left: -15px; } .divider::after { right: -15px; }

.menu-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px;
}

.menu-item {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: visible;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255,255,255,0.05);
    backface-visibility: hidden; 
    transform: translateZ(0);
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5);
    border-color: var(--primary-color);
}

.menu-img-wrapper {
    position: relative; height: 220px; border-radius: 15px 15px 0 0; overflow: hidden;
}
.menu-img-wrapper::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.8));
}
.menu-img-wrapper img { 
    width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; 
}
.menu-item:hover .menu-img-wrapper img { transform: scale(1.1); }

.price-badge {
    position: absolute; top: 20px; right: 20px;
    background: var(--primary-color); color: #000; padding: 8px 15px;
    font-weight: 700; border-radius: 20px; z-index: 2;
    box-shadow: 0 5px 15px rgba(241, 188, 27, 0.4);
}

.menu-details { padding: 25px; text-align: center; }
.menu-title { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 10px; color: #fff; }
.menu-desc { color: var(--text-gray); font-size: 0.9rem; margin-bottom: 20px; line-height: 1.6; }

.btn-order {
    display: inline-block; background: transparent; border: 2px solid var(--primary-color);
    color: var(--primary-color); padding: 10px 25px; border-radius: 30px; font-weight: 600;
    transition: 0.3s;
}
.menu-item:hover .btn-order { background: var(--primary-color); color: #000; }


.chef-section {
    background: url('bg.webp') no-repeat center center/cover;
    background-attachment: fixed;
    position: relative; padding: 120px 0; text-align: center;
}
.chef-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
}
.chef-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.chef-quote { font-size: 1.5rem; font-style: italic; font-family: var(--font-heading); margin: 30px 0; color: #ddd; }


.reservation-box {
    background: var(--card-bg); padding: 50px; border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.form-row { display: flex; gap: 20px; margin-bottom: 20px; }
.form-group { flex: 1; }
.form-control {
    width: 100%; padding: 15px; background: var(--dark-bg); border: 1px solid #333;
    color: #fff; border-radius: 5px; outline: none; font-family: var(--font-body);
}
.form-control:focus { border-color: var(--primary-color); }
.btn-submit {
    width: 100%; background: var(--primary-color); color: #000; border: none;
    padding: 15px; font-weight: 700; text-transform: uppercase; cursor: pointer;
    border-radius: 5px; transition: 0.3s;
}
.btn-submit:hover { background: #fff; }


footer { background: #080808; padding: 80px 0 30px; border-top: 1px solid #222; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; }
.footer-heading { color: #fff; font-family: var(--font-heading); margin-bottom: 20px; font-size: 1.3rem; }
.footer-links li { margin-bottom: 10px; color: #888; }
.footer-links li:hover { color: var(--primary-color); padding-left: 5px; transition: 0.3s; }

.footer-map-container {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #333;
}

.footer-map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(100%) invert(92%) contrast(83%);
    transition: filter 0.3s;
}

.footer-map-container:hover iframe {
    filter: grayscale(0%) invert(0%);
}


.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-current {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 8px 15px;
    font-size: 0.85rem;
    cursor: pointer;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    font-family: var(--font-body);
}

.lang-current:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.lang-menu {
    position: absolute;
    top: 120%;
    right: 0;
    background-color: #1a1a1a;
    min-width: 120px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    z-index: 1001;
    overflow: hidden;
}

.lang-menu a {
    color: #ccc;
    padding: 12px 16px;
    text-decoration: none;
    display: flex;
    align-items: center; /* Bayrak ve metni dikeyde ortalar */
    gap: 10px;
    font-size: 0.9rem;
    transition: 0.2s;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.lang-menu a:last-child { border-bottom: none; }

.lang-menu a:hover {
    background-color: var(--primary-color);
    color: #000;
}

.lang-dropdown:hover .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


.lang-menu a img {
    width: 28px; 
    height: 20px; 
    object-fit: cover; 
    vertical-align: middle; 
    border: 1px solid rgba(255, 255, 255, 0.2); 
    border-radius: 3px;
    margin-right: 0; 
    flex-shrink: 0; 
}



@media (max-width: 768px) {
    body.menu-open {
        overflow: hidden; 
    }
    .main-title { font-size: 2.5rem; }
    .form-row { flex-direction: column; }
    .header { padding: 15px 0; }
    
 
    .hero {
        background-attachment: scroll; 
    }
    
    .nav-links { display: none; } 
    .nav-links.active { 
        display: flex; 
        position: fixed; 
        top: 0; 
        right: 0; 
        width: 100%; 
        max-width: 300px;
        height: 100vh;
        background: #111; 
        flex-direction: column; 
        justify-content: center; 
        align-items: flex-start;
        gap: 30px;
        transition: 0.4s; 
        box-shadow: -10px 0 30px rgba(0,0,0,0.8);
        z-index: 900; 
        padding-left: 40px; 
    }
    
    .nav-links a {
        font-size: 1.2rem;
    }
    .nav-links a::after {
        display: none;
    }
    
    .btn-book { display: none; }
    .hamburger { display: block; }

  
    .header-icons {
        gap: 15px; 
        align-items: center;
    }

  
    .lang-dropdown {
        position: static; 
    }
}


@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}