/*
Theme Name: Turfan Lezzet Sofrasi Custom
Theme URI: https://turfanlezzetsofrasi.com/
Description: BlankSlate tabanli, tamamen ozel kodlanmis, ultra hizli restoran temasi.
Author: Antigravity AI
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: turfan-custom
*/

/* 
================================================================
   🎨 TURFAN OZEL TASARIM SISTEMI (1_Global_Stiller.css)
================================================================
*/

:root {
    --color-bg: #FAFAF7;
    --color-bg-alt: #F2EDE6;
    --color-dark: #1A1410;
    --color-dark-soft: #2C2520;
    --color-text: #3D3530;
    --color-text-light: #7A706A;
    --color-accent: #007b7b;
    --color-accent-dark: #006666;
    --color-accent-light: #E8D5C0;
    --color-gold: #B89A5A;
    --color-gold-light: #D4C49A;
    --color-white: #FFFFFF;
    --color-border: #E0D8D0;

    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Noto Sans', 'Segoe UI', Tahoma, sans-serif;

    --section-padding: 100px 0;
    --container-width: 1200px;
    --radius: 6px;
    --shadow: 0 4px 24px rgba(26, 20, 16, 0.08);
    --shadow-lg: 0 12px 48px rgba(26, 20, 16, 0.12);
    --transition: 0.3s ease;
}

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { 
    font-family: var(--font-body); 
    color: var(--color-text); 
    background: var(--color-bg); 
    line-height: 1.7; 
    -webkit-font-smoothing: antialiased; 
    overflow-x: hidden; 
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 600; line-height: 1.25; }
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 24px; }

/* ANIMATIONS */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
.fade-up.animate-in { opacity: 1; transform: translateY(0); }
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }

/* UTILITY */
.section-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--color-accent); margin-bottom: 12px; display: block; }
.section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--color-dark); margin-bottom: 16px; }
.section-desc { color: var(--color-text-light); font-size: 1rem; max-width: 560px; line-height: 1.8; }
.btn { display: inline-block; padding: 14px 36px; font-weight: 600; border-radius: var(--radius); cursor: pointer; transition: all var(--transition); border: none; }
.btn-primary { background: var(--color-accent); color: var(--color-white); }
.btn-primary:hover { background: var(--color-accent-dark); }
.btn-outline { background: transparent; color: var(--color-white); border: 2px solid rgba(255, 255, 255, 0.6); }
.btn-outline:hover { border-color: var(--color-white); background: rgba(255, 255, 255, 0.1); }

