/* ============================================
   AURELIA - Luxury Fine Dining Restaurant
   Design System & Styles
   ============================================ */

/* CSS Variables - Luxury Color Palette */
:root {
    /* Primary Colors - Deep Ocean & Emerald */
    --color-ocean-deep: #0a1628;
    --color-ocean-mid: #0d1f3c;
    --color-ocean-light: #1a3a5c;
    --color-emerald-deep: #064e3b;
    --color-emerald-mid: #059669;
    --color-emerald-light: #10b981;
    
    /* Accent Colors - Teal & Aqua */
    --color-teal: #14b8a6;
    --color-teal-light: #5eead4;
    --color-aqua: #67e8f9;
    --color-aqua-soft: #a5f3fc;
    
    /* Neutral Colors */
    --color-navy: #0f172a;
    --color-navy-light: #1e293b;
    --color-white: #fafaf9;
    --color-cream: #f5f5f4;
    --color-warm-white: #fafaf9;
    
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, rgba(10, 22, 40, 0.95) 0%, rgba(6, 78, 59, 0.85) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    --gradient-teal: linear-gradient(135deg, #14b8a6 0%, #059669 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4e4ba 50%, #d4af37 100%);
    
    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-slower: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 40px rgba(20, 184, 166, 0.3);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-warm-white);
    background-color: var(--color-ocean-deep);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

/* Container */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ============================================
   Typography
   ============================================ */

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

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: 1.125rem;
    color: rgba(250, 250, 249, 0.7);
    max-width: 600px;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-teal);
    color: var(--color-white);
    border: none;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 60px rgba(20, 184, 166, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(250, 250, 249, 0.3);
}

.btn-secondary:hover {
    background: rgba(250, 250, 249, 0.1);
    border-color: rgba(250, 250, 249, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--color-teal);
    border: 1px solid var(--color-teal);
}

.btn-outline:hover {
    background: var(--color-teal);
    color: var(--color-white);
}

.btn-full {
    width: 100%;
}

/* ============================================
   Navigation
   ============================================ */

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

.nav.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--space-sm) 0;
    box-shadow: var(--shadow-lg);
}

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

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--color-white);
}

.nav-links {
    display: flex;
    gap: var(--space-lg);
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: rgba(250, 250, 249, 0.8);
    position: relative;
}

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

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

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

.nav-cta {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-white);
    background: var(--gradient-teal);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

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

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

/* ============================================
   Hero Section
   ============================================ */

.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    animation: heroZoom 20s ease-out forwards;
}

@keyframes heroZoom {
    to {
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    opacity: 0.9;
}

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

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-teal);
    margin-bottom: var(--space-md);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.3s;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    line-height: 1;
    color: var(--color-white);
    margin-bottom: var(--space-lg);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.5s;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(250, 250, 249, 0.8);
    max-width: 600px;
    margin: 0 auto var(--space-xl);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.7s;
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.9s;
}

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

.hero-scroll {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(250, 250, 249, 0.6);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-teal), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scaleY(0.5);
    }
    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* ============================================
   Introduction Section
   ============================================ */

.intro {
    padding: var(--space-3xl) 0;
    background: var(--color-ocean-deep);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.intro-content {
    max-width: 600px;
}

.intro-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(250, 250, 249, 0.7);
    margin-bottom: var(--space-md);
}

.intro-stats {
    display: flex;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(250, 250, 249, 0.1);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 300;
    color: var(--color-teal);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(250, 250, 249, 0.6);
    margin-top: var(--space-xs);
}

.intro-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.image-frame img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--color-teal);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.5;
}

.image-accent--left {
    top: -20px;
    left: -20px;
    right: auto;
}

/* ============================================
   Dishes Section
   ============================================ */

.dishes {
    padding: var(--space-3xl) 0;
    background: var(--color-navy);
}

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

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

.dish-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}

.dish-card:hover {
    transform: translateY(-8px);
    border-color: rgba(20, 184, 166, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.dish-card.featured {
    grid-column: span 1;
}

.dish-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.dish-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.dish-card:hover .dish-image img {
    transform: scale(1.05);
}

.dish-overlay {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    padding: 0.5rem 1rem;
    background: rgba(10, 22, 40, 0.9);
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
}

.dish-price {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--color-teal);
}

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

.dish-category {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-teal);
    margin-bottom: var(--space-xs);
}

.dish-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.dish-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(250, 250, 249, 0.6);
}

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

