/* ===================================
   ROOT VARIABLES & RESET
   =================================== */
:root {
    /* Warm Color Palette */
    --primary-color: #FF6B35;        /* Vibrant Saffron Orange */
    --secondary-color: #D4622E;      /* Terracotta */
    --accent-color: #FFB347;         /* Warm Gold */
    --dark-color: #1A1A1A;           /* Rich Black */
    --dark-gray: #2D2D2D;            /* Dark Gray */
    --medium-gray: #4A4A4A;          /* Medium Gray */
    --light-gray: #F5F5F5;           /* Light Background */
    --cream: #FFF8F0;                /* Warm Cream */
    --white: #FFFFFF;
    
    /* Typography */
    --font-primary: 'Plus Jakarta Sans', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    
    /* Font Sizes */
    --fs-xs: 0.75rem;      /* 12px */
    --fs-sm: 0.875rem;     /* 14px */
    --fs-base: 1rem;       /* 16px */
    --fs-lg: 1.125rem;     /* 18px */
    --fs-xl: 1.25rem;      /* 20px */
    --fs-2xl: 1.5rem;      /* 24px */
    --fs-3xl: 2rem;        /* 32px */
    --fs-4xl: 2.5rem;      /* 40px */
    --fs-5xl: 3rem;        /* 48px */
    --fs-6xl: 3.75rem;     /* 60px */
    --fs-7xl: 4.5rem;      /* 72px */
    --fs-8xl: 6rem;        /* 96px */
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.24);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--dark-color);
    background-color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    border: none;
    cursor: pointer;
    background: none;
}

/* ===================================
   LOADING ANIMATION
   =================================== */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cream);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.spice-container {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 24px;
}

.spice {
    width: 16px;
    height: 16px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out both;
}

.spice:nth-child(1) {
    animation-delay: -0.32s;
}

.spice:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.loader-text {
    font-family: var(--font-secondary);
    font-size: var(--fs-3xl);
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
    animation: fadeInOut 2s infinite;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 248, 240, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all var(--transition-base);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    padding: 0.75rem 0;
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 8px;
    cursor: pointer;
}

.logo-text {
    font-family: var(--font-secondary);
    font-size: var(--fs-3xl);
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.logo-subtext {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    gap: var(--spacing-xl);
    align-items: center;
}

.nav-link {
    font-size: var(--fs-base);
    font-weight: 500;
    color: var(--dark-gray);
    position: relative;
    transition: color var(--transition-fast);
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-reserve {
    padding: 0.75rem 1.75rem;
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    font-size: var(--fs-base);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
}

.btn-reserve:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 107, 53, 0.4);
    background: var(--secondary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--dark-color);
    border-radius: 2px;
    transition: all var(--transition-base);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    filter: blur(80px);
    animation: floatAnimation 8s ease-in-out infinite;
}

.hero-circle-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.3), transparent);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.hero-circle-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 179, 71, 0.3), transparent);
    bottom: -150px;
    left: -100px;
    animation-delay: 2s;
}

.hero-circle-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(212, 98, 46, 0.2), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

@keyframes floatAnimation {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 1s ease;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: var(--radius-full);
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
    animation: slideInLeft 0.8s ease 0.2s both;
}

.badge-icon {
    font-size: var(--fs-base);
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-title {
    font-family: var(--font-secondary);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    color: var(--dark-color);
}

.title-line {
    display: block;
    animation: slideInLeft 0.8s ease both;
}

.title-line:nth-child(1) { animation-delay: 0.3s; }
.title-line:nth-child(2) { animation-delay: 0.5s; }
.title-line:nth-child(3) { animation-delay: 0.7s; }

.title-highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 20px;
    background: rgba(255, 107, 53, 0.2);
    z-index: -1;
    transform: skewX(-5deg);
}

.hero-description {
    font-size: var(--fs-lg);
    line-height: 1.8;
    color: var(--medium-gray);
    margin-bottom: var(--spacing-xl);
    max-width: 540px;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 1s both;
}

.btn {
    padding: 1rem 2rem;
    font-size: var(--fs-base);
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
    background: var(--secondary-color);
}

.btn-secondary {
    background: transparent;
    color: var(--dark-color);
    border: 2px solid var(--dark-color);
}

