/* ========================================
   Shifa's Catering - Main Stylesheet
   ======================================== */

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

:root {
    --primary-gold: #c9a55a;
    --accent-gold: #e8c675;
    --dark-gold: #9d7e3b;
    --whatsapp-green: #25D366;
    --dark-green: #1a2f23;
    --light-green: #3d5a4a;
    --cream: #faf8f3;
    --dark-bg: #0d0d0d;
    --charcoal: #1c1c1c;
    --text-light: #ffffff;
    --text-muted: #b8b8b8;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-light);
    background-color: var(--dark-bg);
    overflow-x: hidden;
    line-height: 1.8;
}

html {
    scroll-behavior: smooth;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(201, 165, 90, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(61, 90, 74, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* ========================================
   WhatsApp Floating Button
   ======================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

/* ========================================
   Header
   ======================================== */

header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 1rem 7%;
    border-bottom: 1px solid rgba(201, 165, 90, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
    padding: 0.8rem 7%;
    background: rgba(13, 13, 13, 0.98);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(201, 165, 90, 0.2);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    animation: fadeInDown 1s ease;
    text-shadow: 0 2px 20px rgba(201, 165, 90, 0.3);
    position: relative;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 20px rgba(201, 165, 90, 0.3));
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), transparent);
}

.logo span {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--accent-gold);
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 3px;
    display: block;
    margin-top: -5px;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    font-family: 'Montserrat', sans-serif;
    color: var(--cream);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover::before {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary-gold);
    text-shadow: 0 0 20px rgba(201, 165, 90, 0.5);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: var(--primary-gold);
    margin: 3px 0;
    transition: all 0.3s ease;
}

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

.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

/* Page Hero (for inner pages) */
.page-hero {
    min-height: 50vh;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-top: 80px;
}

.page-hero-content {
    z-index: 2;
    max-width: 800px;
    padding: 3rem;
    animation: fadeInUp 1s ease;
}

.page-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 6px;
    text-shadow: 0 4px 30px rgba(201, 165, 90, 0.5), 0 0 60px rgba(201, 165, 90, 0.3);
}

.page-hero-content p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--cream);
    font-style: italic;
    font-weight: 300;
    letter-spacing: 2px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(201, 165, 90, 0.1) 0%, transparent 60%);
    animation: pulse 8s ease-in-out infinite;
}

.hero-content {
    z-index: 2;
    max-width: 900px;
    padding: 3rem;
    animation: fadeInUp 1.5s ease;
}

.hero-badge {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: rgba(201, 165, 90, 0.15);
    border: 1px solid rgba(201, 165, 90, 0.3);
    border-radius: 50px;
    color: var(--accent-gold);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 5.5rem;
    font-weight: 800;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 8px;
    animation: fadeInUp 1s ease 0.4s both;
    text-shadow: 0 4px 30px rgba(201, 165, 90, 0.5), 0 0 60px rgba(201, 165, 90, 0.3);
    line-height: 1.2;
}

.hero .tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--cream);
    font-style: italic;
    font-weight: 300;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease 0.7s both;
    letter-spacing: 3px;
}

.hero .subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 1s both;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 1.3s both;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
    color: var(--dark-bg);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(201, 165, 90, 0.4), 0 0 0 0 rgba(201, 165, 90, 0);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 60px rgba(201, 165, 90, 0.6), 0 0 40px rgba(201, 165, 90, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
    box-shadow: 0 10px 40px rgba(201, 165, 90, 0.2);
}

.cta-button.secondary:hover {
    background: rgba(201, 165, 90, 0.15);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    box-shadow: 0 20px 60px rgba(201, 165, 90, 0.4), 0 0 40px rgba(201, 165, 90, 0.2);
}

/* ========================================
   Sections
   ======================================== */