/* ========== HEADER / NAV ========== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: background-color var(--transition), box-shadow var(--transition);
            background-color: transparent;
        }

        .site-header.scrolled {
            background-color: rgba(13, 33, 32, 0.95) !important;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3) !important;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 0;
            transition: padding var(--transition);
        }

        .scrolled .header-inner {
            padding: 12px 0;
        }

        .logo {
            display: inline-flex;
            align-items: center;
        }

        .logo img,
        .logo svg {
            height: 48px;
            /* ✏️ DÜZENLE: Logo yüksekliği — ihtiyaca göre değiştir (px) */
            width: auto;
            display: block;
            transition: opacity var(--transition);
        }

        .logo:hover img,
        .logo:hover svg {
            opacity: 0.85;
        }

        .scrolled .logo img,
        .scrolled .logo svg {
            height: 38px;
            /* Scroll sonrası küçülen logo yüksekliği */
        }

        .main-nav {
            display: flex;
            align-items: center;
            gap: 36px;
        }

        .main-nav a {
            font-family: var(--font-body);
            font-size: 0.88rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.85);
            letter-spacing: 0.3px;
            position: relative;
            padding: 4px 0;
        }

        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--color-accent);
            transition: width var(--transition);
        }

        .main-nav a:hover {
            color: var(--color-white);
        }

        .main-nav a:hover::after {
            width: 100%;
        }

        .nav-social {
            display: flex;
            gap: 16px;
            align-items: center;
        }

        .nav-social a {
            color: rgba(255, 255, 255, 0.7);
            display: flex;
            align-items: center;
        }

        .nav-social a:hover {
            color: var(--color-white);
        }

        .nav-social svg {
            width: 18px;
            height: 18px;
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            flex-direction: column;
            gap: 5px;
        }

        .menu-toggle span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--color-white);
            transition: all var(--transition);
        }

        /* ========== HERO ========== */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: linear-gradient(135deg, #183e3c 0%, #0d2120 100%);
        }

        .hero-side-img {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 600px;
            height: 600px;
            object-fit: contain;
            pointer-events: none;
            z-index: 0;
            opacity: 0.95;
        }

        .hero-side-img--left {
            left: -150px;
        }

        .hero-side-img--right {
            right: -150px;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            padding: 120px 24px 80px;
        }

        .hero-label {
            font-family: var(--font-body);
            font-size: 0.8rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--color-gold);
            margin-bottom: 24px;
            font-weight: 500;
        }

        .hero-title {
            font-family: var(--font-display);
            font-size: clamp(2.4rem, 6vw, 4.2rem);
            color: var(--color-white);
            font-weight: 700;
            line-height: 1.15;
            margin-bottom: 20px;
        }

        .hero-title em {
            font-style: italic;
            color: var(--color-gold-light);
        }

        .hero-subtitle {
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 520px;
            margin: 0 auto 40px;
            line-height: 1.8;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .hero-deco {
            position: absolute;
            border: 1px solid rgba(184, 154, 90, 0.15);
            border-radius: 50%;
            pointer-events: none;
            z-index: 1;
        }

        .hero-deco--1 {
            width: 120px;
            height: 120px;
            top: 15%;
            left: 5%;
        }

        .hero-deco--2 {
            width: 80px;
            height: 80px;
            bottom: 20%;
            right: 8%;
        }

        /* ========== ABOUT ========== */
        .about {
            padding: var(--section-padding);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-text p {
            color: var(--color-text-light);
            margin-bottom: 16px;
            line-height: 1.9;
        }

        .about-images {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .about-img-wrap {
            border-radius: var(--radius);
            overflow: hidden;
            aspect-ratio: 4/3;
            background: var(--color-bg-alt);
            position: relative;
        }

        .about-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .about-img-wrap:first-child {
            grid-row: span 2;
            aspect-ratio: 3/4;
        }

        /* ========== CUISINE STRIP ========== */
        .cuisine-strip {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
        }

        .cuisine-card {
            position: relative;
            min-height: 280px;
            display: flex;
            align-items: flex-end;
            padding: 32px;
            overflow: hidden;
        }

        .cuisine-card img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }

        .cuisine-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(26, 20, 16, 0.85), rgba(26, 20, 16, 0.2));
            z-index: 1;
        }

        .cuisine-card-content {
            position: relative;
            z-index: 2;
        }

        .cuisine-card h3 {
            color: var(--color-white);
            font-size: 1.4rem;
            margin-bottom: 8px;
        }

        .cuisine-card p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.88rem;
            line-height: 1.6;
        }

        /* ========== FEATURED MENU ========== */
        .featured-menu {
            padding: var(--section-padding);
            text-align: center;
        }

        .featured-menu .section-desc {
            margin: 0 auto 50px;
        }

        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 24px;
            text-align: left;
        }

        .menu-item {
            display: flex;
            gap: 20px;
            padding: 24px;
            background: var(--color-white);
            border-radius: var(--radius);
            border: 1px solid var(--color-border);
            transition: box-shadow var(--transition);
        }

        .menu-item:hover {
            box-shadow: var(--shadow);
        }

        .menu-item-img {
            flex-shrink: 0;
            width: 90px;
            height: 90px;
            border-radius: var(--radius);
            background: var(--color-bg-alt);
            overflow: hidden;
        }

        .menu-item-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .menu-item-info {
            flex: 1;
        }

        .menu-item-header {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            margin-bottom: 6px;
        }

        .menu-item-name {
            font-family: var(--font-display);
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--color-dark);
        }

        .menu-item-price {
            font-family: var(--font-display);
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--color-accent);
            white-space: nowrap;
        }

        .menu-item-desc {
            font-size: 0.85rem;
            color: var(--color-text-light);
            line-height: 1.6;
        }

        /* ========== SPECIAL OCCASION / RESERVATION ========== */
        .special-occasion {
            position: relative;
            padding: var(--section-padding);
            background: var(--color-dark);
            overflow: hidden;
        }

        .special-occasion::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse at 30% 50%, rgba(196, 52, 45, 0.06) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 20%, rgba(184, 154, 90, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .occasion-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
        }

        .occasion-content .section-label {
            color: var(--color-gold);
        }

        .occasion-content .section-title {
            color: var(--color-white);
        }

        .occasion-content p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .occasion-info-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            margin-bottom: 18px;
        }

        .occasion-icon {
            flex-shrink: 0;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(196, 52, 45, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-accent);
        }

        .occasion-icon svg {
            width: 18px;
            height: 18px;
        }

        .occasion-info-text h4 {
            font-family: var(--font-body);
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--color-white);
            margin-bottom: 2px;
        }

        .occasion-info-text span {
            font-size: 0.88rem;
            color: rgba(255, 255, 255, 0.6);
        }

        .occasion-info-text a {
            color: rgba(255, 255, 255, 0.6);
        }

        .occasion-info-text a:hover {
            color: var(--color-white);
        }

        /* Reservation Form */
        .reservation-form-wrap {
            background: var(--color-white);
            border-radius: var(--radius);
            padding: 40px;
            box-shadow: var(--shadow-lg);
        }

        .reservation-form-wrap h3 {
            font-size: 1.5rem;
            color: var(--color-dark);
            margin-bottom: 24px;
            text-align: center;
        }

        .form-group {
            margin-bottom: 18px;
        }

        .form-group label {
            display: block;
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--color-text);
            margin-bottom: 6px;
            letter-spacing: 0.3px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid var(--color-border);
            border-radius: var(--radius);
            font-family: var(--font-body);
            font-size: 0.9rem;
            color: var(--color-text);
            background: var(--color-bg);
            transition: border-color var(--transition);
            outline: none;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--color-accent);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .reservation-form-wrap .btn {
            width: 100%;
            text-align: center;
            margin-top: 8px;
        }

        /* ========== OUR STORY / FEATURES ========== */
        .our-story {
            padding: var(--section-padding);
            background: var(--color-bg-alt);
        }

        .story-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .story-img-wrap {
            aspect-ratio: 4/3;
            border-radius: var(--radius);
            overflow: hidden;
            background: var(--color-bg-alt);
        }

        .story-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .story-features {
            margin-top: 32px;
        }

        .story-feature {
            display: flex;
            gap: 16px;
            margin-bottom: 24px;
        }

        .story-feature-icon {
            flex-shrink: 0;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(196, 52, 45, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-accent);
        }

        .story-feature-icon svg {
            width: 22px;
            height: 22px;
        }

        .story-feature h4 {
            font-family: var(--font-body);
            font-weight: 600;
            color: var(--color-dark);
            margin-bottom: 4px;
        }

        .story-feature p {
            font-size: 0.88rem;
            color: var(--color-text-light);
            line-height: 1.7;
        }

        /* ========== TESTIMONIALS ========== */
        .testimonials {
            padding: var(--section-padding);
            text-align: center;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 40px;
        }

        .testimonial-card {
            background: var(--color-white);
            border-radius: var(--radius);
            padding: 32px;
            border: 1px solid var(--color-border);
            text-align: left;
            box-shadow: 0 4px 16px rgba(26, 20, 16, 0.04);
            transition: transform var(--transition);
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
        }

        .testimonial-stars {
            color: #FFB400;
            /* Google review star color */
            margin-bottom: 16px;
            font-size: 1.15rem;
            letter-spacing: 2px;
        }

        .testimonial-text {
            font-size: 0.95rem;
            color: var(--color-text-light);
            line-height: 1.7;
            margin-bottom: 24px;
            font-style: italic;
        }

        .testimonial-author {
            font-family: var(--font-body);
            font-weight: 600;
            color: var(--color-dark);
            font-size: 0.95rem;
        }

        .testimonial-role {
            font-size: 0.8rem;
            color: var(--color-text-light);
        }

        /* ========== KITCHEN SECRETS SECTION ========== */
        .secrets {
            padding: var(--section-padding);
            background: var(--color-bg-alt);
            text-align: center;
        }

        .secrets .section-desc {
            margin: 0 auto 50px;
            max-width: 600px;
        }

        .secrets-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .secret-card {
            background: var(--color-white);
            border-radius: var(--radius);
            overflow: hidden;
            border: 1px solid var(--color-border);
            transition: box-shadow var(--transition);
        }

        .secret-card:hover {
            box-shadow: var(--shadow);
        }

        .secret-img {
            aspect-ratio: 4/3;
            background: var(--color-bg-alt);
            overflow: hidden;
        }

        .secret-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .secret-info {
            padding: 32px 24px;
        }

        .secret-title {
            font-family: var(--font-display);
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--color-dark);
            margin-bottom: 12px;
        }

        .secret-desc {
            font-size: 0.95rem;
            color: var(--color-text-light);
            line-height: 1.6;
        }

        /* ========== OPENING HOURS ========== */
        .opening-hours {
            padding: var(--section-padding);
        }

        .hours-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hours-table {
            width: 100%;
            margin-top: 32px;
        }

        .hours-row {
            display: flex;
            justify-content: space-between;
            padding: 14px 0;
            border-bottom: 1px solid var(--color-border);
            font-size: 0.95rem;
        }

        .hours-day {
            font-weight: 500;
            color: var(--color-dark);
        }

        .hours-time {
            color: var(--color-text-light);
        }

        .hours-img-wrap {
            aspect-ratio: 4/3;
            border-radius: var(--radius);
            overflow: hidden;
            background: var(--color-bg-alt);
        }

        .hours-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* ========== CTA BANNER ========== */
        .cta-banner {
            position: relative;
            padding: 80px 0;
            text-align: center;
            overflow: hidden;
        }

        .cta-banner-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .cta-banner-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .cta-banner-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(26, 20, 16, 0.473) 0%, rgba(44, 37, 32, 0.185) 100%);
        }

        .cta-banner .container {
            position: relative;
            z-index: 1;
        }

        .cta-banner h2 {
            font-size: clamp(1.6rem, 4vw, 2.6rem);
            color: var(--color-white);
            margin-bottom: 12px;
        }

        .cta-banner h2 em {
            font-style: italic;
            color: var(--color-gold-light);
        }

        .cta-banner p {
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 32px;
        }

        /* ========== CONTACT + BOOKING ========== */
        .contact-booking {
            padding: var(--section-padding);
            background: var(--color-bg-alt);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .contact-card,
        .booking-card {
            background: var(--color-white);
            padding: 40px;
            border-radius: var(--radius);
            border: 1px solid var(--color-border);
        }

        .contact-card h3,
        .booking-card h3 {
            font-size: 1.5rem;
            color: var(--color-dark);
            margin-bottom: 24px;
        }

        .contact-item {
            display: flex;
            gap: 14px;
            margin-bottom: 20px;
        }

        .contact-item-icon {
            flex-shrink: 0;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(196, 52, 45, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-accent);
        }

        .contact-item-icon svg {
            width: 18px;
            height: 18px;
        }

        .contact-item h4 {
            font-family: var(--font-body);
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--color-dark);
            margin-bottom: 2px;
        }

        .contact-item p,
        .contact-item a {
            font-size: 0.88rem;
            color: var(--color-text-light);
            line-height: 1.6;
        }

        .contact-item a:hover {
            color: var(--color-accent);
        }

        .contact-socials {
            display: flex;
            gap: 12px;
            margin-top: 28px;
        }

        .contact-socials a {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--color-bg-alt);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-text);
            transition: all var(--transition);
        }

        .contact-socials a:hover {
            background: var(--color-accent);
            color: var(--color-white);
        }

        .contact-socials svg {
            width: 18px;
            height: 18px;
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: var(--color-dark);
            padding: 60px 0 0;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 48px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-brand .logo {
            margin-bottom: 16px;
            display: inline-block;
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.88rem;
            line-height: 1.7;
            max-width: 300px;
        }

        .footer-col h4 {
            font-family: var(--font-body);
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--color-white);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 20px;
        }

        .footer-col a {
            display: block;
            font-size: 0.88rem;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 12px;
        }

        .footer-col a:hover {
            color: var(--color-white);
        }

        .footer-contact-item {
            display: flex;
            gap: 10px;
            margin-bottom: 14px;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.85rem;
            align-items: flex-start;
        }

        .footer-contact-item svg {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
            margin-top: 3px;
            color: var(--color-accent);
        }

        .footer-contact-item a {
            margin: 0;
        }

        .footer-bottom {
            padding: 24px 0;
            text-align: center;
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.35);
        }

        /* ========== BACK TO TOP ========== */
        .back-to-top {
            position: fixed;
            bottom: 32px;
            right: 32px;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--color-accent);
            color: var(--color-white);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all var(--transition);
            cursor: pointer;
            border: none;
            box-shadow: 0 4px 16px rgba(196, 52, 45, 0.3);
            z-index: 999;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: var(--color-accent-dark);
            transform: translateY(-3px);
        }

        .back-to-top svg {
            width: 20px;
            height: 20px;
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 992px) {
            :root {
                --section-padding: 70px 0;
            }

            .about-grid,
            .occasion-grid,
            .story-grid,
            .hours-grid,
            .testimonial-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .cuisine-strip {
                grid-template-columns: 1fr;
            }

            .cuisine-card {
                min-height: 200px;
            }

            .secrets-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }

            .footer-top {
                grid-template-columns: 1fr 1fr;
            }

            .menu-grid {
                grid-template-columns: 1fr;
            }

            .hero-side-img {
                display: none;
            }
        }

        @media (max-width: 768px) {
            :root {
                --section-padding: 56px 0;
            }

            .main-nav {
                display: none;
            }

            .nav-social {
                display: none;
            }

            .menu-toggle {
                display: flex;
            }

            .main-nav.open {
                display: flex;
                flex-direction: column;
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: rgba(26, 20, 16, 0.97);
                justify-content: center;
                align-items: center;
                gap: 28px;
                z-index: 999;
                backdrop-filter: blur(10px);
                -webkit-backdrop-filter: blur(10px);
            }

            .main-nav.open a {
                font-size: 1.3rem;
            }

            .menu-close {
                display: none;
            }

            .main-nav.open .menu-close {
                display: block;
                position: absolute;
                top: 24px;
                right: 24px;
                background: none;
                border: none;
                color: var(--color-white);
                padding: 12px;
                cursor: pointer;
            }

            .main-nav.open .menu-close svg {
                width: 32px;
                height: 32px;
            }

            .hero-content {
                padding: 100px 20px 60px;
            }

            .about-images {
                grid-template-columns: 1fr 1fr;
            }

            .about-img-wrap:first-child {
                grid-column: span 2;
                grid-row: span 1;
                aspect-ratio: 3/4;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .reservation-form-wrap {
                padding: 28px;
            }

            .secrets-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto;
            }

            .footer-top {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-brand p {
                max-width: 100%;
            }

            .footer-contact-item {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                padding: 12px 28px;
                font-size: 0.85rem;
            }

            .menu-item {
                flex-direction: column;
            }

            .menu-item-img {
                width: 100%;
                height: 160px;
            }

            .contact-card,
            .booking-card {
                padding: 28px;
            }
        }


/*
================================================================
   MENU SAYFASI OZEL STILLERI
================================================================
*/

/* CSS degiskenleri ve font override */
.page-header-menu,
.cat-nav,
.menu-page-wrapper {
    --menu-bg: #faf8f5;
    --menu-surface: #ffffff;
    --menu-text: #1a1a1a;
    --menu-text-muted: #6b6b6b;
    --menu-accent: #b8602a;
    --menu-border: #e8e4df;
    --menu-radius: 10px;
    font-family: 'DM Sans', 'Noto Sans', sans-serif;
    line-height: 1.5;
}

/* ── Header ── */
.page-header-menu {
    text-align: center;
    padding: 60px 20px 20px;
    background: var(--menu-bg);
}
.page-header-menu h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--menu-text);
    line-height: 1.2;
}
.page-header-menu p {
    color: var(--menu-text-muted);
    margin-top: 8px;
    font-size: 1rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
}

