/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Image optimization */
img {
    max-width: 100%;
    height: auto;
}

:root {
    /* Color Palette - Dark Theme Middle Eastern Inspired */
    --primary-gold: #D4AF37;
    --secondary-gold: #F4E4BC;
    --deep-red: #8B0000;
    --warm-red: #CD5C5C;
    --earth-brown: #8B4513;
    --cream: #F5F5DC;
    --warm-white: #FFF8DC;
    --dark-brown: #1A1A1A;
    --charcoal: #2C2C2C;
    --light-gray: #3A3A3A;
    --text-dark: #FFFFFF;
    --text-light: #B0B0B0;
    --background-dark: #1A1A1A;
    --background-secondary: #2C2C2C;
    --background-tertiary: #3A3A3A;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Manrope', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    
    /* Shadows */
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.3);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.5);
    
    /* Transitions - Optimized for better performance */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
}

html {
    scroll-behavior: auto; /* Disabled smooth scrolling for better performance */
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-dark);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-gold);
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-family: var(--font-body);
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease; /* Reduced transition time */
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--dark-brown);
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: var(--deep-red);
    color: white;
}

.btn-secondary:hover {
    background: var(--warm-red);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
}

.btn-outline:hover {
    background: var(--primary-gold);
    color: var(--dark-brown);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    /* backdrop-filter: blur(10px); */ /* Removed for better scroll performance */
    z-index: 1000;
    padding: 1rem 0;
    transition: background-color 0.1s ease; /* Further reduced for better performance */
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.98);
    box-shadow: var(--shadow-light);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin: 0;
}

.nav-subtitle {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-left: 0.5rem;
}

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

.nav-logo a {
    display: block;
    transition: transform var(--transition-fast);
}

.nav-logo a:hover {
    transform: scale(1.05);
}

.nav-logo-image {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.2s ease; /* Reduced transition time */
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.2s ease; /* Reduced transition time */
}

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

.nav-link.active {
    color: var(--primary-gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1000;
    position: relative;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.2s ease; /* Reduced transition time */
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)),
                url('images/sahara-platter.avif');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), rgba(139, 0, 0, 0.1));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--cream);
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--cream);
    font-size: 0.9rem;
}

.scroll-indicator i {
    margin-top: 0.5rem;
    font-size: 1.2rem;
}

/* Bounce animation removed for better performance */

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Featured Dishes */
.featured-dishes {
    padding: var(--section-padding);
    background: var(--background-secondary);
}

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

.dish-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.2s ease; /* Reduced transition time */
    height: 100%;
}

.dish-card {
    background: var(--background-tertiary);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: transform 0.2s ease, box-shadow 0.2s ease; /* Reduced transition time */
    border: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.dish-card-link:hover {
    transform: translateY(-3px); /* Reduced movement for better performance */
}

.dish-card-link:hover .dish-card {
    box-shadow: var(--shadow-medium);
}

.dish-image {
    height: 200px;
    overflow: hidden;
}

.dish-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease; /* Reduced transition time */
}

.dish-card-link:hover .dish-image img {
    transform: scale(1.02); /* Reduced scale for better performance */
}

.dish-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}

.dish-content h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.dish-content p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.dish-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-gold);
    margin-top: auto;
}

/* Menu CTA within Featured Dishes */
.featured-dishes .menu-cta {
    text-align: center;
    padding: 2rem;
    background: var(--background-tertiary);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    margin-top: 3rem;
}

.featured-dishes .menu-cta h3 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.featured-dishes .menu-cta p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

/* About Hero Section */
.about-hero {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-top: 80px;
}

