@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    --color-bg-dark: #0a0a0a;
    --color-bg-deep: #111111;
    --color-bg-card: #1a1a1a;
    --color-bg-card-hover: #222222;
    --color-gold: #c9a96e;
    --color-gold-light: #e0c990;
    --color-gold-dark: #a68b4b;
    --color-burgundy: #6b1d2a;
    --color-burgundy-deep: #4a0e1a;
    --color-text-primary: #f5f0e8;
    --color-text-secondary: #b0a898;
    --color-text-muted: #706860;
    --color-border: rgba(201, 169, 110, 0.15);
    --color-border-hover: rgba(201, 169, 110, 0.35);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', 'Inter', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-dark);
    color: var(--color-text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 0.02em;
    font-variant-numeric: lining-nums;
}

::selection {
    background: var(--color-gold);
    color: var(--color-bg-dark);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--color-gold-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: var(--transition-smooth);
    background: transparent;
}

.navbar.nav-s1-hidden {
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.navbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text-primary);
    letter-spacing: 0.15em;
    line-height: 1;
}

.logo-text .accent {
    color: var(--color-gold);
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.6rem;
    letter-spacing: 0.5em;
    color: var(--color-gold);
    text-transform: uppercase;
    margin-top: 2px;
    text-align: right;
    width: 100%;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    transition: var(--transition-smooth);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-reserve-btn {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.7rem 1.8rem;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    background: transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.nav-reserve-btn:hover {
    background: var(--color-gold);
    color: var(--color-bg-dark);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--color-gold);
    transition: var(--transition-smooth);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(30px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 999;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu a {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--color-text-primary);
    letter-spacing: 0.08em;
    transition: var(--transition-smooth);
}

.mobile-menu a:hover {
    color: var(--color-gold);
}

/* ═══════════════════════════════════════
   HERO SENARYO 0 — Klasik ortalı tasarım
   ═══════════════════════════════════════ */
.hero-s0 {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-s0-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-s0-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.hero-s0:hover .hero-s0-bg img {
    transform: scale(1.0);
}

.hero-s0-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(10, 10, 10, 0.5) 0%,
            rgba(10, 10, 10, 0.3) 30%,
            rgba(10, 10, 10, 0.6) 70%,
            rgba(10, 10, 10, 0.95) 100%);
    z-index: 1;
}

.hero-s0-vignette {
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 200px rgba(0, 0, 0, 0.6);
    z-index: 2;
    pointer-events: none;
}

.hero-s0-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-s0-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 700;
    color: var(--color-text-primary);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease 0.2s both;
}

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

.hero-s0-subtitle {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--color-text-primary);
    line-height: 1.8;
    max-width: 550px;
    margin: 0 auto 2.5rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8), 0 2px 5px rgba(0, 0, 0, 0.9);
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-s0-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--color-gold);
    color: var(--color-bg-dark);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 169, 110, 0.3);
}

.btn-outline {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    background: transparent;
    transition: var(--transition-smooth);
}

.btn-outline:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    transform: translateY(-2px);
}

.hero-s0-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: fadeInUp 1s ease 1s both;
}

.scroll-arrow {
    color: var(--color-gold);
    opacity: 0.8;
    animation: bounceDown 2s infinite;
}

@keyframes bounceDown {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ═══════════════════════════════════════
   HERO SENARYO 1 — Full-screen immersive
   ═══════════════════════════════════════ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    animation: heroZoom 20s ease-in-out alternate infinite;
}

@keyframes heroZoom {
    0%   { transform: scale(1.03); }
    100% { transform: scale(1.08); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.25) 0%,
        rgba(10, 10, 10, 0.20) 40%,
        rgba(10, 10, 10, 0.25) 60%,
        rgba(10, 10, 10, 0.55) 100%
    );
    z-index: 1;
}

.hero-vignette {
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 250px rgba(0, 0, 0, 0.9), inset 0 0 100px rgba(0, 0, 0, 0.5);
    z-index: 2;
    pointer-events: none;
}