/* ── Sticky kategori nav ── */
.cat-nav {
    position: sticky;
    top: 70px;
    z-index: 100;
    background: var(--menu-bg);
    border-bottom: 1px solid var(--menu-border);
    padding: 12px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.cat-nav::-webkit-scrollbar { display: none; }
.cat-nav .inner {
    display: flex;
    gap: 8px;
    padding: 0 20px;
    max-width: 1140px;
    margin: 0 auto;
}

/* Nav pill - global nav ile catismasin diye tam override */
a.nav-pill {
    white-space: nowrap;
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    color: var(--menu-text-muted);
    text-decoration: none;
    border: 1px solid var(--menu-border);
    background: var(--menu-surface);
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    flex-shrink: 0;
    display: inline-block;
    line-height: 1.5;
}
a.nav-pill:hover,
a.nav-pill.active {
    background: var(--menu-accent);
    color: #fff;
    border-color: var(--menu-accent);
}

/* ── Menu icerik alani ── */
.menu-page-wrapper {
    background: var(--menu-bg);
    padding-bottom: 60px;
}
.menu-page-wrapper .container {
    max-width: 1140px;
}

/* ── Kategori bolumu ── */
.cat-section {
    padding: 48px 0 8px;
    scroll-margin-top: 130px;
}
.cat-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.55rem;
    font-weight: 600;
    margin-bottom: 22px;
    padding-bottom: 11px;
    border-bottom: 2px solid var(--menu-accent);
    display: inline-block;
    color: var(--menu-text);
    line-height: 1.25;
}