.about-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)),
                url('images/sahara-platter.avif');
    background-size: cover;
    background-position: center;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), rgba(139, 0, 0, 0.1));
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.about-hero-title {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-hero-subtitle {
    font-size: 1.3rem;
    color: var(--cream);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* About Section */
.about {
    padding: var(--section-padding);
}

.about-full {
    padding: var(--section-padding);
    background: var(--background-dark);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-image {
    /* position: sticky; */ /* Disabled for better scroll performance */
    /* top: 8rem; */
    align-self: start;
}

.about-text h2 {
    margin-bottom: 1rem;
    font-size: 3rem;
    color: var(--primary-gold);
    font-family: var(--font-heading);
    font-weight: 600;
}

.about-subtitle {
    font-size: 1.2rem;
    color: var(--primary-gold);
    font-style: italic;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.about-features {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature i {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.feature span {
    font-weight: 500;
    color: var(--text-dark);
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

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

.halal-disclaimer {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--background-tertiary);
    border-radius: 8px;
    border-left: 4px solid var(--primary-gold);
}

.halal-disclaimer h4 {
    color: var(--primary-gold);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.halal-disclaimer p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

/* About Page Content */
.about-full .about-text h3 {
    color: var(--primary-gold);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.values-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.values-list li::before {
    content: '•';
    color: var(--primary-gold);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.values-list strong {
    color: var(--text-dark);
}

/* Homepage About CTA */
.about-cta {
    margin-top: 2rem;
    text-align: center;
}

/* Menu Hero Section */
.menu-hero {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-top: 80px;
}

.menu-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)),
                url('images/sahara-platter.avif');
    background-size: cover;
    background-position: center;
}

.menu-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), rgba(139, 0, 0, 0.1));
}

.menu-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.menu-hero-title {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.menu-hero-subtitle {
    font-size: 1.3rem;
    color: var(--cream);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Menu Preview Section */
.menu-preview {
    padding: var(--section-padding);
    background: var(--background-secondary);
}

.menu-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.highlight-card {
    background: var(--background-tertiary);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.highlight-image {
    height: 200px;
    overflow: hidden;
}

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

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

.highlight-content {
    padding: 1.5rem;
}

.highlight-content h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.highlight-content p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.highlight-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-gold);
}

.menu-preview .menu-cta {
    text-align: center;
    padding: 2rem;
    background: var(--background-tertiary);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.menu-preview .menu-cta h3 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.menu-preview .menu-cta p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Menu Section */
.menu-section {
    padding: var(--section-padding);
    background: var(--background-dark);
}

.menu {
    padding: var(--section-padding);
    background: var(--background-secondary);
}

.menu-categories {
    max-width: 800px;
    margin: 0 auto;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    border: 2px solid var(--primary-gold);
    background: transparent;
    color: var(--primary-gold);
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease; /* Reduced transition time */
    font-weight: 500;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary-gold);
    color: var(--dark-brown);
}

.menu-content {
    background: var(--background-tertiary);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.menu-category {
    display: none;
}

.menu-category.active {
    display: block;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--background-secondary);
    transition: all 0.15s ease-out; /* Reduced transition time */
    border-radius: 8px;
    margin: 0.25rem 0;
    padding: 1rem;
}

.menu-item:last-child {
    border-bottom: none;
}

.item-info h3 {
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.item-info p {
    margin: 0;
    font-size: 0.9rem;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid var(--background-tertiary);
}

.menu-item:hover {
    background-color: rgba(212, 175, 55, 0.05);
    transform: translateX(1px); /* Reduced movement for better performance */
    border-left: 2px solid var(--primary-gold);
}

/* Menu Item Links */
.menu-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all var(--transition-fast);
}

.menu-item-link:hover {
    text-decoration: none;
    color: inherit;
}

.menu-item-link:hover .menu-item {
    background-color: rgba(212, 175, 55, 0.1);
    transform: translateX(2px);
    border-left: 3px solid var(--primary-gold);
    box-shadow: var(--shadow-medium);
}

.menu-item:last-child {
    border-bottom: none;
}

.item-image {
    flex: 0 0 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-small);
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease; /* Reduced transition time */
}

.item-image:hover img {
    transform: scale(1.02); /* Reduced scale for better performance */
}

.item-info {
    flex: 1;
    min-width: 0;
}

.item-info h3 {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.item-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.item-price {
    flex: 0 0 auto;
    color: var(--primary-gold);
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

/* Responsive Menu Items */
@media (max-width: 768px) {
    .menu-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 0.75rem;
    }
    
    .item-image {
        flex: none;
        width: 100%;
        height: 120px;
        align-self: center;
    }
    
    .item-info {
        width: 100%;
    }
    
    .item-info h3 {
        font-size: 1rem;
    }
    
    .item-info p {
        font-size: 0.85rem;
    }
    
    .item-price {
        align-self: flex-end;
        font-size: 1rem;
    }
    
    /* Location Page Responsive */
    .location-grid {
        display: flex !important;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .location-hero-title {
        font-size: 2.5rem;
    }
    
    .location-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .location-description,
    .location-info-section {
        padding: 1.5rem;
    }
    
    .location-indoor,
    .location-outdoor {
        min-height: 250px;
    }
    
    /* Contact Page Responsive */
    .contact-grid {
        display: flex !important;
        flex-direction: column;
        gap: 2rem;
    }
    
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-info-sections {
        display: flex !important;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .contact-info-section {
        margin-bottom: 1rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .contact-image {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .menu-item {
        padding: 0.5rem;
    }
    
    .item-image {
        height: 100px;
    }
    
    .item-info h3 {
        font-size: 0.95rem;
    }
    
    .item-info p {
        font-size: 0.8rem;
    }
    
    .item-price {
        font-size: 0.95rem;
    }
    
    /* Contact Page Extra Small Screens */
    .contact-grid {
        gap: 1.5rem;
    }
    
    .contact-info-sections {
        gap: 1rem;
    }
    
    .contact-info-section {
        padding: 1.5rem;
        margin-bottom: 0.5rem;
    }
}

/* Menu CTA Section */
.menu-cta {
    padding: var(--section-padding);
    background: var(--background-secondary);
    text-align: center;
}

.menu-cta h3 {
    color: var(--text-light);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.menu-cta p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 160px;
}

.cta-content h2 {
    margin-bottom: 1rem;
    color: var(--primary-gold);
}

.cta-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Page Styles */
.contact-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.contact-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)),
                url('images/sahara-platter.avif');
    background-size: cover;
    background-position: center;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-gold);
}

.contact-hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    opacity: 0.9;
}

.contact-main {
    padding: 4rem 0;
    background: var(--background-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto 4rem auto;
}

.contact-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-image {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

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

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

.contact-form-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form-container {
    width: 100%;
    background: var(--background-tertiary);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
}

.form-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--background-secondary);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color var(--transition-fast);
    background: var(--background-primary);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

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

.contact-info-sections {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.contact-info-section {
    text-align: center;
    background: var(--background-tertiary);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.location-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.location-item i {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.location-name {
    font-weight: 600;
    color: var(--text-dark);
}

.location-phone {
    color: var(--text-light);
    font-size: 0.95rem;
}

.location-address-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease-out;
    position: relative;
    display: inline-block;
}

.location-address-link:hover {
    color: var(--primary-gold);
}

.location-address-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary-gold);
    transition: width 0.2s ease-out;
}

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

.email-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease-out;
    position: relative;
    display: inline-block;
}

.email-link:hover {
    color: var(--primary-gold);
}

.email-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary-gold);
    transition: width 0.2s ease-out;
}

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

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.contact-item i {
    color: var(--primary-gold);
    font-size: 1.1rem;
}

.contact-item span {
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Location Page Styles */
.location-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.location-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)),
                url('images/sahara-platter.avif');
    background-size: cover;
    background-position: center;
}

