/* ============================================
   PHU LY VIETNAMESE RESTAURANT - MAIN STYLES
   Premium, Modern Design System
   ============================================ */

/* CSS Custom Properties (Design Tokens) */
:root {
    /* Color Palette - Warm, Elegant Vietnamese Theme */
    --color-primary: #C4956A;
    --color-primary-light: #D4A87A;
    --color-primary-dark: #A67B4A;
    --color-secondary: #2C3E2D;
    --color-accent: #E8C4A0;

    /* Neutral Colors */
    --color-black: #1A1A1A;
    --color-dark: #2D2D2D;
    --color-gray-dark: #4A4A4A;
    --color-gray: #7A7A7A;
    --color-gray-light: #B8B8B8;
    --color-light: #F5F3F0;
    --color-cream: #FAF8F5;
    --color-white: #FFFFFF;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Font Sizes - Fluid Typography */
    --fs-hero: clamp(3.5rem, 8vw, 8rem);
    --fs-h1: clamp(2.5rem, 5vw, 4rem);
    --fs-h2: clamp(2rem, 4vw, 3rem);
    --fs-h3: clamp(1.5rem, 3vw, 2rem);
    --fs-h4: clamp(1.25rem, 2vw, 1.5rem);
    --fs-body: clamp(1rem, 1.5vw, 1.125rem);
    --fs-small: 0.875rem;
    --fs-label: 0.75rem;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 5rem;
    --spacing-3xl: 8rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);

    /* Container */
    --container-max: 1200px;
    --container-padding: clamp(1rem, 4vw, 2rem);
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-dark);
    background-color: var(--color-cream);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-black);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

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

ul,
ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: var(--fs-label);
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.section-label.light {
    color: var(--color-accent);
}

.section-title {
    font-size: var(--fs-h2);
    color: var(--color-black);
    margin-bottom: var(--spacing-md);
}

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

.section-subtitle {
    font-size: var(--fs-body);
    color: var(--color-gray);
    max-width: 600px;
}

.section-text {
    color: var(--color-gray-dark);
    margin-bottom: var(--spacing-md);
}

.section-text.light {
    color: rgba(255, 255, 255, 0.85);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-header .section-subtitle {
    margin: 0 auto;
}

/* ============================================
   BUTTONS - GLASSMORPHISM DESIGN
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 2.4rem;
    font-family: var(--font-body);
    font-size: var(--fs-small);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
}

/* Glassmorphism Primary Button */
.btn-primary {
    background: linear-gradient(135deg,
            rgba(196, 149, 106, 0.85) 0%,
            rgba(166, 123, 74, 0.9) 100%);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
        0 8px 32px rgba(196, 149, 106, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset,
        0 -2px 6px rgba(0, 0, 0, 0.1) inset;
}

/* Shimmer effect overlay */
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.2) 0%,
            transparent 50%);
    border-radius: inherit;
    pointer-events: none;
    z-index: 0;
}

.btn-primary:hover {
    background: linear-gradient(135deg,
            rgba(212, 168, 122, 0.95) 0%,
            rgba(196, 149, 106, 1) 100%);
    transform: translateY(-4px);
    box-shadow:
        0 16px 48px rgba(196, 149, 106, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset,
        0 0 20px rgba(196, 149, 106, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

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

/* Glassmorphism Secondary Button */
.btn-secondary {
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0.05) 100%);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset,
        0 -2px 6px rgba(0, 0, 0, 0.05) inset;
}

.btn-secondary::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.6s ease;
    z-index: 1;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.1) 0%,
            transparent 50%);
    border-radius: inherit;
    pointer-events: none;
    z-index: 0;
}

.btn-secondary:hover {
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.25) 0%,
            rgba(255, 255, 255, 0.15) 100%);
    transform: translateY(-4px);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.15) inset,
        0 0 30px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

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

/* Glassmorphism Outline Button */
.btn-outline {
    background: linear-gradient(135deg,
            rgba(196, 149, 106, 0.08) 0%,
            rgba(196, 149, 106, 0.03) 100%);
    color: var(--color-primary);
    border: 1px solid rgba(196, 149, 106, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow:
        0 4px 16px rgba(196, 149, 106, 0.1),
        0 0 0 1px rgba(196, 149, 106, 0.05) inset;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(196, 149, 106, 0.2),
            transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.btn-outline::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(196, 149, 106, 0.1) 0%,
            transparent 50%);
    border-radius: inherit;
    pointer-events: none;
    z-index: 0;
}