.btn-secondary:hover {
    background: var(--dark-color);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-icon {
    font-size: var(--fs-sm);
}

.hero-image-container {
    position: relative;
    animation: fadeInRight 1s ease 0.5s both;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 179, 71, 0.1));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.placeholder-content {
    text-align: center;
    z-index: 1;
}

.placeholder-icon {
    font-size: var(--fs-6xl);
    display: block;
    margin-bottom: var(--spacing-sm);
}

.placeholder-content p {
    color: var(--medium-gray);
    font-weight: 500;
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: floatCard 3s ease-in-out infinite;
}

.card-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 10%;
    left: -10%;
    animation-delay: 1.5s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.card-icon {
    font-size: var(--fs-3xl);
}

.card-number {
    font-size: var(--fs-2xl);
    font-weight: 800;
    color: var(--primary-color);
    font-family: var(--font-secondary);
    line-height: 1;
}

.card-text {
    font-size: var(--fs-sm);
    color: var(--medium-gray);
    font-weight: 500;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: fadeIn 1s ease 1.5s both;
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0%, 100% { transform: translateY(0); opacity: 0; }
    50% { opacity: 1; }
}

.scroll-text {
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--dark-gray);
    writing-mode: vertical-rl;
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===================================
   SECTIONS COMMON
   =================================== */
section {
    padding: var(--spacing-3xl) 0;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: var(--radius-full);
    font-size: var(--fs-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.section-title {
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark-color);
    margin-bottom: var(--spacing-lg);
}

.title-accent {
    color: var(--primary-color);
    display: inline-block;
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about {
    background: var(--white);
}

.about .section-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.about-text {
    font-size: var(--fs-lg);
    line-height: 1.8;
    color: var(--medium-gray);
    margin-bottom: var(--spacing-xl);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.feature-item {
    text-align: center;
}

.feature-number {
    font-family: var(--font-secondary);
    font-size: var(--fs-4xl);
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: var(--spacing-xs);
}

.feature-label {
    font-size: var(--fs-sm);
    color: var(--medium-gray);
    font-weight: 600;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(255, 107, 53, 0.3);
}

.about-image {
    position: relative;
}

.about-img {
    aspect-ratio: 4 / 5;
}

.about-decoration {
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    opacity: 0.2;
    bottom: -50px;
    right: -50px;
    z-index: -1;
    filter: blur(60px);
}

/* ===================================
   MENU SECTION
   =================================== */
.menu {
    background: var(--cream);
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: var(--spacing-2xl);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.menu-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.menu-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.menu-image .image-placeholder {
    border-radius: 0;
    border: none;
}

.menu-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: var(--white);
    font-size: var(--fs-xs);
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    letter-spacing: 1px;
}

.menu-info {
    padding: var(--spacing-lg);
}

.menu-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-sm);
}

.menu-name {
    font-family: var(--font-secondary);
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--dark-color);
}

.menu-price {
    font-size: var(--fs-xl);
    font-weight: 800;
    color: var(--primary-color);
    font-family: var(--font-secondary);
}

.menu-desc {
    font-size: var(--fs-base);
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.menu-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--fs-sm);
    color: var(--medium-gray);
}

.meta-dot {
    color: var(--primary-color);
}

/* ===================================
   GALLERY SECTION
   =================================== */
.gallery {
    background: var(--white);
}

.gallery-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: var(--spacing-md);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-tall {
    grid-row: span 2;
}

.gallery-item .image-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 0;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: var(--spacing-lg);
    transform: translateY(100%);
    transition: transform var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-caption {
    color: var(--white);
    font-size: var(--fs-lg);
    font-weight: 600;
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact {
    background: var(--cream);
}

.contact .section-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
}

.contact-text {
    font-size: var(--fs-lg);
    line-height: 1.8;
    color: var(--medium-gray);
    margin-bottom: var(--spacing-xl);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.info-item {
    display: flex;
    gap: var(--spacing-md);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-xl);
    flex-shrink: 0;
}