.location-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.location-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.location-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-gold);
}

.location-hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    opacity: 0.9;
}

.location-main {
    padding: 4rem 0;
    background: var(--background-primary);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.location-description {
    background: var(--background-tertiary);
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-light);
}

.location-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.location-cta {
    margin-top: auto;
}

.location-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: transform var(--transition-fast);
}

.location-image:hover {
    transform: translateY(-5px);
}

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

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

.location-indoor {
    min-height: 300px;
}

.location-outdoor {
    min-height: 300px;
}

.location-info-section {
    background: var(--background-tertiary);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
}

.info-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    text-align: center;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-item strong {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
}

.info-item span {
    color: var(--text-light);
    font-size: 0.95rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hours-list span {
    color: var(--text-light);
    font-size: 0.95rem;
}

.info-link {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.2s ease-out;
    position: relative;
    display: inline-block;
}

.info-link:hover {
    color: var(--primary-gold);
}

.info-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary-gold);
    transition: width 0.2s ease-out;
}

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

/* Location Section */
.location {
    padding: var(--section-padding);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.location-info h2 {
    margin-bottom: 2rem;
}

.location-details {
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.detail-item i {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-top: 0.25rem;
}

.detail-item h3 {
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.detail-item p {
    margin: 0;
}

.location-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.location-map {
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    position: relative;
}

.map-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.map-click-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    text-decoration: none;
    transition: all 0.3s ease;
}

.map-pin {
    background: var(--primary-gold);
    color: var(--background-dark);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.map-click-overlay:hover .map-pin {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    background: var(--secondary-gold);
}

.map-click-overlay:hover {
    transform: scale(1.05);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: var(--background-tertiary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-gold);
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-methods {
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-method i {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-top: 0.25rem;
}

.contact-method h3 {
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.contact-method p {
    margin: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-gold);
    color: var(--dark-brown);
    border-radius: 50%;
    text-decoration: none;
    transition: transform var(--transition-fast);
}

.social-link:hover {
    transform: translateY(-2px);
}

.contact-form {
    background: var(--background-tertiary);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--background-secondary);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
    background: var(--background-dark);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

/* Footer */
.footer {
    background: var(--background-dark);
    color: var(--text-dark);
    padding: 2rem 0;
}

/* Location Section */
.footer-location {
    background: var(--background-dark);
    padding: 0;
    margin-bottom: 2rem;
}

.location-header {
    margin-bottom: 1.5rem;
}

.location-header h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.location-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.location-tab {
    background: var(--background-secondary);
    color: var(--text-light);
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.location-tab:hover,
.location-tab.active {
    background: var(--primary-gold);
    color: var(--dark-brown);
}

.location-content {
    background: var(--background-secondary);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-medium);
    display: flex;
    gap: 2rem;
    align-items: stretch;
}

.location-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-small);
    flex: 0 0 35%;
}

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

.location-details {
    flex: 0 0 65%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 0;
    box-sizing: border-box;
    margin-bottom: 0;
    align-self: stretch;
}

.location-details-content {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-right: 32px;
}

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


.location-header-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.location-title-group {
    display: flex;
    flex-direction: column;
}

.location-details h4 {
    color: var(--text-dark);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.location-details .location-subtitle {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
}

.directions-btn {
    display: inline-block;
    background: var(--background-tertiary);
    color: var(--text-light);
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    align-self: center;
    position: relative;
    z-index: 10;
    cursor: pointer;
}

.directions-btn:hover {
    background: var(--primary-gold);
    color: var(--dark-brown);
}

.location-info {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--background-tertiary);
    display: flex;
    gap: 2rem;
}

.location-info .address-section,
.location-info .contact-section {
    flex: 1;
}

.location-info p {
    margin-bottom: 0.75rem;
    color: var(--text-light);
    line-height: 1.4;
    font-size: 0.9rem;
}

.location-info strong {
    color: var(--text-dark);
    font-weight: 600;
}

.hours-status {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hours-status-text {
    color: var(--text-dark);
    font-size: 0.9rem;
    margin: 0;
}

.hours-link {
    color: var(--primary-gold);
    text-decoration: none;
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

.hours-link:hover {
    color: var(--secondary-gold);
}

.order-btn {
    display: inline-block;
    background: var(--primary-gold);
    color: var(--dark-brown);
    padding: 12px 24px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    align-self: flex-start;
}

.order-btn:hover {
    background: var(--secondary-gold);
    transform: translateY(-1px);
}

.footer-bottom-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    width: 100%;
    box-sizing: border-box;
}

.footer-bottom-section .hours-status {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Hours Animation */
.location-info-container {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.location-info-container.hidden {
    opacity: 0;
    transform: translateY(-10px);
}

.hours-info-container {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0;
    padding: 2rem 2rem 0 0;
    box-sizing: border-box;
}

.hours-info-container.visible {
    opacity: 1;
    transform: translateY(0);
    display: flex;
}

.hours-info-container .footer-bottom-section {
    margin-top: 0;
}

.location-details-content {
    position: relative;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.hours-list .day {
    font-weight: 600;
    color: var(--text-dark);
}

.hours-divider {
    border-top: 1px solid var(--background-tertiary);
    margin: 1rem 0;
}

/* Footer Links Section */
.footer-links {
    background: var(--background-secondary);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-medium);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-links-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 700;
}

.footer-logo span {
    color: var(--text-light);
    font-size: 0.8rem;
    display: block;
    margin-top: 0.25rem;
}

.footer-nav {
    display: flex;
    gap: 3rem;
}

.nav-column {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-column a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.nav-column a:hover {
    color: var(--primary-gold);
}

.footer-cta .order-btn {
    background: var(--primary-gold);
    color: var(--dark-brown);
    padding: 12px 24px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.footer-cta .order-btn:hover {
    background: var(--secondary-gold);
    transform: translateY(-1px);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid var(--background-tertiary);
    padding-top: 1rem;
    display: flex;
    justify-content: flex-start;
    gap: 2rem;
    margin-top: 0;
}

.footer-bottom a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.2s ease;
}

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

/* Reservation Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.reservation-modal {
    background: var(--background-tertiary);
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform var(--transition-fast);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow-heavy);
}

.modal-overlay.active .reservation-modal {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.modal-close:hover {
    background: var(--background-secondary);
    color: var(--text-dark);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.modal-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
}

.modal-form-title {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.modal-form-group {
    display: flex;
    flex-direction: column;
}

.modal-form-group label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.modal-form-group input,
.modal-form-group select {
    padding: 12px 16px;
    border: 2px solid var(--background-secondary);
    border-radius: 8px;
    background: var(--background-dark);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

.modal-form-group input:focus,
.modal-form-group select:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.modal-form-group select {
    cursor: pointer;
}

.modal-submit-btn {
    background: var(--deep-red);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    margin-top: 1rem;
}

.modal-submit-btn:hover {
    background: var(--warm-red);
    transform: translateY(-2px);
}

.modal-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.modal-large-parties {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--background-secondary);
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

.modal-large-parties a {
    color: var(--primary-gold);
    text-decoration: none;
}

.modal-large-parties a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--background-tertiary);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-medium);
        padding: 2rem 0;
        border-top: 1px solid rgba(212, 175, 55, 0.1);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .about-content,
    .location-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        position: static;
        order: -1;
    }
    
    .about-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-row,
    .modal-form-row {
        grid-template-columns: 1fr;
    }
    
    .location-buttons {
        justify-content: center;
    }
    
    .dishes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .category-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 200px;
    }
    
    .reservation-modal {
        padding: 1.5rem;
        margin: 2rem 1rem;
        max-height: 85vh;
        overflow-y: auto;
        width: 95%;
    }
    
    .modal-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .modal-form {
        gap: 1rem;
    }
    
    .modal-form input,
    .modal-form select {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .modal-submit-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .dishes-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .menu-content,
    .contact-form {
        padding: 1.5rem;
    }
    
    .reservation-modal {
        padding: 1.25rem;
        margin: 1rem 0.5rem;
        max-height: 80vh;
        width: 98%;
    }
    
    .modal-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .modal-form {
        gap: 0.75rem;
    }
    
    .modal-form input,
    .modal-form select {
        padding: 0.6rem;
        font-size: 0.85rem;
    }
    
    .modal-submit-btn {
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
        margin-top: 0.75rem;
    }
    
    /* Footer Responsive */
    .location-content {
        flex-direction: column;
        gap: 2rem;
        min-height: auto;
    }
    
    .location-map {
        height: 300px;
    }
    
    .location-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-bottom-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .hours-status {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Tablet breakpoint */
@media (max-width: 768px) {
    .location-content {
        gap: 1.5rem;
        min-height: auto;
        padding: 1.5rem;
    }
    
    .location-map {
        flex: 0 0 35%;
    }
    
    .location-details {
        flex: 0 0 65%;
        height: auto;
    }
    
    .location-header-section {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        justify-content: space-between;
    }
    
    .location-info {
        flex-direction: column;
        gap: 1rem;
        padding-bottom: 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .hours-info-container {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        height: auto;
        overflow-y: auto;
        margin-top: 0;
        background: var(--background-tertiary);
        border-radius: 8px;
        padding: 1rem;
    }
    
    .hours-list {
        margin: 0;
        padding: 0;
        list-style: none;
        width: 100%;
    }
    
    .hours-list li {
        padding: 0.4rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 0.9rem;
        line-height: 1.2;
    }
    
    .hours-list li:last-child {
        border-bottom: none;
    }
    
    .hours-status {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }
    
    .location-details-content {
        position: relative;
        height: auto;
    }
    
    .footer-bottom-section {
        justify-content: space-between;
        gap: 1rem;
    }
    
    .footer-bottom-section .hours-status {
        gap: 0.75rem;
    }
}

/* Mobile breakpoint */
@media (max-width: 480px) {
    .location-content {
        padding: 1rem;
        gap: 1rem;
    }
    
    .location-map {
        flex: 0 0 35%;
    }
    
    .location-details {
        flex: 0 0 65%;
        height: auto;
    }
    
    .location-header-section {
        flex-direction: row;
        align-items: center;
        gap: 0.75rem;
        justify-content: space-between;
    }
    
    .location-details h4 {
        font-size: 1.1rem;
    }
    
    .location-info {
        padding-bottom: 0.25rem;
        margin-bottom: 0.25rem;
    }
    
    .hours-info-container {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        height: auto;
        overflow-y: auto;
        margin-top: 0;
        background: var(--background-tertiary);
        border-radius: 6px;
        padding: 0.75rem;
    }
    
    .hours-list {
        margin: 0;
        padding: 0;
        list-style: none;
        width: 100%;
    }
    
    .hours-list li {
        padding: 0.3rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 0.85rem;
        line-height: 1.1;
    }
    
    .hours-list li:last-child {
        border-bottom: none;
    }
    
    .hours-status {
        flex-direction: row;
        align-items: center;
        gap: 0.75rem;
    }
    
    .location-details-content {
        position: relative;
        height: auto;
    }
    
    .location-details .location-subtitle {
        font-size: 0.9rem;
    }
    
    .location-info p {
        font-size: 0.85rem;
    }
    
    .footer-bottom-section {
        justify-content: space-between;
        gap: 1rem;
    }
    
    .footer-bottom-section .hours-status {
        gap: 0.5rem;
    }
    
    .hours-status-text {
        font-size: 0.85rem;
    }
    
    .hours-link {
        font-size: 0.85rem;
    }
    
    .order-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .directions-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .footer-links-top {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-nav {
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Animation Classes - Optimized for better performance */
.fade-in {
    opacity: 0;
    transform: translateY(20px); /* Reduced distance */
    transition: all 0.3s ease; /* Reduced duration */
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-30px); /* Reduced distance */
    transition: all 0.3s ease; /* Reduced duration */
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(30px); /* Reduced distance */
    transition: all 0.3s ease; /* Reduced duration */
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-gold);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--background-tertiary);
    color: var(--text-dark);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-medium);
    z-index: 10000;
    max-width: 400px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.notification-close {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-close:hover {
    color: var(--text-dark);
}

.notification-success {
    border-left: 4px solid #4CAF50;
}

.notification-error {
    border-left: 4px solid #f44336;
}

.notification-info {
    border-left: 4px solid var(--primary-gold);
}

/* VIP Popup Styles */
.vip-popup {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* backdrop-filter: blur(5px); */ /* Removed for better performance */
}

.vip-popup-content {
    position: relative;
    background-color: var(--background-secondary);
    margin: 5% auto;
    width: 90%;
    max-width: 800px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    display: flex;
    overflow: hidden;
    animation: vipSlideIn 0.3s ease-out;
}

@keyframes vipSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.vip-popup-left {
    flex: 1;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 50%, var(--accent-gold) 100%);
    position: relative;
    min-height: 500px;
    overflow: hidden;
}

.vip-popup-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    width: 100%;
    text-align: center;
}

.vip-popup-logo img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.vip-popup-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 500"><defs><pattern id="moroccan" patternUnits="userSpaceOnUse" width="80" height="80"><path d="M40,0 L60,20 L40,40 L20,20 Z" fill="%23D4AF37" opacity="0.2"/><path d="M0,40 L20,60 L40,40 L20,20 Z" fill="%23B8860B" opacity="0.15"/><path d="M40,40 L60,60 L40,80 L20,60 Z" fill="%23D4AF37" opacity="0.2"/><path d="M80,40 L100,60 L80,80 L60,60 Z" fill="%23B8860B" opacity="0.15"/><circle cx="40" cy="40" r="15" fill="none" stroke="%23D4AF37" stroke-width="2" opacity="0.3"/><circle cx="0" cy="0" r="8" fill="%23D4AF37" opacity="0.2"/><circle cx="80" cy="0" r="8" fill="%23B8860B" opacity="0.2"/><circle cx="0" cy="80" r="8" fill="%23B8860B" opacity="0.2"/><circle cx="80" cy="80" r="8" fill="%23D4AF37" opacity="0.2"/></pattern></defs><rect width="400" height="500" fill="url(%23moroccan)"/></svg>');
    background-size: cover;
    background-position: center;
    z-index: 1;
    filter: blur(1.5px);
}

.vip-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.4) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.vip-popup-brand {
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.1;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.vip-popup-tagline {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    letter-spacing: 1px;
    max-width: 200px;
    line-height: 1.4;
}

.vip-popup-decoration {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vip-popup-decoration::before {
    content: '✦';
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
    font-weight: bold;
}

.vip-popup-decoration-bottom {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vip-popup-decoration-bottom::before {
    content: '✦';
    color: rgba(255, 255, 255, 0.4);
    font-size: 1rem;
    font-weight: bold;
}

.vip-popup-right {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--background-secondary);
}

.vip-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-light);
    cursor: pointer;
    z-index: 1;
    transition: color 0.2s ease;
}

.vip-close:hover {
    color: var(--text-dark);
}

.vip-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-gold);
    margin: 0 0 1rem 0;
    text-align: center;
}

.vip-subtitle {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    text-align: center;
    font-weight: 500;
}

.vip-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0 0 1.5rem 0;
}

.vip-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.vip-form input,
.vip-form select {
    padding: 0.75rem;
    border: 1px solid var(--background-tertiary);
    border-radius: 6px;
    font-size: 0.95rem;
    background: var(--background-primary);
    color: var(--text-dark);
    transition: border-color 0.2s ease;
}

.vip-form input:focus,
.vip-form select:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.vip-form input::placeholder {
    color: var(--text-light);
}

.birthday-row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.birthday-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.birthday-selects {
    display: flex;
    gap: 0.5rem;
}

.birthday-month,
.birthday-day {
    flex: 1;
}

.vip-disclaimer {
    margin-bottom: 1.5rem;
}

.vip-disclaimer p {
    font-size: 0.75rem;
    color: var(--text-light);
    line-height: 1.4;
    margin: 0;
}

.vip-signup-btn {
    background: var(--primary-gold);
    color: var(--dark-brown);
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-bottom: 1rem;
}

.vip-signup-btn:hover {
    background: var(--secondary-gold);
}

.vip-footer {
    text-align: center;
}

.vip-terms {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    display: block;
}

.vip-terms:hover {
    color: var(--text-dark);
}

/* VIP Popup Responsive */
@media (max-width: 768px) {
    .vip-popup-content {
        flex-direction: column;
        margin: 15% auto;
        width: 90%;
        max-width: 450px;
        max-height: 85vh;
        overflow-y: auto;
    }
    
    .vip-popup-left {
        min-height: 150px;
        flex-shrink: 0;
    }
    
    .vip-popup-brand {
        font-size: 2rem;
        letter-spacing: 1px;
        margin-bottom: 0.5rem;
    }
    
    .vip-popup-tagline {
        font-size: 0.9rem;
        max-width: 160px;
    }
    
    .vip-popup-decoration {
        width: 40px;
        height: 40px;
        top: 1rem;
        right: 1rem;
    }
    
    .vip-popup-decoration::before {
        font-size: 1rem;
    }
    
    .vip-popup-decoration-bottom {
        width: 30px;
        height: 30px;
        bottom: 1rem;
        left: 1rem;
    }
    
    .vip-popup-right {
        padding: 1.25rem;
        flex-shrink: 0;
    }
    
    .vip-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .vip-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .vip-form {
        gap: 0.75rem;
    }
    
    .vip-form input,
    .vip-form select {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .birthday-row {
        gap: 0.5rem;
    }
    
    .birthday-selects {
        gap: 0.5rem;
    }
    
    .vip-signup-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        margin-top: 1rem;
    }
    
    .vip-disclaimer {
        font-size: 0.75rem;
        margin-top: 0.75rem;
    }
    
    .vip-close {
        z-index: 1000;
        font-size: 1.75rem;
        padding: 0.5rem;
        background: rgba(0, 0, 0, 0.1);
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .vip-popup-content {
        margin: 10% auto;
        width: 95%;
        max-height: 80vh;
    }
    
    .vip-popup-left {
        min-height: 120px;
    }
    
    .vip-popup-right {
        padding: 1rem;
    }
    
    .vip-title {
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
    }
    
    .vip-subtitle {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }
    
    .vip-popup-brand {
        font-size: 1.75rem;
        margin-bottom: 0.25rem;
    }
    
    .vip-popup-tagline {
        font-size: 0.8rem;
        max-width: 140px;
    }
    
    .vip-form {
        gap: 0.5rem;
    }
    
    .vip-form input,
    .vip-form select {
        padding: 0.6rem;
        font-size: 0.85rem;
    }
    
    .birthday-row {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .birthday-selects {
        gap: 0.25rem;
    }
    
    .vip-signup-btn {
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
        margin-top: 0.75rem;
    }
    
    .vip-disclaimer {
        font-size: 0.7rem;
        margin-top: 0.5rem;
    }
    
    .vip-close {
        z-index: 1000;
        font-size: 1.5rem;
        padding: 0.4rem;
        background: rgba(0, 0, 0, 0.1);
        border-radius: 50%;
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Terms and Policies Page Styles */
.terms-hero {
    position: relative;
    height: 50vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.terms-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)),
                url('images/sahara-platter.avif');
    background-size: cover;
    background-position: center;
}

.terms-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.terms-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.terms-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-gold);
}

.terms-hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.9;
}

.terms-main {
    padding: 4rem 0;
    background: var(--background-primary);
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.terms-toc {
    background: var(--background-tertiary);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-light);
}

.terms-toc h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.terms-toc ul {
    list-style: none;
    padding: 0;
}

.terms-toc li {
    margin-bottom: 0.5rem;
}

.terms-toc a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.terms-toc a:hover {
    color: var(--primary-gold);
}

.terms-section {
    margin-bottom: 3rem;
    background: var(--background-tertiary);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
}

.terms-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
    border-bottom: 2px solid var(--primary-gold);
    padding-bottom: 1rem;
}

.terms-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 2rem 0 1rem 0;
}