.hero-noise {
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.75" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
    opacity: 0.12;
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    animation: heroFadeIn 1.6s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.hero-line {
    width: 50px;
    height: 1px;
    background: var(--color-gold);
    opacity: 0.6;
}

.hero-name {
    font-family: var(--font-display);
    font-size: clamp(4rem, 11vw, 10rem);
    font-weight: 300;
    letter-spacing: 0.25em;
    color: #fff;
    line-height: 1;
    text-shadow: 0 4px 60px rgba(0,0,0,0.6);
}

.hero-name .accent {
    color: var(--color-gold);
    font-weight: 300;
}

.hero-pretitle, .hero-posttitle {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.6em;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    display: block;
    animation: heroFadeIn 1.6s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.hero-pretitle { margin-bottom: 1.5rem; animation-delay: 0.2s; }
.hero-posttitle { margin-top: 1.5rem; animation-delay: 0.4s; }

/* Ince Mimari Scroll Line */
.hero-scroll-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 90px;
    background: rgba(255, 255, 255, 0.15);
    z-index: 4;
    overflow: hidden;
}
.hero-scroll-line .line-fill {
    width: 100%;
    height: 100%;
    background: var(--color-gold);
    transform: translateY(-100%);
    animation: scrollLineFill 2.5s cubic-bezier(0.645, 0.045, 0.355, 1) infinite;
}
@keyframes scrollLineFill {
    0%   { transform: translateY(-100%); }
    40%  { transform: translateY(0); }
    60%  { transform: translateY(0); }
    100% { transform: translateY(100%); }
}

/* Reservation link — fixed bottom-right */
.hero-reserve {
    position: absolute;
    bottom: 2.5rem;
    right: 3rem;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    border-bottom: 1px solid rgba(201, 169, 110, 0.4);
    padding-bottom: 0.3rem;
    transition: all 0.3s ease;
    animation: heroFadeIn 1.6s cubic-bezier(0.2, 0.8, 0.2, 1) 0.5s both;
}

.hero-reserve svg {
    transition: transform 0.3s ease;
}

.hero-reserve:hover {
    color: #fff;
    border-bottom-color: #fff;
}

.hero-reserve:hover svg {
    transform: translate(3px, -3px);
}

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

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

@media (max-width: 768px) {
    .hero-reserve {
        bottom: 2rem;
        right: 50%;
        transform: translateX(50%);
    }

    .hero-name {
        letter-spacing: 0.15em;
    }
}

/* ========================
   HERO SENARYO 2 — Editorial Split
   ======================== */

.hero-s2 {
    display: grid;
    grid-template-columns: 38% 62%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

/* --- Sol Panel: Tipografi --- */

.hero-s2-text {
    background: var(--color-bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 3.5rem;
    position: relative;
}

.hero-s2-text::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: linear-gradient(
        180deg,
        transparent 0%,
        var(--color-gold) 30%,
        var(--color-gold) 70%,
        transparent 100%
    );
    opacity: 0.2;
}

.hero-s2-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    animation: s2FadeIn 1.4s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-s2-brand {
    display: flex;
    flex-direction: column;
    line-height: 0.85;
    margin-bottom: 2rem;
}

.hero-s2-name-top,
.hero-s2-name-bottom {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 7vw, 6.5rem);
    font-weight: 400;
    letter-spacing: 0.2em;
    color: #fff;
    text-shadow: none;
}

.hero-s2-name-top {
    opacity: 0;
    animation: s2FadeIn 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s both;
}

.hero-s2-name-bottom {
    padding-left: 1.2em;
    opacity: 0;
    animation: s2FadeIn 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.6s both;
}

.hero-s2-name-bottom .accent {
    color: var(--color-gold);
    font-weight: 300;
}

.hero-s2-divider {
    width: 36px;
    height: 1px;
    background: var(--color-gold);
    opacity: 0.5;
    margin-bottom: 1.2rem;
    opacity: 0;
    animation: s2LineGrow 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.9s both;
}

.hero-s2-est {
    font-family: var(--font-body);
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 0.4em;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: s2FadeIn 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.8s both;
}

.hero-s2-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    border-bottom: 1px solid rgba(201, 169, 110, 0.35);
    padding-bottom: 0.3rem;
    transition: all 0.3s ease;
    opacity: 0;
    animation: s2FadeIn 1s cubic-bezier(0.2, 0.8, 0.2, 1) 1s both;
}

