/* =============================================
   East Moon Asian Bistro & Sushi - Main Styles
   Mobile-First, Conversion-Focused Design
   ============================================= */

/* CSS Variables */
:root {
    --primary: #c41e3a;
    --primary-dark: #a01830;
    --primary-light: #e63950;
    --secondary: #1a1a2e;
    --accent: #d4af37;
    --accent-light: #f4d03f;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --text-muted: #767676;
    --bg-light: #fafafa;
    --bg-cream: #fdf8f3;
    --bg-dark: #1a1a2e;
    --white: #ffffff;
    --border: #e5e5e5;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-hover: 0 8px 30px rgba(196,30,58,0.2);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
}

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

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

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    padding-bottom: 70px;
}

@media (min-width: 768px) {
    body {
        padding-bottom: 0;
    }
}

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

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

ul, ol {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

@media (min-width: 768px) {
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.5rem; }
    h3 { font-size: 1.75rem; }
}

p {
    margin-bottom: 1rem;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

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

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

.btn-secondary:hover {
    background: var(--text-dark);
    color: var(--white);
}

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

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

.btn-gold {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: var(--secondary);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212,175,55,0.4);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.btn-icon {
    width: 50px;
    height: 50px;
    padding: 0;
    border-radius: 50%;
}

/* =============================================
   HEADER & NAVIGATION
   ============================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dark);
}

.logo a:hover {
    opacity: 0.9;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.logo-text span {
    color: var(--primary);
}

/* Desktop Navigation */
.nav-desktop {
    display: none;
}

@media (min-width: 992px) {
    .nav-desktop {
        display: flex;
        align-items: center;
        gap: 32px;
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

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

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

.header-cta {
    display: none;
}

@media (min-width: 992px) {
    .header-cta {
        display: flex;
    }
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    cursor: pointer;
    background: none;
    border: none;
}

@media (min-width: 992px) {
    .menu-toggle {
        display: none;
    }
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
}

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

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

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

/* Mobile Navigation */
.nav-mobile {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 70px;
    background: var(--white);
    padding: 30px 20px;
    transform: translateX(-100%);
    transition: var(--transition);
    overflow-y: auto;
    z-index: 999;
}

.nav-mobile.active {
    transform: translateX(0);
}

@media (min-width: 992px) {
    .nav-mobile {
        display: none;
    }
}

.nav-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nav-mobile-links a {
    display: block;
    padding: 16px 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border);
}

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

.nav-mobile-cta {
    margin-top: 30px;
}

.nav-mobile-cta .btn {
    width: 100%;
}

/* Mobile Bottom Bar */
.mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    display: flex;
    z-index: 1001;
    padding: 8px 0;
    padding-bottom: calc(8px + env(safe-area-inset-bottom));
}

@media (min-width: 768px) {
    .mobile-bottom-bar {
        display: none;
    }
}

.mobile-bottom-bar a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
}

.mobile-bottom-bar a i {
    font-size: 1.25rem;
}

.mobile-bottom-bar a:hover,
.mobile-bottom-bar a.active {
    color: var(--primary);
}

.mobile-bottom-bar .order-btn {
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius);
    margin: 4px;
    flex: 1.5;
}

.mobile-bottom-bar .order-btn:hover {
    background: var(--primary-dark);
    color: var(--white);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 70px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: 3px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 24px;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 4.5rem;
    }
}

.hero h1 span {
    color: var(--accent);
    text-shadow: 0 2px 20px rgba(212, 175, 55, 0.4);
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.35rem;
    }
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

@media (min-width: 480px) {
    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }
}

.hero-cta .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.hero-cta .btn-secondary:hover {
    background: var(--white);
    color: var(--text-dark);
}

.hero-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: none;
}

.hero-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-info-item i {
    color: var(--accent);
    font-size: 1.25rem;
}

/* =============================================
   POPULAR PICKS SECTION
   ============================================= */