.btn-outline:hover {
    background: linear-gradient(135deg,
            rgba(196, 149, 106, 0.9) 0%,
            rgba(166, 123, 74, 0.95) 100%);
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px);
    box-shadow:
        0 16px 48px rgba(196, 149, 106, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset,
        0 0 20px rgba(196, 149, 106, 0.25);
}

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

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--spacing-md) 0;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: var(--spacing-sm) 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.nav-logo {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nav-logo .logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-white);
    transition: color var(--transition-base);
}

.nav-logo .logo-subtitle {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-base);
}

.navbar.scrolled .nav-logo .logo-text {
    color: var(--color-black);
}

.navbar.scrolled .nav-logo .logo-subtitle {
    color: var(--color-gray);
}

.nav-menu {
    display: flex;
    gap: var(--spacing-lg);
}

.nav-link {
    font-size: var(--fs-small);
    font-weight: 500;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding: var(--spacing-xs) 0;
    transition: color var(--transition-base);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-primary);
    transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-white);
}

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

.navbar.scrolled .nav-link {
    color: var(--color-gray-dark);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--color-black);
}

.nav-cta {
    padding: 0.75rem 1.5rem;
    font-size: var(--fs-small);
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--color-white);
    background-color: var(--color-primary);
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
}

.nav-cta:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

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

.navbar.scrolled .nav-toggle span {
    background-color: var(--color-black);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2C3E2D 0%, #1A2A1B 100%);
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(26, 26, 26, 0.6) 0%,
            rgba(26, 26, 26, 0.4) 50%,
            rgba(26, 26, 26, 0.7) 100%);
    z-index: 10;
}

.hero-content {
    position: relative;
    text-align: center;
    padding: 0 var(--container-padding);
    max-width: 900px;
    z-index: 20;
}

.hero-tagline {
    font-size: var(--fs-small);
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-primary-light);
    margin-bottom: var(--spacing-sm);
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-title {
    font-size: var(--fs-hero);
    font-weight: 500;
    color: var(--color-white);
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-xs);
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: var(--fs-h4);
    font-weight: 400;
    font-style: italic;
    color: var(--color-accent);
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.hero-description {
    font-size: var(--fs-body);
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin: 0 auto var(--spacing-xl);
    animation: fadeInUp 1s ease-out 0.8s backwards;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1s backwards;
}

.hero-scroll {
    position: absolute;
    bottom: var(--spacing-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--fs-label);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: fadeIn 1s ease-out 1.5s backwards;
    z-index: 20;
}

.scroll-indicator {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* Hero Slideshow - Premium Automatic Transitions */
.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s cubic-bezier(0.4, 0, 0.2, 1);
    animation: kenBurns 20s ease-in-out infinite;
}

.hero-slide.active {
    opacity: 1;
}

/* Ken Burns Effect - Slow Zoom on Hero Images */
@keyframes kenBurns {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

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

/* Hero Navigation Dots */
.hero-nav {
    position: absolute;
    bottom: calc(var(--spacing-xl) * 2.5);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--spacing-sm);
    z-index: 10;
}

.hero-nav-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
}

.hero-nav-btn:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.hero-nav-btn.active {
    background: var(--color-primary);
    border-color: var(--color-primary-light);
    transform: scale(1.3);
    box-shadow: 0 0 12px rgba(196, 149, 106, 0.6);
}


/* ============================================
   ABOUT PREVIEW SECTION
   ============================================ */

.about-preview {
    padding: var(--spacing-3xl) 0;
    background-color: var(--color-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

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

.about-image {
    aspect-ratio: 4/5;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(196, 149, 106, 0.1) 0%, transparent 100%);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.experience-years {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-white);
    line-height: 1;
}

.experience-text {
    font-size: var(--fs-label);
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.about-content {
    padding: var(--spacing-lg) 0;
}

/* ============================================
   FEATURED DISHES SECTION
   ============================================ */

.featured-dishes {
    padding: var(--spacing-3xl) 0;
    background-color: var(--color-cream);
}

.dishes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.dish-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.dish-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.dish-card.featured {
    transform: scale(1.05);
}

.dish-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.dish-image {
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center;
    position: relative;
}

.dish-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: var(--spacing-md);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.dish-card:hover .dish-overlay {
    opacity: 1;
}

.dish-category {
    font-size: var(--fs-label);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-white);
    background-color: var(--color-primary);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
}

.dish-content {
    padding: var(--spacing-lg);
}

.dish-title {
    font-size: var(--fs-h4);
    margin-bottom: var(--spacing-xs);
}

.dish-description {
    font-size: var(--fs-small);
    color: var(--color-gray);
    margin-bottom: var(--spacing-sm);
}

.dish-price {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary);
}