.hero-s2-cta:hover {
    color: #fff;
    border-bottom-color: #fff;
}

.hero-s2-cta svg {
    transition: transform 0.3s ease;
}

.hero-s2-cta:hover svg {
    transform: translate(3px, -3px);
}

/* --- Sağ Panel: Fotoğraf --- */

.hero-s2-media {
    position: relative;
    overflow: hidden;
    animation: s2ImageReveal 1.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-s2-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    animation: heroZoom 20s ease-in-out alternate infinite;
}

.hero-s2-media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(10, 10, 10, 0.5) 0%,
        rgba(10, 10, 10, 0.08) 35%,
        transparent 100%
    );
    z-index: 1;
}

.hero-s2-media-vignette {
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 150px rgba(0, 0, 0, 0.35);
    z-index: 2;
    pointer-events: none;
}

/* --- Animasyonlar --- */

@keyframes s2FadeIn {
    from { opacity: 0; transform: translateX(-20px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes s2LineGrow {
    from { opacity: 0; width: 0; }
    to   { opacity: 0.5; width: 36px; }
}

@keyframes s2ImageReveal {
    from { opacity: 0; clip-path: inset(0 0 0 8%); }
    to   { opacity: 1; clip-path: inset(0 0 0 0); }
}

/* --- Mobil: Fotoğraf arka plan, metin üstünde --- */

@media (max-width: 768px) {
    .hero-s2 {
        display: block;
        position: relative;
        height: 100vh;
        height: 100svh;
    }

    .hero-s2-media {
        position: absolute;
        inset: 0;
        z-index: 0;
    }

    .hero-s2-media-overlay {
        background: linear-gradient(
            180deg,
            rgba(10, 10, 10, 0.35) 0%,
            rgba(10, 10, 10, 0.15) 35%,
            rgba(10, 10, 10, 0.25) 60%,
            rgba(10, 10, 10, 0.7) 100%
        );
    }

    .hero-s2-media-vignette {
        box-shadow: inset 0 0 200px rgba(0, 0, 0, 0.6);
    }

    .hero-s2-text {
        position: relative;
        z-index: 3;
        height: 100%;
        background: none;
        padding: 0 2rem;
        align-items: center;
        justify-content: center;
    }

    .hero-s2-text::after {
        display: none;
    }

    .hero-s2-inner {
        align-items: center;
        text-align: center;
    }

    .hero-s2-name-top,
    .hero-s2-name-bottom {
        font-size: clamp(2.8rem, 14vw, 4.5rem);
        text-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
    }

    .hero-s2-name-bottom {
        padding-left: 0.8em;
    }

    .hero-s2-brand {
        margin-bottom: 1.5rem;
    }

    .hero-s2-est {
        color: rgba(255, 255, 255, 0.85);
        margin-bottom: 2rem;
    }
}

/* ========================
   END HERO SENARYO 2
   ======================== */

.section {
    padding: 7rem 2rem;
    position: relative;
}

.section-dark {
    background: var(--color-bg-dark);
}

.section-deep {
    background: var(--color-bg-deep);
}

.section-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.section-tag-line {
    width: 30px;
    height: 1px;
    background: var(--color-gold);
}

.section-tag-text {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    color: var(--color-text-primary);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-divider {
    width: 50px;
    height: 1px;
    background: var(--color-gold);
    margin: 1.5rem auto 0;
    opacity: 0.5;
}

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

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -1rem;
    left: -1rem;
    width: calc(100% + 2rem);
    height: calc(100% + 2rem);
    border: 1px solid var(--color-gold);
    opacity: 0.4;
    z-index: 0;
}

.about-image {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    filter: brightness(0.9) contrast(1.05);
    transition: transform 0.8s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(10, 10, 10, 0.9));
    z-index: 2;
}

.about-quote {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--color-text-primary);
    line-height: 1.5;
}

.about-quote-author {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-top: 0.5rem;
}

.about-content-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.about-content-tag span:first-child {
    width: 30px;
    height: 1px;
    background: var(--color-gold);
    display: block;
}

.about-content-tag span:last-child {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.about-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--color-text-primary);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.about-title .gold {
    color: var(--color-gold);
}

.about-text {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--color-border);
}