section {
    padding: 8rem 7%;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

.section-container {
    max-width: 1600px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    text-align: center;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    position: relative;
    animation: fadeIn 1s ease;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.section-title::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

.section-title::after {
    content: '';
    display: block;
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    margin: 1.5rem auto 0;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 4rem;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    letter-spacing: 1px;
}

/* ========================================
   How It Works Section
   ======================================== */

.how-it-works {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--charcoal) 50%, var(--dark-bg) 100%);
}

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

@media (max-width: 1200px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.process-step {
    background: linear-gradient(135deg, rgba(28, 28, 28, 0.95) 0%, rgba(26, 47, 35, 0.5) 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(201, 165, 90, 0.2);
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.process-step:hover::before {
    transform: scaleX(1);
}

.process-step:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(201, 165, 90, 0.4), 0 0 60px rgba(201, 165, 90, 0.2);
    border-color: var(--accent-gold);
    background: linear-gradient(135deg, rgba(28, 28, 28, 1) 0%, rgba(26, 47, 35, 0.7) 100%);
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(201, 165, 90, 0.4);
    z-index: 10;
}

.step-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-gold);
}

.step-icon svg {
    stroke: var(--primary-gold);
    filter: drop-shadow(0 4px 12px rgba(201, 165, 90, 0.3));
    transition: all 0.4s ease;
}

.process-step:hover .step-icon svg {
    stroke: var(--accent-gold);
    filter: drop-shadow(0 6px 20px rgba(201, 165, 90, 0.5));
    transform: scale(1.1);
}

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

.process-step p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* Serving Days Calendar */

.serving-days {
    margin: 5rem 0;
    text-align: center;
    background: rgba(201, 165, 90, 0.05);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(201, 165, 90, 0.2);
}

.serving-days h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-gold);
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

.day-card {
    background: rgba(28, 28, 28, 0.8);
    padding: 1.5rem 1rem;
    border-radius: 15px;
    border: 2px solid rgba(201, 165, 90, 0.2);
    transition: all 0.3s ease;
}

.day-card.active {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
    border-color: var(--accent-gold);
}

.day-card.active .day-name,
.day-card.active .day-status {
    color: var(--dark-bg);
    font-weight: 700;
}

.day-card.inactive {
    opacity: 0.5;
}

.day-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 0.5rem;
}

.day-status {
    font-size: 1.5rem;
    color: var(--primary-gold);
}

.days-note {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* WhatsApp Signup Form */

.whatsapp-signup {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.08) 0%, rgba(26, 47, 35, 0.4) 100%);
    border-radius: 25px;
    padding: 4rem;
    border: 2px solid rgba(37, 211, 102, 0.3);
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(37, 211, 102, 0.15);
    position: relative;
    overflow: hidden;
}

.whatsapp-signup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--whatsapp-green), transparent);
}

.signup-content h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-gold);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.signup-content > p {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.signup-form {
    max-width: 600px;
    margin: 0 auto;
}

.signup-form .cta-button {
    display: block;
    width: 100%;
    text-align: center;
}

.signup-form .cta-button {
    width: 100%;
    margin-top: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(201, 165, 90, 0.3);
    border-radius: 10px;
    color: var(--cream);
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--charcoal);
    color: var(--cream);
    padding: 1rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(201, 165, 90, 0.3);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.checkbox-group label {
    margin: 0;
    cursor: pointer;
}

.form-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 1rem;
    font-style: italic;
}

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

.menu {
    background: var(--dark-bg);
    position: relative;
}

.menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

/* ========================================
   Weekly Menu Cards (Home Page)
   ======================================== */

.weekly-menu {
    background: var(--dark-bg);
    position: relative;
}

.menu-days-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

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

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