/* ============================================
   Chef Section
   ============================================ */

.chef {
    padding: var(--space-3xl) 0;
    background: var(--color-ocean-deep);
}

.chef-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.chef-image {
    order: -1;
}

.chef-image .image-frame img {
    height: 700px;
}

.chef-content {
    max-width: 600px;
}

.chef-bio {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(250, 250, 249, 0.7);
    margin-bottom: var(--space-md);
}

.chef-awards {
    display: flex;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(250, 250, 249, 0.1);
}

.award {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-teal);
    font-size: 0.9375rem;
    font-weight: 500;
}

.award i {
    font-size: 1.25rem;
}

/* ============================================
   Tasting Menu Section
   ============================================ */

.tasting {
    position: relative;
    padding: var(--space-3xl) 0;
    overflow: hidden;
}

.tasting-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-emerald-deep) 0%, var(--color-ocean-mid) 100%);
    z-index: 0;
}

.tasting-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('dish-bisque.jpg.png') center/cover;
    opacity: 0.2;
    mix-blend-mode: overlay;
}

.tasting-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 22, 40, 0.7);
    z-index: 1;
}

.tasting-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.tasting-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(250, 250, 249, 0.8);
    margin-bottom: var(--space-xl);
}

.tasting-details {
    display: flex;
    justify-content: center;
    gap: var(--space-2xl);
    margin-bottom: var(--space-lg);
}

.tasting-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tasting-time {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--color-white);
}

.tasting-label {
    font-size: 0.875rem;
    color: rgba(250, 250, 249, 0.6);
    margin-top: var(--space-xs);
}

.tasting-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-size: 0.9375rem;
    color: rgba(250, 250, 249, 0.7);
}

.tasting-note i {
    color: var(--color-teal);
}

/* ============================================
   Reservation Section
   ============================================ */

.reservation {
    padding: var(--space-3xl) 0;
    background: var(--color-navy);
}

.reservation-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-3xl);
    align-items: start;
}

.reservation-info {
    position: sticky;
    top: 120px;
}

.reservation-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(250, 250, 249, 0.7);
    margin-bottom: var(--space-xl);
}

.reservation-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.detail {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.detail i {
    font-size: 1.25rem;
    color: var(--color-teal);
    margin-top: 2px;
}

.detail-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-teal);
    margin-bottom: 2px;
}

.detail-value {
    font-size: 1rem;
    color: rgba(250, 250, 249, 0.8);
}

.reservation-form-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    backdrop-filter: blur(10px);
}

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(250, 250, 249, 0.8);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    transition: all var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-teal);
    background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(250, 250, 249, 0.4);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23fafaf9' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.form-group select option {
    background: var(--color-navy);
    color: var(--color-white);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-note {
    text-align: center;
    font-size: 0.875rem;
    color: rgba(250, 250, 249, 0.5);
    margin-top: var(--space-sm);
}

/* ============================================
   Private Dining Section
   ============================================ */

.private-dining {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 700px;
}

.private-dining-image {
    position: relative;
    overflow: hidden;
}

.private-dining-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.private-dining-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-3xl);
    background: var(--color-ocean-deep);
}

.private-dining-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(250, 250, 249, 0.7);
    margin-bottom: var(--space-xl);
}

.private-dining-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(250, 250, 249, 0.8);
    font-size: 0.9375rem;
}

.feature i {
    font-size: 1.25rem;
    color: var(--color-teal);
}

/* ============================================
   Reviews Section
   ============================================ */

.reviews {
    padding: var(--space-3xl) 0;
    background: var(--color-ocean-deep);
    overflow: hidden;
}

.reviews-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.reviews-track {
    display: flex;
    transition: transform var(--transition-slow);
}

.review-card {
    flex: 0 0 100%;
    padding: var(--space-xl);
    text-align: center;
}

.review-stars {
    display: flex;
    justify-content: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-lg);
    color: #d4af37;
    font-size: 1.25rem;
}

.review-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1.6;
    color: var(--color-white);
    margin-bottom: var(--space-xl);
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
}

.author-title {
    font-size: 0.875rem;
    color: rgba(250, 250, 249, 0.6);
}

.reviews-nav {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.review-nav-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(250, 250, 249, 0.2);
    border-radius: var(--radius-full);
    color: var(--color-white);
    transition: all var(--transition-base);
}

.review-nav-btn:hover {
    background: var(--color-teal);
    border-color: var(--color-teal);
}

/* ============================================
   Location Section
   ============================================ */