.about-stat-value {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
}

.about-stat-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-top: 0.5rem;
}

.parallax-banner {
    position: relative;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.parallax-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.parallax-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.6);
    z-index: 1;
}

.parallax-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.parallax-banner-text {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--color-text-primary);
    font-weight: 500;
    font-style: italic;
    line-height: 1.4;
    max-width: 700px;
}

.parallax-banner-text .gold {
    color: var(--color-gold);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.review-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: 2.5rem;
    position: relative;
    transition: var(--transition-smooth);
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--color-gold);
    opacity: 0.08;
    line-height: 1;
}

.review-card:hover {
    background: var(--color-bg-card-hover);
    border-color: var(--color-border-hover);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-bg-dark);
    flex-shrink: 0;
}

.review-info {
    display: flex;
    flex-direction: column;
}

.review-name {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

.review-stars {
    display: flex;
    gap: 3px;
    margin-top: 3px;
}

.review-stars svg {
    width: 14px;
    height: 14px;
    fill: var(--color-gold);
    color: var(--color-gold);
}

.review-text {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--color-text-secondary);
    font-style: italic;
}

/* ===== MENU ===== */

.menu-page {
    padding-top: 0;
    padding-bottom: 0;
    min-height: 100vh;
    background: var(--color-bg-dark);
}

/* Menu Hero Banner */
.menu-hero {
    position: relative;
    height: 55vh;
    min-height: 400px;
    max-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.menu-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.menu-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    filter: brightness(0.35) saturate(1.1);
    animation: menuHeroZoom 20s ease-in-out infinite alternate;
}

@keyframes menuHeroZoom {
    0% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1.15);
    }
}

.menu-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(10, 10, 10, 0.7) 0%,
            rgba(10, 10, 10, 0.3) 40%,
            rgba(10, 10, 10, 0.5) 70%,
            rgba(10, 10, 10, 1) 100%);
    z-index: 1;
}

.menu-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 2rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.menu-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.menu-hero-tag-line {
    width: 40px;
    height: 1px;
    background: var(--color-gold);
    opacity: 0.6;
}

.menu-hero-tag-text {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.menu-hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--color-text-primary);
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: 0.03em;
}

.menu-hero-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    color: var(--color-text-secondary);
    letter-spacing: 0.05em;
    max-width: 500px;
    margin: 0 auto;
}

.menu-hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--color-gold);
    opacity: 0.6;
    animation: bounceDown 2s infinite, fadeInUp 0.8s ease 0.6s both;
}

/* Sticky Category Nav */
.menu-category-nav {
    position: sticky;
    top: 60px;
    z-index: 100;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    transition: box-shadow 0.3s ease;
}

.menu-category-nav.nav-shadow {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.menu-category-nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.9rem 1.5rem;
    flex-wrap: wrap;
}

.menu-nav-link {
    /* menü */
    padding: 0.6rem 1.2rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    border: 1px solid var(--color-border);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.menu-nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.menu-nav-link:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.menu-nav-link:hover::before {
    transform: scaleX(1);
}

.menu-nav-link.active {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-bg-dark);
    font-weight: 600;
}

.menu-nav-link.active::before {
    display: none;
}

/* Menu Content */
.menu-content-wrapper {
    padding: 4rem 0 6rem;
    position: relative;
}

.menu-content-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
    opacity: 0.3;
}

/* Category Section */
.menu-category-section {
    margin-bottom: 6rem;
    scroll-margin-top: 140px;
}

.menu-category-header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
}

.menu-category-number {
    display: block;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-gold);
    letter-spacing: 0.2em;
    opacity: 0.5;
    margin-bottom: 0.8rem;
}