.menu-day-card {
    background: linear-gradient(135deg, rgba(28, 28, 28, 0.95) 0%, rgba(26, 47, 35, 0.5) 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(201, 165, 90, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    position: relative;
}

.menu-day-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(201, 165, 90, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.menu-day-card:hover::before {
    opacity: 1;
}

.menu-day-card:nth-child(1) { animation-delay: 0.1s; }
.menu-day-card:nth-child(2) { animation-delay: 0.2s; }
.menu-day-card:nth-child(3) { animation-delay: 0.3s; }
.menu-day-card:nth-child(4) { animation-delay: 0.4s; }
.menu-day-card:nth-child(5) { animation-delay: 0.5s; }

.menu-day-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 80px rgba(201, 165, 90, 0.4), 0 0 60px rgba(201, 165, 90, 0.2);
    border-color: var(--accent-gold);
}

.day-header {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
    padding: 1rem;
    text-align: center;
}

.day-header h3 {
    font-family: 'Playfair Display', serif;
    color: var(--dark-bg);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.menu-day-image {
    width: 100%;
    height: 250px;
    position: relative;
    background: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-day-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.menu-day-image .image-placeholder {
    position: absolute;
    font-size: 4rem;
    color: var(--text-muted);
    opacity: 0.3;
}

.menu-day-image img[src=""] + .image-placeholder {
    display: block;
}

.menu-day-image img[src=""]:not([src]) {
    display: none;
}

.menu-day-content {
    padding: 2rem;
}

.menu-description {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    text-align: center;
}

/* ========================================
   Static Menu Grid (Our Food Page)
   ======================================== */

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.menu-item {
    background: linear-gradient(135deg, rgba(28, 28, 28, 0.9) 0%, rgba(26, 47, 35, 0.4) 100%);
    border-radius: 25px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(201, 165, 90, 0.15);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    overflow: hidden;
}

.menu-item:nth-child(1) { animation-delay: 0.1s; }
.menu-item:nth-child(2) { animation-delay: 0.2s; }
.menu-item:nth-child(3) { animation-delay: 0.3s; }
.menu-item:nth-child(4) { animation-delay: 0.4s; }
.menu-item:nth-child(5) { animation-delay: 0.5s; }
.menu-item:nth-child(6) { animation-delay: 0.6s; }

.menu-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 80px rgba(201, 165, 90, 0.4), 0 0 60px rgba(201, 165, 90, 0.2);
    border-color: var(--accent-gold);
}

.menu-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
    background: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.menu-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(13, 13, 13, 0.9), transparent);
    pointer-events: none;
}

/* Placeholder for missing images */
.menu-image img[src=""]:before,
.menu-image img:not([src]):before {
    content: attr(data-placeholder);
    display: block;
    font-size: 3rem;
    color: var(--text-muted);
    text-align: center;
}

.menu-content {
    padding: 2.5rem;
}

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

.menu-item h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-gold);
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.menu-item .price {
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold);
    font-size: 1.8rem;
    font-weight: 700;
}

.menu-item p {
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

/* Menu List Layout */

.menu-list-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.menu-category {
    background: linear-gradient(135deg, rgba(28, 28, 28, 0.8) 0%, rgba(26, 47, 35, 0.3) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(201, 165, 90, 0.2);
    transition: all 0.4s ease;
}

.menu-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(201, 165, 90, 0.25);
    border-color: var(--accent-gold);
}

.category-title {
    font-family: 'Playfair Display', serif;
    color: var(--primary-gold);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(201, 165, 90, 0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.menu-items-list {
    list-style: none;
    padding: 0;
}

.menu-items-list li {
    color: var(--cream);
    font-size: 1.1rem;
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.menu-items-list li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-size: 0.8rem;
}

.menu-items-list li:hover {
    color: var(--accent-gold);
    padding-left: 2rem;
}

.menu-badges {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.menu-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
    color: var(--dark-bg);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(201, 165, 90, 0.3);
}

.menu-badge.vegetarian {
    background: linear-gradient(135deg, #3d5a4a 0%, #2a4a3a 100%);
    color: var(--cream);
}

.menu-note {
    max-width: 800px;
    margin: 4rem auto 0;
    padding: 2rem;
    background: rgba(201, 165, 90, 0.1);
    border-radius: 15px;
    border-left: 4px solid var(--primary-gold);
    text-align: center;
}

.menu-note p {
    color: var(--cream);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ========================================
   Food Gallery
   ======================================== */

.food-gallery {
    background: var(--dark-bg);
    padding: 8rem 7%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    margin-top: 4rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 3/4;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(201, 165, 90, 0.2);
    max-height: 480px;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(13, 13, 13, 0.7) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

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

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 70px rgba(201, 165, 90, 0.4), 0 0 60px rgba(201, 165, 90, 0.2);
    border-color: var(--accent-gold);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

/* ========================================
   Video Gallery
   ======================================== */

.video-gallery {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--charcoal) 100%);
    padding: 8rem 7%;
}

.video-scroll-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2.5rem;
    max-width: 1600px;
    margin: 0 auto;
    margin-top: 4rem;
}

.video-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 9/16;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(201, 165, 90, 0.2);
    background: var(--charcoal);
}

.video-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 70px rgba(201, 165, 90, 0.4), 0 0 60px rgba(201, 165, 90, 0.2);
    border-color: var(--accent-gold);
}

.video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 18px;
}