.popular-picks {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-desc {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.picks-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 576px) {
    .picks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .picks-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pick-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.pick-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.pick-card:hover .pick-image img {
    transform: scale(1.1);
}

.pick-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pick-content {
    padding: 20px;
}

.pick-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.pick-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.pick-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pick-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.pick-cta {
    background: var(--primary);
    color: var(--white);
    padding: 10px 16px;
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 600;
}

.pick-cta:hover {
    background: var(--primary-dark);
}

/* =============================================
   MENU CATEGORIES SECTION
   ============================================= */
.menu-categories {
    padding: 80px 0;
    background: var(--white);
}

.categories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.category-card {
    position: relative;
    height: 320px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: var(--transition);
}

.category-card:hover .category-overlay {
    background: linear-gradient(to top, rgba(196,30,58,0.9) 0%, rgba(0,0,0,0.4) 100%);
}

.category-overlay h3 {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.category-overlay p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.category-links {
    display: flex;
    gap: 12px;
}

.category-links a {
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.2);
    transition: var(--transition);
}

.category-links a:hover {
    background: var(--white);
    color: var(--primary);
}

/* =============================================
   EXPERIENCE SECTION
   ============================================= */
.experience {
    padding: 80px 0;
    background: var(--bg-cream);
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .experience-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.experience-content h2 {
    margin-bottom: 20px;
}

.experience-content p {
    color: var(--text-light);
    margin-bottom: 24px;
}

.experience-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.experience-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.experience-feature i {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.experience-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.experience-images img {
    border-radius: var(--radius);
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.experience-images img:first-child {
    grid-row: span 2;
    height: 100%;
}

/* =============================================
   REVIEWS SECTION
   ============================================= */
.reviews {
    padding: 80px 0;
    background: var(--secondary);
}

.reviews .section-subtitle {
    color: var(--accent);
}

.reviews .section-header h2 {
    color: var(--white);
}

.reviews .section-desc {
    color: rgba(255,255,255,0.7);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.review-card {
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.1);
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.review-header .review-stars {
    margin-bottom: 0;
}

.review-stars {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.review-card p {
    color: rgba(255,255,255,0.85);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
}

.review-author-info h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 4px;
}

.review-author-info span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.reviews-cta {
    text-align: center;
}

/* =============================================
   LOCATION SECTION
   ============================================= */
.location {
    padding: 80px 0;
    background: var(--white);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .location-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.location-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 350px;
    background: var(--bg-light);
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.location-info h2 {
    margin-bottom: 24px;
}

.info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.info-item i {
    width: 44px;
    height: 44px;
    background: var(--bg-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.info-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.location-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--secondary);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-brand .logo-text {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.footer-brand .logo-text span {
    color: var(--accent);
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

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

.footer-hours p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.footer-hours strong {
    color: var(--white);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
    margin-bottom: 0;
}

.footer-bottom a {
    color: rgba(255,255,255,0.7);
}

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

/* =============================================
   PAGE BANNER
   ============================================= */
.page-banner {
    position: relative;
    height: 300px;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .page-banner {
        height: 350px;
    }
}

.page-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.page-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.page-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26,26,46,0.9) 0%, rgba(22,33,62,0.85) 100%);
}

.page-banner-content {
    position: relative;
    z-index: 2;
}

.page-banner h1 {
    color: var(--white);
    margin-bottom: 12px;
}

.page-banner p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.breadcrumb a,
.breadcrumb span {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb .separator {
    color: rgba(255,255,255,0.4);
}

/* =============================================
   MENU PAGE
   ============================================= */
.menu-nav {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 70px;
    z-index: 100;
    overflow-x: auto;
}

.menu-nav-inner {
    display: flex;
    gap: 8px;
    padding: 16px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-nav a {
    padding: 10px 18px;
    white-space: nowrap;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    background: var(--bg-light);
    border-radius: 30px;
    transition: var(--transition);
}

.menu-nav a:hover,
.menu-nav a.active {
    background: var(--primary);
    color: var(--white);
}

.menu-section {
    padding: 60px 0;
}

.menu-section:nth-child(even) {
    background: var(--bg-light);
}

.menu-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 16px;
}

.menu-section-header h2 {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-section-header h2 i {
    color: var(--primary);
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 576px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.menu-item {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.menu-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.menu-item-image {
    height: 160px;
    overflow: hidden;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.menu-item:hover .menu-item-image img {
    transform: scale(1.1);
}

.menu-item-content {
    padding: 16px;
}

.menu-item-content h4 {
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.menu-item-content p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 12px;
    line-height: 1.5;
}

.menu-item-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-item-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
}

.menu-item-tag {
    background: var(--bg-light);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--text-light);
}

/* =============================================
   ORDER PAGE
   ============================================= */
.order-page {
    padding: 40px 0 80px;
    background: var(--bg-light);
    min-height: calc(100vh - 70px);
}

.order-notice {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.order-notice i {
    font-size: 1.5rem;
}

.order-notice-content h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.order-notice-content p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.order-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 30px;
    justify-content: center;
}

.order-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.order-benefit i {
    color: var(--primary);
    font-size: 1.25rem;
}

.order-frame-container {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 600px;
}

.order-frame-container iframe {
    width: 100%;
    height: 800px;
    border: 0;
}

.order-fallback {
    text-align: center;
    padding: 80px 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.order-fallback i {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 24px;
}

.order-fallback h2 {
    margin-bottom: 16px;
}

.order-fallback p {
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.order-fallback .btn {
    font-size: 1.2rem;
    padding: 20px 50px;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-intro {
    padding: 80px 0;
    background: var(--white);
}

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

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.about-images img {
    border-radius: var(--radius);
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.about-images img:first-child {
    grid-column: span 2;
    height: 250px;
}

.about-values {
    padding: 80px 0;
    background: var(--bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.value-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary);
}

.value-card h3 {
    margin-bottom: 12px;
}

.value-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.known-for {
    padding: 80px 0;
    background: var(--secondary);
    text-align: center;
}

.known-for h2 {
    color: var(--white);
    margin-bottom: 40px;
}

.keywords-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.keywords-cloud span {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 1rem;
    transition: var(--transition);
}

.keywords-cloud span:hover {
    background: var(--primary);
}

.keywords-cloud span.highlight {
    background: var(--accent);
    color: var(--secondary);
    font-weight: 600;
}

/* =============================================
   CATERING PAGE
   ============================================= */
.catering-intro {
    padding: 80px 0;
    background: var(--white);
}

.catering-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

@media (min-width: 768px) {
    .catering-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.catering-image img {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.catering-content h2 {
    margin-bottom: 20px;
}

.catering-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.catering-occasions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.occasion-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-light);
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.occasion-tag i {
    color: var(--primary);
}

.catering-form-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.catering-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 700px;
    margin: 0 auto;
}

.catering-form h3 {
    text-align: center;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: var(--transition);
}

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

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

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

@media (min-width: 576px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.catering-cta {
    padding: 80px 0;
    background: var(--secondary);
    text-align: center;
}

.catering-cta h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.catering-cta p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
}

.catering-cta .btn-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.catering-cta .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.catering-cta .btn-secondary:hover {
    background: var(--white);
    color: var(--text-dark);
}

/* =============================================
   GALLERY PAGE
   ============================================= */
.gallery-section {
    padding: 80px 0;
}

.gallery-section:nth-child(odd) {
    background: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(196,30,58,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay i {
    color: var(--white);
    font-size: 2rem;
}

/* Large featured items */
.gallery-grid .gallery-item:nth-child(1),
.gallery-grid .gallery-item:nth-child(6) {
    grid-column: span 2;
    grid-row: span 2;
}

@media (max-width: 767px) {
    .gallery-grid .gallery-item:nth-child(1),
    .gallery-grid .gallery-item:nth-child(6) {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info h2 {
    margin-bottom: 30px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius);
}

.contact-card i {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-card-content h4 {
    margin-bottom: 4px;
}

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

.contact-card-content a {
    color: var(--primary);
    font-weight: 500;
}

.contact-card-content a:hover {
    text-decoration: underline;
}

.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-form-wrapper {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.contact-form-wrapper h3 {
    margin-bottom: 24px;
}

.contact-map {
    padding: 0 0 80px;
    background: var(--white);
}

.contact-map .container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

/* =============================================
   FAQ PAGE
   ============================================= */
.faq-section {
    padding: 80px 0;
    background: var(--white);
}

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

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    padding-right: 20px;
}

.faq-question i {
    color: var(--primary);
    font-size: 1.25rem;
    transition: var(--transition);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding-bottom: 24px;
    color: var(--text-light);
    line-height: 1.7;
}

.faq-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
}

.faq-cta h3 {
    margin-bottom: 12px;
}

.faq-cta p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* =============================================
   UTILITY CLASSES
   ============================================= */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }

.py-1 { padding-top: 8px; padding-bottom: 8px; }
.py-2 { padding-top: 16px; padding-bottom: 16px; }
.py-3 { padding-top: 24px; padding-bottom: 24px; }
.py-4 { padding-top: 32px; padding-bottom: 32px; }
.py-5 { padding-top: 48px; padding-bottom: 48px; }

.hidden { display: none; }

@media (max-width: 767px) {
    .hidden-mobile { display: none; }
}

@media (min-width: 768px) {
    .hidden-desktop { display: none; }
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 80px;
    left: 20px;
    right: 20px;
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    z-index: 1002;
    display: none;
}

@media (min-width: 768px) {
    .cookie-notice {
        bottom: 20px;
        left: 20px;
        right: auto;
        max-width: 400px;
    }
}

.cookie-notice.show {
    display: block;
}

.cookie-notice p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

/* Lazy Load */
.lazy-load {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.lazy-load.loaded {
    opacity: 1;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

/* =============================================
   ENHANCED MENU STYLES
   ============================================= */

/* Menu Legend */
.menu-legend {
    background: var(--bg-cream);
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.legend-items {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--text-light);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Diet Labels */
.diet-labels {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
}

.diet-label {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 600;
}

.diet-label.vegetarian { background: #dcfce7; color: #15803d; }
.diet-label.vegan { background: #d1fae5; color: #065f46; }
.diet-label.gluten-free { background: #fef3c7; color: #92400e; }
.diet-label.allergen-shellfish { background: #fee2e2; color: #dc2626; font-size: 0.8rem; padding: 3px 6px; }
.diet-label.allergen-nuts { background: #fef3c7; color: #92400e; font-size: 0.8rem; padding: 3px 6px; }

/* Spice Level Indicators */
.spice-level {
    display: inline-flex;
    gap: 2px;
    align-items: center;
}

.spice-level i {
    font-size: 0.75rem;
    color: #e5e5e5;
}

.spice-level i.active {
    color: #ef4444;
}

/* Enhanced Menu Item Tags */
.menu-item-image {
    position: relative;
}

.menu-item-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
    z-index: 2;
    backdrop-filter: blur(4px);
}

.menu-item-tag.best-seller {
    background: rgba(212, 175, 55, 0.9);
    color: #fff;
}

.menu-item-tag.chefs-pick {
    background: rgba(196, 30, 58, 0.9);
    color: #fff;
}

.menu-item-tag.popular {
    background: rgba(16, 185, 129, 0.9);
    color: #fff;
}

.menu-item-tag.spicy {
    background: rgba(239, 68, 68, 0.9);
    color: #fff;
}

.menu-item-tag.premium {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a1a2e;
}

.menu-item-tag.vegetarian-tag {
    background: rgba(16, 185, 129, 0.9);
    color: #fff;
}

.menu-item-tag.vegan-tag {
    background: rgba(6, 95, 70, 0.9);
    color: #fff;
}

/* Chef's Specials Featured Section */
.menu-section-featured {
    background: linear-gradient(180deg, var(--bg-cream) 0%, var(--white) 100%);
    padding-top: 80px;
}

.menu-section-featured .menu-section-header {
    flex-direction: column;
    text-align: center;
    align-items: center;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--secondary);
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-desc {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.menu-grid-featured {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .menu-grid-featured {
        grid-template-columns: repeat(2, 1fr);
    }
}

.menu-item-featured {
    display: grid;
    grid-template-columns: 1fr;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}

@media (min-width: 576px) {
    .menu-item-featured {
        grid-template-columns: 2fr 3fr;
    }
}

.menu-item-featured:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
}

.menu-item-featured .menu-item-image {
    height: 220px;
}

@media (min-width: 576px) {
    .menu-item-featured .menu-item-image {
        height: 100%;
        min-height: 240px;
    }
}

.menu-item-featured .menu-item-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu-item-featured .menu-item-content h4 {
    font-size: 1.25rem;
    font-family: var(--font-display);
}

.menu-item-story {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.82rem;
    border-left: 3px solid var(--accent);
    padding-left: 12px;
    margin-top: 4px;
    margin-bottom: 16px;
    line-height: 1.6;
}

/* Lunch Badge */
.lunch-badge {
    display: inline-block;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #78350f;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
    margin-bottom: 8px;
}

/* Menu Subsection Title */
.menu-subsection-title {
    font-size: 1.2rem;
    color: var(--text-dark);
    padding: 20px 0 16px;
    margin-top: 20px;
    border-bottom: 2px solid var(--border);
    font-family: var(--font-display);
}

.menu-subsection-title:first-of-type {
    margin-top: 0;
}

/* Compact Menu Items (for beverages list) */
.menu-grid-compact {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

@media (min-width: 576px) {
    .menu-grid-compact {
        grid-template-columns: repeat(2, 1fr);
    }
}

.menu-item-compact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
}

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

.menu-item-compact h4 {
    font-size: 0.95rem;
    font-weight: 500;
    font-family: var(--font-main);
}

.menu-item-compact .menu-item-price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    white-space: nowrap;
    margin-left: 16px;
}

/* =============================================
   SOCIAL LINK ENHANCEMENTS
   ============================================= */
.footer-social a {
    transition: all 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* =============================================
   QUICK ACTIONS (Homepage)
   ============================================= */
.quick-actions {
    padding: 60px 0;
    background: var(--bg-cream);
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (min-width: 768px) {
    .actions-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.action-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: block;
}

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

.action-card i {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.action-card:nth-child(1) i { color: var(--primary); }
.action-card:nth-child(2) i { color: #7c3aed; }
.action-card:nth-child(3) i { color: var(--accent); }
.action-card:nth-child(4) i { color: #ef4444; }

.action-card h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
    font-family: var(--font-main);
    font-weight: 600;
}

.action-card p {
    font-size: 0.82rem;
    color: var(--text-light);
    margin: 0;
}

/* =============================================
   REVIEWS ENHANCEMENTS
   ============================================= */
.review-source {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.review-source i {
    font-size: 1rem;
}

.review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
}

.review-stars i {
    color: #fbbf24;
    font-size: 0.9rem;
}

/* =============================================
   INSTAGRAM FEED (Homepage)
   ============================================= */
.instagram-feed {
    padding: 80px 0;
    background: var(--bg-light);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

@media (min-width: 768px) {
    .instagram-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.instagram-item {
    aspect-ratio: 1;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    display: block;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.instagram-item:hover img {
    transform: scale(1.1);
}

.instagram-item::after {
    content: '\f16d';
    font-family: 'Font Awesome 6 Brands';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196,30,58,0.7);
    color: white;
    font-size: 1.5rem;
    opacity: 0;
    transition: var(--transition);
}

.instagram-item:hover::after {
    opacity: 1;
}

/* =============================================
   LIGHTBOX
   ============================================= */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.92);
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--accent);
}

.lightbox-close {
    top: -50px;
    right: 0;
}

.lightbox-prev {
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 767px) {
    .lightbox-prev {
        left: 10px;
        background: rgba(0,0,0,0.5);
        border-radius: 50%;
    }
    .lightbox-next {
        right: 10px;
        background: rgba(0,0,0,0.5);
        border-radius: 50%;
    }
    .lightbox-close {
        top: 10px;
        right: 10px;
        background: rgba(0,0,0,0.5);
        border-radius: 50%;
    }
}

.lightbox-counter {
    text-align: center;
    color: rgba(255,255,255,0.7);
    margin-top: 16px;
    font-size: 0.9rem;
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
}

/* =============================================
   GIFT CARDS PAGE
   ============================================= */
.gift-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .gift-card-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gift-card-option {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    padding-bottom: 30px;
}

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

.gift-card-option.featured {
    border: 2px solid var(--accent);
    position: relative;
}

.gift-card-visual {
    background: linear-gradient(135deg, var(--secondary) 0%, #16213e 50%, var(--primary-dark) 100%);
    padding: 40px 20px;
    color: var(--white);
}

.gift-card-amount {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-display);
    margin-bottom: 8px;
}

.gift-card-brand {
    font-size: 0.9rem;
    opacity: 0.8;
    letter-spacing: 1px;
}

.gift-card-option h3 {
    margin: 20px 0 10px;
    font-size: 1.2rem;
}

.gift-card-option p {
    color: var(--text-light);
    font-size: 0.9rem;
    padding: 0 20px;
    margin-bottom: 20px;
}

/* =============================================
   REWARDS PAGE
   ============================================= */
.rewards-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .rewards-steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

.rewards-step {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.rewards-step h3 {
    margin-bottom: 10px;
}

.rewards-step p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* =============================================
   CATERING PACKAGES
   ============================================= */
.packages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.package-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.package-header {
    background: linear-gradient(135deg, var(--secondary), #16213e);
    color: var(--white);
    padding: 24px;
}

.package-header h3 {
    color: var(--white);
    margin-bottom: 4px;
}

.package-size {
    font-size: 0.9rem;
    opacity: 0.8;
}

.package-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    padding: 20px 24px 10px;
}

.package-includes {
    padding: 0 24px 24px;
}

.package-includes li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.package-includes li:last-child {
    border-bottom: none;
}

.package-includes li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary);
    font-size: 0.8rem;
}

@media (min-width: 1024px) {
    .packages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.package-card.featured {
    border: 2px solid var(--primary);
    position: relative;
    transform: scale(1.02);
}

.package-card.featured:hover {
    transform: scale(1.02) translateY(-4px);
}

.package-badge {
    background: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 6px 0;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.price-amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
}

.price-unit {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-left: 4px;
}

.price-note {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 4px;
    font-weight: 400;
}

.package-card .btn {
    display: block;
    margin: 0 24px 24px;
    text-align: center;
}

/* =============================================
   ACCESSIBILITY
   ============================================= */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    padding: 12px 24px;
    background: var(--primary);
    color: white;
    z-index: 9999;
    border-radius: var(--radius);
    font-weight: 600;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 16px;
}

/* =============================================
   ABOUT PAGE ENHANCEMENTS
   ============================================= */
.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

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

.team-photo {
    height: 250px;
    overflow: hidden;
}

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

.team-card h3 {
    margin-top: 20px;
    margin-bottom: 4px;
    font-size: 1.15rem;
}

.team-role {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.team-card > p {
    padding: 0 20px 24px;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* About Philosophy */
.about-philosophy {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.philosophy-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.philosophy-item:hover {
    transform: translateY(-5px);
}

.philosophy-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--white);
    font-size: 2rem;
}

.philosophy-item h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.philosophy-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

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

@media (max-width: 768px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 700px;
    margin: 40px auto 0;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -33px;
    top: 4px;
    width: 14px;
    height: 14px;
    background: var(--primary);
    border: 3px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--primary);
}

.timeline-year {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

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

.timeline-marker {
    display: none;
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .mobile-bottom-bar,
    .cookie-notice {
        display: none;
    }

    body {
        padding: 0;
    }
}