.terms-text {
    color: var(--text-dark);
    line-height: 1.7;
}

.terms-text p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.terms-text ul {
    margin: 1rem 0 1.5rem 2rem;
}

.terms-text li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.terms-text strong {
    color: var(--text-dark);
    font-weight: 600;
}

.terms-text .contact-details {
    background: var(--background-primary);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.terms-text .contact-details .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    justify-content: flex-start;
}

.terms-text .contact-details .contact-item:last-child {
    margin-bottom: 0;
}

.terms-text .contact-details .contact-item i {
    color: var(--primary-gold);
    font-size: 1.1rem;
    width: 20px;
}

.terms-text .contact-details .contact-item span {
    color: var(--text-dark);
    font-weight: 500;
}

/* Responsive styles for terms page */
@media (max-width: 768px) {
    .terms-hero-title {
        font-size: 2.5rem;
    }

    .terms-hero-subtitle {
        font-size: 1rem;
    }

    .terms-content {
        padding: 0 1rem;
    }

    .terms-section {
        padding: 1.5rem;
    }

    .terms-section h2 {
        font-size: 2rem;
    }

    .terms-toc {
        padding: 1.5rem;
    }
}

/* Skip Navigation Link */
.skip-nav {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-gold);
    color: var(--dark-brown);
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    z-index: 1000;
    transition: top var(--transition-fast);
}