.location {
    padding: var(--space-3xl) 0;
    background: var(--color-navy);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-3xl);
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.location-address {
    display: flex;
    gap: var(--space-md);
    color: rgba(250, 250, 249, 0.8);
}

.location-address i {
    font-size: 1.5rem;
    color: var(--color-teal);
}

.location-address p {
    font-size: 1.125rem;
    line-height: 1.6;
}

.location-hours h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(250, 250, 249, 0.1);
    font-size: 0.9375rem;
    color: rgba(250, 250, 249, 0.7);
}

.hours-row.closed {
    color: rgba(250, 250, 249, 0.4);
}

.location-contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-link {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1rem;
    color: var(--color-teal);
    transition: color var(--transition-base);
}

.contact-link:hover {
    color: var(--color-teal-light);
}

.contact-link i {
    font-size: 1.125rem;
}

.map-container {
    height: 100%;
    min-height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    padding: var(--space-3xl) 0 var(--space-xl);
    background: var(--color-ocean-deep);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.footer-tagline {
    font-size: 1rem;
    color: rgba(250, 250, 249, 0.6);
    margin-bottom: var(--space-lg);
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(250, 250, 249, 0.2);
    border-radius: var(--radius-full);
    color: rgba(250, 250, 249, 0.8);
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--color-teal);
    border-color: var(--color-teal);
    color: var(--color-white);
}

.footer-links h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: var(--space-lg);
    letter-spacing: 0.05em;
}

.footer-links a {
    display: block;
    font-size: 0.9375rem;
    color: rgba(250, 250, 249, 0.6);
    margin-bottom: var(--space-sm);
    transition: color var(--transition-base);
}

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

.footer-newsletter h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.05em;
}

.footer-newsletter p {
    font-size: 0.9375rem;
    color: rgba(250, 250, 249, 0.6);
    margin-bottom: var(--space-md);
}

.newsletter-form {
    display: flex;
    gap: var(--space-sm);
}

.newsletter-form input {
    flex: 1;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.9375rem;
}

.newsletter-form input::placeholder {
    color: rgba(250, 250, 249, 0.4);
}

.newsletter-form button {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-teal);
    border-radius: var(--radius-md);
    color: var(--color-white);
    transition: all var(--transition-base);
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(250, 250, 249, 0.5);
}

.footer-legal {
    display: flex;
    gap: var(--space-lg);
}

.footer-legal a {
    font-size: 0.875rem;
    color: rgba(250, 250, 249, 0.5);
    transition: color var(--transition-base);
}

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

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 1200px) {
    .dishes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dish-card.featured {
        grid-column: span 2;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-links,
    .nav-cta {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .intro-grid,
    .chef-grid,
    .reservation-grid,
    .location-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .chef-image {
        order: 0;
    }
    
    .private-dining {
        grid-template-columns: 1fr;
    }
    
    .private-dining-image {
        height: 400px;
    }
    
    .tasting-details {
        flex-direction: column;
        gap: var(--space-lg);
    }
    
    .intro-stats,
    .chef-awards {
        flex-wrap: wrap;
        gap: var(--space-lg);
    }
}

@media (max-width: 768px) {
    .dishes-grid {
        grid-template-columns: 1fr;
    }
    
    .dish-card.featured {
        grid-column: span 1;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .private-dining-features {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    :root {
        --space-lg: 1.5rem;
        --space-xl: 2.5rem;
        --space-2xl: 4rem;
        --space-3xl: 5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .review-text {
        font-size: 1.125rem;
    }
}

/* ============================================
   Animations & Effects
   ============================================ */

.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-text.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Glassmorphism Effect */
.glass {
    background: var(--gradient-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hover Glow Effect */
.hover-glow {
    transition: all var(--transition-base);
}

.hover-glow:hover {
    box-shadow: 0 0 30px rgba(20, 184, 166, 0.3);
}

/* Smooth Image Zoom */
.img-zoom {
    overflow: hidden;
}

.img-zoom img {
    transition: transform var(--transition-slow);
}

.img-zoom:hover img {
    transform: scale(1.05);
}

/* Text Gradient */
.text-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.loading {
    background: linear-gradient(90deg, rgba(255,255,255,0.05) 25%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.05) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* Focus States */
:focus-visible {
    outline: 2px solid var(--color-teal);
    outline-offset: 2px;
}

/* Selection */
::selection {
    background: var(--color-teal);
    color: var(--color-white);
}