.menu-category-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--color-text-primary);
    text-align: center;
    margin-bottom: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    position: relative;
}

.menu-category-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 1px;
    background: var(--color-gold);
    margin: 1rem auto 0;
    opacity: 0.5;
}

.menu-category-subtitle {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--color-text-muted);
    font-style: italic;
    letter-spacing: 0.02em;
    margin-top: 1rem;
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}

/* Menu Card */
.menu-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition:
        transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.35s ease,
        border-color 0.25s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.menu-card:hover {
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.35),
        0 4px 16px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(201, 169, 110, 0.12);
}

.menu-card-image {
    height: 180px;
    overflow: hidden;
    position: relative;
    background: var(--color-bg-deep);
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s ease;
    filter: brightness(0.82) saturate(0.95);
}

.menu-card:hover .menu-card-image img {
    transform: scale(1.06);
    filter: brightness(0.95) saturate(1.08);
}

.menu-card-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            transparent 40%,
            rgba(10, 10, 10, 0.4) 70%,
            rgba(10, 10, 10, 0.85) 100%);
    opacity: 0.6;
    transition: opacity 0.5s ease;
}

.menu-card:hover .menu-card-image-overlay {
    opacity: 1;
}

/* Card Badge */
.menu-card-badge {
    position: absolute;
    top: 0.9rem;
    left: 0.9rem;
    padding: 0.25rem 0.7rem;
    font-family: var(--font-body);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-bg-dark);
    background: rgba(201, 169, 110, 0.9);
    border-left: 2px solid var(--color-gold-light);
    z-index: 3;
    backdrop-filter: blur(6px);
}

.menu-card-badge--fire {
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.9), rgba(224, 201, 144, 0.9));
    border-left-color: #fff;
}

/* Card Body */
.menu-card-body {
    padding: 1.4rem 1.5rem;
    background: linear-gradient(to bottom, var(--color-bg-card), rgba(17, 17, 17, 0.95));
    position: relative;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.menu-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.4rem;
    gap: 1rem;
}

.menu-card-name {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--color-text-primary);
    line-height: 1.2;
    flex: 1;
    transition: color 0.3s ease;
}

.menu-card:hover .menu-card-name {
    color: var(--color-gold-light);
}

.modern-num {
    font-family: var(--font-body);
    font-weight: 700;
}

.menu-card-price {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-gold);
    background: transparent;
    padding: 0;
    border: none;
    white-space: nowrap;
    letter-spacing: 0.02em;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.menu-card:hover .menu-card-price {
    color: var(--color-gold-light);
}

.menu-card-price--seasonal {
    color: var(--color-text-muted);
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.menu-card-desc {
    font-size: 0.8rem;
    font-weight: 300;
    font-style: italic;
    color: var(--color-text-muted);
    line-height: 1.65;
    position: relative;
    padding-top: 0.85rem;
    margin-top: auto;
}

.menu-card-desc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 28px;
    height: 1px;
    background: linear-gradient(90deg, var(--color-gold), transparent);
    opacity: 0.45;
    transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease;
}

.menu-card:hover .menu-card-desc::before {
    width: 50px;
    opacity: 0.7;
}



.contact-page {
    padding-top: 8rem;
    padding-bottom: 5rem;
    min-height: 100vh;
    background: var(--color-bg-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    justify-content: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.8rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    transition: var(--transition-smooth);
}

.contact-item:hover {
    border-color: var(--color-border-hover);
    background: var(--color-bg-card-hover);
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-gold);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    color: var(--color-gold);
}

.contact-item-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 0.4rem;
}

.contact-item-text {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.contact-item-text a {
    color: var(--color-gold);
    transition: color 0.3s ease;
}

.contact-item-text a:hover {
    color: var(--color-gold-light);
}

.contact-reservation-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.8rem;
    padding: 0.4rem 0.8rem;
    background: rgba(201, 169, 110, 0.08);
    border: 1px solid var(--color-border);
}

.contact-reservation-badge .pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-gold);
    animation: pulse 2s infinite;
}