.info-details h4 {
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.info-details p {
    font-size: var(--fs-base);
    color: var(--medium-gray);
    line-height: 1.6;
}

.contact-form-container {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: var(--fs-base);
    transition: all var(--transition-base);
    background: var(--light-gray);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
}

.form-group label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: var(--medium-gray);
    font-size: var(--fs-base);
    transition: all var(--transition-fast);
    pointer-events: none;
    background: transparent;
    padding: 0 4px;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -12px;
    left: 12px;
    font-size: var(--fs-sm);
    color: var(--primary-color);
    background: var(--white);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--dark-color);
    color: var(--light-gray);
    padding: var(--spacing-3xl) 0 var(--spacing-lg);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: var(--spacing-3xl);
    padding-bottom: var(--spacing-2xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: var(--spacing-lg);
}

.footer-logo {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: var(--spacing-md);
}

.footer-logo .logo-text {
    color: var(--primary-color);
}

.footer-logo .logo-subtext {
    color: var(--light-gray);
}

.footer-desc {
    font-size: var(--fs-base);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-lg);
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
}

.social-link {
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    font-size: var(--fs-sm);
    font-weight: 600;
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.footer-column h4 {
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--fs-base);
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--primary-color);
}

.footer-column ul li:not(:has(a)) {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--fs-base);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.footer-legal a {
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--primary-color);
}

/* ===================================
   SCROLL REVEAL ANIMATIONS
   =================================== */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll Animation Classes */
.scroll-fade-up {
    opacity: 0;
    transform: translateY(60px);
}

.scroll-fade-up.animate {
    animation: fadeUpScroll 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.scroll-fade-left {
    opacity: 0;
    transform: translateX(-60px);
}

.scroll-fade-left.animate {
    animation: fadeLeftScroll 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.scroll-fade-right {
    opacity: 0;
    transform: translateX(60px);
}

.scroll-fade-right.animate {
    animation: fadeRightScroll 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.scroll-scale {
    opacity: 0;
    transform: scale(0.8);
}

.scroll-scale.animate {
    animation: scaleScroll 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Staggered Animation for Multiple Elements */
.scroll-stagger > * {
    opacity: 0;
    transform: translateY(40px);
}

.scroll-stagger.animate > *:nth-child(1) {
    animation: fadeUpScroll 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0s forwards;
}

.scroll-stagger.animate > *:nth-child(2) {
    animation: fadeUpScroll 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s forwards;
}

.scroll-stagger.animate > *:nth-child(3) {
    animation: fadeUpScroll 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s forwards;
}

.scroll-stagger.animate > *:nth-child(4) {
    animation: fadeUpScroll 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s forwards;
}

@keyframes fadeUpScroll {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeLeftScroll {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeRightScroll {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleScroll {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1200px) {
    .hero-container {
        gap: var(--spacing-2xl);
    }
    
    .floating-card {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .card-1,
    .card-2 {
        right: -5%;
        left: -5%;
    }
}

@media (max-width: 968px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 300px;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        padding: var(--spacing-xl);
        box-shadow: var(--shadow-lg);
        transition: right var(--transition-base);
        gap: var(--spacing-md);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
    
    /* Hero */
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
    
    .hero-content {
        order: 2;
    }
    
    .hero-image-container {
        order: 1;
    }
    
    .floating-card {
        display: none;
    }
    
    /* About */
    .about .section-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
    
    .about-features {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Menu */
    .menu-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-md);
    }
    
    .menu-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
    
    .gallery-large {
        grid-column: span 2;
        grid-row: span 2;
    }
    
    .gallery-tall {
        grid-row: span 1;
    }
    
    /* Contact */
    .contact .section-container {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-top {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-lg);
    }
}

@media (max-width: 640px) {
    /* Typography */
    .hero-title {
        font-size: var(--fs-4xl);
    }
    
    .section-title {
        font-size: var(--fs-3xl);
    }
    
    /* Hero */
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-description {
        font-size: var(--fs-base);
    }
    
    /* About */
    .about-features {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    /* Menu */
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }
    
    .gallery-large,
    .gallery-tall {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    /* Footer */
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-lg: 1rem;
        --spacing-xl: 1.5rem;
        --spacing-2xl: 2rem;
        --spacing-3xl: 3rem;
    }
    
    .hero {
        padding-top: 80px;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .contact-form-container {
        padding: var(--spacing-lg);
    }
}