/* ========================================
   Events Section
   ======================================== */

.events {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--charcoal) 50%, var(--dark-bg) 100%);
}

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

@media (max-width: 1200px) {
    .events-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.events-info h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-gold);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.events-info > p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 3rem;
}

.events-features {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.event-feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(201, 165, 90, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(201, 165, 90, 0.15);
    transition: all 0.3s ease;
}

.event-feature .feature-icon {
    flex-shrink: 0;
    color: var(--primary-gold);
}

.event-feature .feature-icon svg {
    stroke: var(--primary-gold);
    filter: drop-shadow(0 2px 8px rgba(201, 165, 90, 0.3));
    transition: all 0.3s ease;
}

.event-feature:hover {
    background: rgba(201, 165, 90, 0.1);
    border-color: var(--primary-gold);
}

.event-feature:hover .feature-icon svg {
    stroke: var(--accent-gold);
    filter: drop-shadow(0 4px 16px rgba(201, 165, 90, 0.5));
    transform: scale(1.1);
}

.event-feature h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.event-feature p {
    color: var(--text-muted);
    line-height: 1.8;
}

.sample-menus {
    background: linear-gradient(135deg, rgba(28, 28, 28, 0.9) 0%, rgba(26, 47, 35, 0.4) 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(201, 165, 90, 0.2);
}

.sample-menus h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.sample-menu-card h5 {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.sample-menu-card ul {
    list-style: none;
    padding: 0;
}

.sample-menu-card li {
    color: var(--text-muted);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(201, 165, 90, 0.1);
}

.sample-menu-card li:before {
    content: '•';
    color: var(--primary-gold);
    margin-right: 0.5rem;
}

/* Event Booking Form */

.event-booking-form {
    background: linear-gradient(135deg, rgba(28, 28, 28, 0.98) 0%, rgba(26, 47, 35, 0.5) 100%);
    padding: 3rem;
    border-radius: 25px;
    border: 1px solid rgba(201, 165, 90, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.event-booking-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

.event-booking-form h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-gold);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.form-section {
    margin-bottom: 3rem;
}

.form-section h4 {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(201, 165, 90, 0.2);
}

/* ========================================
   About Section
   ======================================== */

.about {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--charcoal) 50%, var(--dark-bg) 100%);
}

.about-content {
    max-width: 900px;
    margin: 0 auto 5rem;
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-gold);
    font-size: 2.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.about-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 2;
    font-weight: 300;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(201, 165, 90, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(201, 165, 90, 0.1);
    transition: all 0.4s ease;
}

.stat-item:hover {
    background: rgba(201, 165, 90, 0.1);
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--primary-gold);
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

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

.feature-card {
    background: linear-gradient(135deg, rgba(28, 28, 28, 0.8) 0%, rgba(26, 47, 35, 0.3) 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(201, 165, 90, 0.15);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: linear-gradient(135deg, rgba(28, 28, 28, 0.95) 0%, rgba(26, 47, 35, 0.5) 100%);
    box-shadow: 0 25px 70px rgba(201, 165, 90, 0.35), 0 0 50px rgba(201, 165, 90, 0.2);
    border-color: var(--accent-gold);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.4s ease;
    color: var(--primary-gold);
}

.feature-icon svg {
    stroke: var(--primary-gold);
    filter: drop-shadow(0 4px 12px rgba(201, 165, 90, 0.3));
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon svg {
    stroke: var(--accent-gold);
    filter: drop-shadow(0 6px 20px rgba(201, 165, 90, 0.5));
    transform: scale(1.2) rotate(5deg);
}

.feature-card h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    font-weight: 300;
}

/* ========================================
   Testimonials Section
   ======================================== */

.testimonials {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--charcoal) 50%, var(--dark-bg) 100%);
    overflow: hidden;
}

.testimonials-carousel {
    overflow: hidden;
    margin-top: 4rem;
    position: relative;
}

.testimonials-track {
    display: flex;
    gap: 3rem;
    animation: scroll-testimonials 60s linear infinite;
    width: fit-content;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-testimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(28, 28, 28, 0.8) 0%, rgba(26, 47, 35, 0.3) 100%);
    padding: 3rem;
    border-radius: 25px;
    border-left: 4px solid var(--primary-gold);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 400px;
    max-width: 400px;
    flex-shrink: 0;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 8rem;
    font-family: 'Playfair Display', serif;
    color: rgba(201, 165, 90, 0.1);
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 30px 80px rgba(201, 165, 90, 0.35), 0 0 60px rgba(201, 165, 90, 0.15);
    background: linear-gradient(135deg, rgba(28, 28, 28, 0.95) 0%, rgba(26, 47, 35, 0.5) 100%);
    border-left-width: 6px;
    border-left-color: var(--accent-gold);
}