.skip-nav:focus {
    top: 6px;
}

/* Reviews Section Styles */
.reviews {
    padding: 4rem 0;
    background: var(--background-secondary);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: var(--background-tertiary);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    transition: transform var(--transition-fast);
}

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

.featured-review {
    grid-row: span 2;
    background: linear-gradient(135deg, var(--background-tertiary) 0%, rgba(218, 165, 32, 0.05) 100%);
    border: 2px solid var(--primary-gold);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviewer-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-initial {
    color: var(--dark-brown);
    font-weight: 600;
    font-size: 1.2rem;
}

.reviewer-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 0.25rem 0;
}

.reviewer-activity {
    font-size: 0.9rem;
    color: var(--text-light);
}

.review-rating {
    text-align: right;
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.stars i {
    color: var(--primary-gold);
    font-size: 0.9rem;
}

.review-date {
    font-size: 0.85rem;
    color: var(--text-light);
}

.review-content {
    margin-top: 1rem;
}

.review-type {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-style: italic;
}

.review-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.review-categories {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.category-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.category-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.category-stars {
    display: flex;
    gap: 0.15rem;
}

.category-stars i {
    color: var(--primary-gold);
    font-size: 0.8rem;
}

.review-image {
    margin-top: 1rem;
}

.review-food-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

/* FAQ Section Styles */
.faq {
    padding: 4rem 0;
    background: var(--background-primary);
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--background-tertiary);
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-light);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: background-color var(--transition-fast);
}

.faq-question:hover {
    background: rgba(218, 165, 32, 0.05);
}

.faq-question i {
    color: var(--primary-gold);
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem 2rem;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

/* Responsive styles for reviews and FAQ */
@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .featured-review {
        grid-row: span 1;
    }
    
    .review-categories {
        flex-direction: column;
        gap: 1rem;
    }
    
    .category-rating {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .faq-question {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1rem 1.5rem;
    }
}