/* ── Grid ── */
.menu-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
    margin-bottom: 16px;
}

/* ── Kart ── */
.menu-card-new {
    display: flex;
    gap: 14px;
    padding: 13px;
    background: var(--menu-surface);
    border: 1px solid var(--menu-border);
    border-radius: var(--menu-radius);
    text-decoration: none;
    color: var(--menu-text);
    transition: box-shadow 0.22s, transform 0.22s;
    align-items: flex-start;
}
.menu-card-new:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
    color: var(--menu-text);
}

.card-img-new {
    width: 88px;
    height: 88px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #ede9e4;
}
.card-img-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-body-new {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.card-header-new {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 8px;
}

/* Playfair'den override ediyoruz - kart isimleri sans-serif olmali */
.item-name-new {
    font-family: 'DM Sans', 'Noto Sans', sans-serif;
    font-size: 0.93rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--menu-text);
}

.item-price-new {
    font-family: 'DM Sans', 'Noto Sans', sans-serif;
    font-size: 0.93rem;
    font-weight: 600;
    color: var(--menu-accent);
    white-space: nowrap;
    flex-shrink: 0;
}

.item-desc-new {
    font-family: 'DM Sans', 'Noto Sans', sans-serif;
    font-size: 0.78rem;
    color: var(--menu-text-muted);
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Lightbox Modal (Yeni) ── */
.menu-img-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-img-modal.show {
    display: flex;
    opacity: 1;
}

.menu-img-modal-content {
    max-width: 90%;
    max-height: 85%;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: #000;
}

.menu-img-modal.show .menu-img-modal-content {
    transform: scale(1);
}

.menu-img-modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    user-select: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.menu-img-modal-close:hover {
    background: var(--menu-accent);
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .menu-img-modal-close {
        top: 15px;
        right: 15px;
    }
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .menu-grid-new {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 12px;
    }
}

@media (max-width: 600px) {
    .menu-grid-new {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .card-img-new {
        width: 76px;
        height: 76px;
    }
    .page-header-menu {
        padding: 36px 16px 10px;
    }
    .cat-section {
        padding: 32px 0 4px;
    }
    .cat-nav {
        top: 60px;
    }
}