.stars {
    color: var(--primary-gold);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.3rem;
}

.testimonial-text {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 2rem;
    font-size: 1.15rem;
    line-height: 2;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-family: 'Playfair Display', serif;
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.testimonial-role {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.3rem;
    font-weight: 300;
}

/* ========================================
   Contact Section
   ======================================== */

.contact {
    background: var(--dark-bg);
}

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

.contact-info {
    animation: fadeInLeft 1s ease;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(42, 74, 58, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(42, 74, 58, 0.3);
    transform: translateX(10px);
}

.contact-icon {
    font-size: 2rem;
    margin-right: 1rem;
    color: var(--primary-gold);
}

.contact-icon svg {
    stroke: var(--primary-gold);
    filter: drop-shadow(0 2px 8px rgba(201, 165, 90, 0.3));
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon svg {
    stroke: var(--accent-gold);
    filter: drop-shadow(0 4px 16px rgba(201, 165, 90, 0.5));
    transform: scale(1.1);
}

.contact-details h4 {
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-details p {
    color: var(--text-muted);
    line-height: 1.8;
}

.contact-details a {
    color: var(--cream);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--primary-gold);
}

.order-methods {
    background: linear-gradient(135deg, rgba(42, 74, 58, 0.3) 0%, rgba(26, 26, 26, 0.5) 100%);
    padding: 3rem;
    border-radius: 15px;
    border: 2px solid var(--primary-gold);
    animation: fadeInRight 1s ease;
}

.order-methods h3 {
    color: var(--primary-gold);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

.order-button {
    display: block;
    width: 100%;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: var(--primary-gold);
    color: var(--dark-bg);
    text-decoration: none;
    text-align: center;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.order-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 165, 90, 0.4);
    background: var(--accent-gold);
}

.order-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(201, 165, 90, 0.1);
    border-radius: 10px;
    border-left: 3px solid var(--primary-gold);
}

.order-note p {
    color: var(--cream);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

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

footer {
    background: var(--dark-green);
    padding: 3rem 7%;
    text-align: center;
}

footer p {
    color: var(--cream);
    margin-bottom: 1rem;
}

footer a {
    color: var(--cream);
    text-decoration: none;
}

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

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.social-links a {
    color: var(--primary-gold);
    font-size: 2rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.social-links a:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 4px 12px rgba(201, 165, 90, 0.5));
}

.social-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(0) saturate(100%) invert(71%) sepia(27%) saturate(680%) hue-rotate(359deg) brightness(92%) contrast(86%);
}

.social-links a:hover .social-icon {
    filter: brightness(0) saturate(100%) invert(85%) sepia(41%) saturate(529%) hue-rotate(346deg) brightness(100%) contrast(89%);
}

/* ========================================
   Modal
   ======================================== */

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: linear-gradient(135deg, rgba(28, 28, 28, 0.98) 0%, rgba(26, 47, 35, 0.95) 100%);
    margin: 10% auto;
    padding: 3rem;
    border: 2px solid var(--primary-gold);
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: relative;
    animation: slideIn 0.4s ease;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--primary-gold);
}