.contact-reservation-badge span {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.contact-map {
    height: 100%;
    min-height: 500px;
    border: 1px solid var(--color-border);
    overflow: hidden;
    position: relative;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.4) contrast(1.1) brightness(0.8);
    transition: filter 0.4s ease;
}

.contact-map:hover iframe {
    filter: grayscale(0) contrast(1) brightness(1);
}

.feedback-flash {
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.alert {
    padding: 1rem 1.2rem;
    border-radius: 6px;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    font-family: var(--font-body);
}

.alert-success {
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.2);
}

.alert-error {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.2);
}

/* Feedback Form Section */
.feedback-section {
    background: var(--color-bg-card);
    padding: 3rem;
    border: 1px solid var(--color-border);
    margin-top: 5rem;
    position: relative;
    overflow: hidden;
}

.feedback-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--color-gold);
}

.feedback-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
    text-align: center;
}

.feedback-subtitle {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--color-text-secondary);
    text-align: center;
    margin-bottom: 2.5rem;
    letter-spacing: 0.05em;
}

.feedback-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.feedback-form-group.full-width {
    grid-column: 1 / -1;
}

.feedback-input {
    width: 100%;
    background: var(--color-bg-dark);
    border: 1px solid var(--color-border);
    color: var(--color-text-primary);
    padding: 1rem 1.2rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.feedback-input::placeholder {
    color: var(--color-text-muted);
}

.feedback-input:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 10px rgba(201, 169, 110, 0.1);
}

textarea.feedback-input {
    resize: vertical;
    min-height: 120px;
}

.feedback-submit {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 1rem;
}

.footer {
    background: var(--color-bg-deep);
    border-top: 1px solid var(--color-border);
    padding: 5rem 2rem 2rem;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand-text {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-top: 1rem;
    max-width: 380px;
}

.footer-section-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--color-text-muted);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-gold);
}

.footer-links a:hover::before {
    width: 15px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

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

.footer-contact-item span,
.footer-contact-item a {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--color-text-muted);
    line-height: 1.6;
}

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

.footer-divider {
    width: 100%;
    height: 1px;
    background: var(--color-border);
    margin-bottom: 2rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-copyright {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
}

.footer-developed {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollDown {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(12px);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}



@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

    .menu-card-image {
        height: 170px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .menu-category-nav-inner {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0.8rem 1rem;
    }

    .menu-category-nav-inner::-webkit-scrollbar {
        display: none;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-reserve-btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: clamp(3.3rem, 14.7vw, 4.8rem);
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        text-align: center;
    }

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

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

    .menu-card-image {
        height: 200px;
    }

    .menu-card-body {
        padding: 1.2rem 1.3rem;
    }

    .menu-hero {
        height: 45vh;
        min-height: 320px;
    }

    .menu-hero-content {
        margin-top: 5.5rem;
    }

    .menu-hero-scroll {
        display: none !important;
    }

    .menu-hero-title {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
    }

    .menu-category-nav-inner {
        gap: 0.3rem;
        padding: 0.7rem 0.8rem;
    }

    .menu-nav-link {
        font-size: 0.8rem;
        padding: 0.5rem 0.9rem;
        /* menü resp */
    }

    .menu-content-wrapper {
        padding: 2.5rem 0 4rem;
    }

    .menu-category-section {
        margin-bottom: 4rem;
    }

    .menu-category-header {
        margin-bottom: 2.5rem;
    }

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

    .contact-map {
        min-height: 350px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image img {
        height: 400px;
    }

    .section {
        padding: 4rem 1.5rem;
    }

    .parallax-banner {
        height: 300px;
    }

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

    .feedback-section {
        padding: 2rem 1.5rem;
        margin-top: 4rem;
    }
}

@media (max-width: 480px) {
    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .menu-nav-link {
        padding: 0.45rem 0.8rem;
        font-size: 0.75rem;
        /* menü resp */
    }

    .menu-hero {
        height: 40vh;
        min-height: 280px;
    }

    .menu-card-body {
        padding: 1.4rem;
    }

    .menu-card-name {
        font-size: 1.1rem;
    }
}