.dishes-cta {
    text-align: center;
    margin-top: var(--spacing-2xl);
}

/* ============================================
   QUALITY SECTION
   ============================================ */

.quality-section {
    position: relative;
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, #2C3E2D 0%, #1A2A1B 100%);
    background-image: url('../images/quality-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.quality-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 42, 27, 0.9);
}

.quality-section .container {
    position: relative;
    z-index: 1;
}

.quality-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-2xl);
}

.quality-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.quality-feature {
    text-align: center;
    padding: var(--spacing-xl);
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
}

.quality-feature:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-md);
    color: var(--color-primary-light);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.quality-feature h3 {
    font-size: var(--fs-h4);
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
}

.quality-feature p {
    font-size: var(--fs-small);
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials {
    padding: var(--spacing-3xl) 0;
    background-color: var(--color-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.testimonial-card {
    padding: var(--spacing-xl);
    background-color: var(--color-cream);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-content {
    margin-bottom: var(--spacing-lg);
}

.quote-icon {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1;
    color: var(--color-primary);
    opacity: 0.3;
    margin-bottom: var(--spacing-sm);
}

.testimonial-content p {
    font-size: var(--fs-body);
    color: var(--color-gray-dark);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.author-name {
    font-weight: 600;
    color: var(--color-black);
}

.author-rating {
    color: var(--color-primary);
    letter-spacing: 0.1em;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: var(--fs-h2);
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
}

.cta-content>p {
    font-size: var(--fs-body);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--spacing-xl);
}

.cta-info {
    display: flex;
    justify-content: center;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.info-label {
    font-size: var(--fs-label);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.info-value {
    font-size: var(--fs-body);
    color: var(--color-white);
}

.info-value a {
    color: var(--color-white);
}

.info-value a:hover {
    text-decoration: underline;
}

.cta-section .btn-primary {
    background-color: var(--color-black);
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.cta-section .btn-primary:hover {
    background-color: var(--color-white);
    color: var(--color-primary-dark);
    border-color: var(--color-white);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: var(--color-black);
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
}

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

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: var(--spacing-md);
}

.footer-logo .logo-text {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-white);
}

.footer-logo .logo-subtitle {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.footer-brand p {
    font-size: var(--fs-small);
    color: rgba(255, 255, 255, 0.6);
    max-width: 280px;
}

.footer-grid h4 {
    font-family: var(--font-body);
    font-size: var(--fs-small);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
}

.footer-links ul,
.footer-contact ul,
.footer-hours ul {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-links a,
.footer-contact li,
.footer-contact a {
    font-size: var(--fs-small);
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--color-primary-light);
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    font-size: var(--fs-small);
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
    padding-top: var(--spacing-lg);
    text-align: center;
}

.footer-bottom p {
    font-size: var(--fs-small);
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin: var(--spacing-sm) 0;
}

.footer-legal a {
    font-size: var(--fs-small);
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--color-primary-light);
}

.footer-owner {
    font-size: var(--fs-label);
    margin-top: var(--spacing-sm);
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

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

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.6;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(1.2);
    }
}

/* Scroll reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .about-grid {
        gap: var(--spacing-xl);
    }

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

    .dish-card.featured {
        transform: none;
    }

    .dish-card.featured:hover {
        transform: translateY(-8px);
    }

    .quality-features {
        gap: var(--spacing-lg);
    }

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

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xl);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--color-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--spacing-lg);
        transition: right var(--transition-base);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu .nav-link {
        font-size: 1.25rem;
        color: var(--color-black);
    }

    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

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

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

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .experience-badge {
        right: 20px;
        bottom: -20px;
        width: 120px;
        height: 120px;
    }

    .experience-years {
        font-size: 2rem;
    }

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

    .quality-features {
        grid-template-columns: 1fr;
    }

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

    .cta-info {
        flex-direction: column;
        gap: var(--spacing-lg);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .footer-hours li {
        justify-content: flex-start;
        gap: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .hero-buttons .btn {
        width: 100%;
    }
}