.modal-icon {
    font-size: 4rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.modal-content h2 {
    color: var(--primary-gold);
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.modal-content p {
    color: var(--cream);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* ========================================
   Animations
   ======================================== */

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes pulse {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.15; }
}

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

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

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

@media (max-width: 1200px) {
    .events-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        background: rgba(13, 13, 13, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        border-left: 1px solid rgba(201, 165, 90, 0.2);
    }

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

    .mobile-menu {
        display: flex;
        z-index: 1001;
    }

    .hero {
        margin-top: 0;
        padding-top: 80px;
        height: 100vh;
        background-attachment: scroll;
        background-position: center center;
    }
    
    .page-hero {
        margin-top: 70px;
        background-attachment: scroll;
        background-position: center center;
    }

    .hero h1 {
        font-size: 3rem;
        letter-spacing: 4px;
    }
    
    .page-hero-content h1 {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }

    .hero .tagline,
    .page-hero-content p {
        font-size: 1.5rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-button {
        width: 100%;
    }

    .section-title {
        font-size: 2.5rem;
    }

    section {
        padding: 5rem 5%;
    }

    .logo {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }
    
    .logo img {
        height: 35px;
    }
    
    .logo span {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }

    .process-grid,
    .menu-grid,
    .menu-days-grid {
        grid-template-columns: 1fr;
    }

    .days-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .day-card {
        padding: 1rem 0.5rem;
    }
    
    .day-name {
        font-size: 0.9rem;
    }
    
    .day-status {
        font-size: 1.2rem;
    }

    .about-stats,
    .about-features {
        grid-template-columns: 1fr;
    }

    .whatsapp-signup {
        padding: 2rem;
    }

    .event-booking-form {
        padding: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        min-width: 300px;
        max-width: 300px;
        padding: 2rem 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .testimonial-card::before {
        font-size: 5rem;
        top: 10px;
        right: 20px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }

    /* Food Gallery Mobile */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 2rem;
    }

    .gallery-item {
        max-height: 250px;
        border-radius: 15px;
    }

    .food-gallery {
        padding: 5rem 5%;
    }
    
    .menu-list-container {
        gap: 2rem;
    }

    /* Video Gallery Mobile */
    .video-gallery {
        padding: 5rem 5%;
    }

    .video-scroll-container {
        display: flex;
        gap: 1.5rem;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 1rem;
        margin-top: 2rem;
    }

    .video-scroll-container::-webkit-scrollbar {
        height: 12px;
    }

    .video-scroll-container::-webkit-scrollbar-track {
        background: rgba(201, 165, 90, 0.1);
        border-radius: 10px;
    }

    .video-scroll-container::-webkit-scrollbar-thumb {
        background: var(--primary-gold);
        border-radius: 10px;
        border: 2px solid var(--charcoal);
    }

    .video-scroll-container::-webkit-scrollbar-thumb:hover {
        background: var(--accent-gold);
    }

    .video-item {
        min-width: 280px;
        max-width: 280px;
        scroll-snap-align: start;
        border-radius: 15px;
    }
}