﻿@import url('modal.css');

/* ============================================
   CATERING INQUIRY FORM
============================================ */
.catering-inquiry {
    padding: 80px 0;
    background: var(--bg-dark);
    color: var(--color-white);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.form-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    color: var(--saffron-orange);
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.form-group {
    width: 100%;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #555;
    padding: 15px 0;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group select {
    color: #999;
    /* Placeholder color */
}

.form-group select:focus,
.form-group select:valid {
    color: #fff;
}

.form-group option {
    background: #222;
    color: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #777;
}

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

.submit-btn {
    background: var(--saffron-orange);
    color: #fff;
    border: none;
    padding: 18px 40px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: center;
    margin-top: 20px;
    border-radius: 50px;
    text-transform: uppercase;
}

.submit-btn:hover {
    background: var(--warm-yellow);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4);
}

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

/* ============================================
   CATERING SPECIFIC STYLES
============================================ */
:root {
    /* CATERING SPECIFIC VARIABLES */
    --about-beige: #E8DFD0;
    --about-text-dark: #2B2B2B;
    --about-text-muted: #5A5A5A;
}



/* ============================================
   HERO SECTION
============================================ */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    border: none;
    padding: 0;
    margin: 0;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    outline: none;
    z-index: 0;
    transform: scale(1.25);
    /* Zoom level for testing */
    transition: transform 0.5s ease;
    /* Smooth transition for changes */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(26, 26, 26, 0.75) 0%,
            rgba(26, 26, 26, 0.5) 50%,
            rgba(245, 166, 35, 0.15) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding-top: 140px;
    /* Reduced to balance with bottom */
    padding-bottom: 60px;
    /* Equal space at bottom */
    box-sizing: border-box;
}

/* Center Heading Area */
.hero-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: var(--saffron-orange);
    margin-bottom: 2rem;
    text-transform: uppercase;
    /* opacity: 0; - Removed for GSAP .from() */
}

.hero-heading {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.25;
    color: var(--cream);
    max-width: 900px;
}

.letter {
    display: inline-block;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.letter.revealed {
    opacity: 1;
}

.word {
    display: inline-block;
    white-space: nowrap;
    margin-right: 0.25em;
}

.word.emphasis {
    font-weight: 900;
    color: var(--saffron-orange);
}

/* Bottom Row */
.hero-bottom {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: end;
    padding-bottom: 0;
}



.hero-description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 248, 231, 0.85);
    max-width: 550px;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid;
}

.btn-primary {
    background: var(--saffron-orange);
    color: var(--charcoal);
    border-color: var(--saffron-orange);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--warm-yellow);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(245, 166, 35, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--cream);
    border-color: var(--cream);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--cream);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

.btn-secondary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-secondary:hover {
    color: var(--charcoal);
    transform: translateY(-3px);
}

.btn span {
    position: relative;
    z-index: 1;
}

/* Google Reviews - EXACT DESIGN */
.hero-reviews {
    background: #D8CBB8;
    padding: 1.5rem 1.8rem;
    border-radius: 5px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    min-width: 320px;
    max-width: 360px;
    /* opacity: 0; - Removed for GSAP .from() */
}

.reviews-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.reviews-stars {
    color: #F5A623;
    font-size: 1.5rem;
    letter-spacing: 3px;
}

.google-logo {
    width: 28px;
    height: 28px;
}

.reviews-bottom {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: center;
}

.reviews-rating {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1A1A1A;
    line-height: 0.9;
}

.reviews-rating sup {
    font-size: 1.5rem;
    color: #666;
    font-weight: 600;
}

.reviews-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.reviews-status {
    font-size: 1rem;
    font-weight: 600;
    color: #1A1A1A;
}

.reviews-count {
    font-size: 0.85rem;
    color: #666;
    font-weight: 400;
}

/* ============================================
   ABOUT SECTION - PIN APPROACH
============================================ */
.about-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.about-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(26, 26, 26, 0.85) 0%,
            rgba(26, 26, 26, 0.65) 100%);
    z-index: 1;
}

.about-content {
    position: absolute;
    top: 20vh;
    left: 5%;
    z-index: 2;
    max-width: 650px;
}

.about-heading {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--cream);
}

.about-description {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255, 248, 231, 0.85);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

/* ============================================
   SPACER
============================================ */
.spacer {
    height: 100vh;
    background: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: rgba(255, 248, 231, 0.5);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 768px) {
    .hero-bottom {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-reviews {
        max-width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}


/* ============================================
   MENU SECTION
============================================ */
/* Menu Section Container */
.menu-section {
    position: relative;
    background: #1A1A1A;
}

.menu-wrapper {
    display: flex;
}

/* Left Side - Menu Content (Pinned) */
.menu-content-left {
    width: 50%;
    background: #FFF8E7;
    color: #2B2B2B;
    padding: 4vh 4vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

/* Heading with letter animation */
.menu-heading {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.menu-subheading {
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    opacity: 0.85;
    max-width: 500px;
}

/* Open Menu Button */
.menu-cta-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: #F5A623;
    color: #FFF8E7;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border: 2px solid #F5A623;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
    width: fit-content;
}

.menu-cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.menu-cta-btn:hover::before {
    width: 300px;
    height: 300px;
}

.menu-cta-btn:hover {
    box-shadow: 0 0 20px rgba(245, 166, 35, 0.6);
    transform: translateY(-2px);
}

/* Menu Items List */
.menu-items {
    list-style: none;
    padding: 0;
    flex: 1;
    overflow: hidden;
}

.menu-item {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(43, 43, 43, 0.2);
}

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

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

.menu-item-name {
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    font-weight: 600;
    color: #2B2B2B;
}

.menu-item-price {
    font-size: clamp(0.9rem, 1vw, 1rem);
    font-weight: 600;
    color: #F5A623;
}

.menu-item-description {
    font-size: clamp(0.8rem, 0.95vw, 0.9rem);
    line-height: 1.4;
    opacity: 0.75;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Right Side - Images (Scrolling) */
.menu-images-right {
    width: 50%;
    display: flex;
    flex-direction: column;
}

.menu-image-container {
    width: 100%;
    height: 100vh;
    flex-shrink: 0;
}

.menu-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .menu-section {
        height: auto !important;
    }

    .menu-wrapper {
        flex-direction: column;
    }

    .menu-content-left {
        width: 100%;
        padding: 6vh 8vw;
        position: relative;
        height: auto;
    }

    .menu-images-right {
        width: 100%;
        height: 60vh;
    }

    .menu-image-container:not(:first-child) {
        display: none;
    }

    .menu-image-container {
        height: 100%;
    }

    .menu-heading {
        font-size: 2rem;
    }

    .menu-subheading {
        font-size: 1rem;
    }

    .menu-cta-btn {
        padding: 0.875rem 2rem;
        font-size: 0.9rem;
    }
}



/* ============================================
   CHOOSE US SECTION
============================================ */
.ChooseUs-wrapper {
    background-color: #b8afa1;
    color: #2c2c2c;
    line-height: 1.6;
    font-family: 'Georgia', serif;
}

.ChooseUs-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

.ChooseUs-header {
    text-align: center;
    margin-bottom: 60px;
}

.ChooseUs-header h1 {
    font-size: 4rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 10px;
    line-height: 1.2;
}

.ChooseUs-header .subtitle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.ChooseUs-header .description {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.8;
    color: #3c3c3c;
}

.ChooseUs-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: transparent;
    overflow: hidden;
}

.feature-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

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

.feature-title {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 15px;
    text-align: center;
}

.feature-description {
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #3c3c3c;
    padding: 0 10px;
}

@media (max-width: 768px) {
    .catering-container {
        padding: 40px 20px;
    }

    .catering-header h1 {
        font-size: 2.5rem;
    }

    .catering-features {
        grid-template-columns: 1fr;
    }

    .feature-image {
        height: 350px;
    }
}

/* ============================================
   CATERING SECTION
============================================ */
.catering-wrapper {
    background: #FFF8E7;
    color: #2B2B2B;
    line-height: 1.6;
    font-family: 'Georgia', serif;

}

.catering-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

.catering-header {
    text-align: center;
    margin-bottom: 60px;
}

.catering-header h1 {
    font-size: 4rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 10px;
    line-height: 1.2;
}

.catering-header .subtitle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.catering-header .description {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.8;
    color: #3c3c3c;
}

.catering-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: transparent;
    overflow: hidden;
}

.feature-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

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

.feature-title {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 15px;
    text-align: center;
}

.feature-description {
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #3c3c3c;
    padding: 0 10px;
}

@media (max-width: 768px) {
    .catering-container {
        padding: 40px 20px;
    }

    .catering-header h1 {
        font-size: 2.5rem;
    }

    .catering-features {
        grid-template-columns: 1fr;
    }

    .feature-image {
        height: 350px;
    }
}

/* ============================================
   TESTIMONIAL SECTION
============================================ */
.testimonial-wrapper {
    background-color: #b8afa1 !important;
    color: #2c2c2c !important;
    line-height: 1.6;
    font-family: 'Georgia', serif;
}

.testimonial-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 30px;
}

.testimonial-title {
    font-size: 3.5rem;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.2;
}

.rating-box {
    text-align: center;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.1);
}

.stars {
    color: #f4a460;
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.rating-score {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.rating-label {
    font-size: 0.75rem;
    color: #4c4c4c;
    margin-bottom: 3px;
}

.rating-source {
    font-size: 0.7rem;
    color: #5c5c5c;
}

.google-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: #4285f4;
    border-radius: 50%;
    margin-left: 5px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.review-card {
    background: rgba(255, 255, 255, 0.15) !important;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

.review-stars {
    color: #f4a460;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.review-source {
    font-size: 0.75rem;
    color: #5c5c5c;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #3c3c3c;
    flex-grow: 1;
    margin-bottom: 20px;
}

.review-author {
    font-size: 0.85rem;
    color: #4c4c4c;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.review-author-label {
    display: block;
    font-size: 0.7rem;
    color: #6c6c6c;
    margin-bottom: 3px;
}

.cta-section {
    text-align: center;
    margin-top: 50px;
}

.cta-text {
    font-size: 0.95rem;
    color: #4c4c4c;
    margin-bottom: 15px;
}

.cta-link {
    color: #2c2c2c;
    text-decoration: underline;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.cta-link:hover {
    color: #000;
}

@media (max-width: 768px) {
    .testimonial-container {
        padding: 40px 20px;
    }

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

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .footerLogo-img {
        width: 150px;
        height: 150px;
    }
}

/* =========================================
   ORDER ONLINE PAGE STYLES
   ========================================= */

.order-layout {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    gap: 2rem;
    min-height: 80vh;
}

/* Sidebar */
.order-sidebar {
    width: 250px;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
    height: fit-content;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.sidebar-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 0.5rem;
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    margin-bottom: 0.8rem;
}

.category-list a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s;
    display: block;
    padding: 0.5rem;
    border-radius: 6px;
}

.category-list a:hover,
.category-list a.active {
    color: var(--color-gold);
    background: #fff9f0;
}

/* Main Content */
.order-main {
    flex-grow: 1;
}

.menu-category-section {
    margin-bottom: 3rem;
    scroll-margin-top: 120px;
    /* For sticky header offset */
}

.category-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.menu-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    border: 1px solid transparent;
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: var(--color-gold);
}

.menu-card-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.menu-card-desc {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.menu-card-price {
    font-weight: 700;
    color: var(--color-gold);
    font-size: 1.1rem;
}

.add-btn {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f0f0f0;
    border: none;
    color: #333;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}

.menu-card:hover .add-btn {
    background: var(--color-gold);
    color: white;
}

/* Cart Sidebar */
.cart-sidebar {
    width: 320px;
    background: white;
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
}

.cart-sidebar.active {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.cart-items {
    flex-grow: 1;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #f5f5f5;
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.cart-item-price {
    color: #666;
    font-size: 0.9rem;
}

.cart-remove-btn {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.5rem;
}

.cart-remove-btn:hover {
    color: #ff4444;
}

.cart-footer {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 500px;
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.modal-desc {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.modal-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 2rem;
}

.modal-controls {
    display: flex;
    gap: 1rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.quantity-selector button {
    background: #f9f9f9;
    border: none;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    cursor: pointer;
}

.quantity-selector button:hover {
    background: #eee;
}

.quantity-selector span {
    width: 40px;
    text-align: center;
    font-weight: 600;
}

/* Mobile Cart Button */
.mobile-cart-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--color-gold);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 900;
    display: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    .order-layout {
        flex-direction: column;
        padding: 1rem;
    }

    .order-sidebar {
        width: 100%;
        position: static;
        margin-bottom: 1rem;
        display: none;
        /* Hide sidebar on mobile for now, or make it a dropdown */
    }

    .mobile-cart-btn {
        display: block;
    }

    .cart-sidebar {
        width: 100%;
    }
}

/* ============================================
   TESTIMONIAL SECTION
============================================ */
.testimonial-wrapper {
    background: #F9F9F9;
    padding: 80px 0;
    overflow: hidden;
    /* Prevent horizontal scrollbar on body */
}

.testimonial-container {
    max-width: 100%;
    /* Allow full width for marquee */
    margin: 0 auto;
    padding: 0;
    /* Remove padding to let marquee touch edges */
}

.testimonial-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
    /* Keep header contained */
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--charcoal);
}

.rating-box {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.rating-box .stars {
    color: #F5A623;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.rating-score {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1;
}

.rating-score sup {
    font-size: 1.2rem;
    color: #666;
    font-weight: 500;
}

.rating-label {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rating-source {
    font-size: 0.85rem;
    color: #888;
}

/* Marquee Styles */
.testimonial-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    /* Mask for fade effect on edges */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.testimonial-track {
    display: flex;
    width: max-content;
    gap: 2rem;
    /* Will be animated by GSAP */
}

.review-card {
    width: 400px;
    /* Fixed width for consistent spacing */
    flex-shrink: 0;
    background: white;
    padding: 2.5rem;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 300px;
    /* Fixed height for uniformity */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.review-card .review-stars {
    color: #F5A623;
    font-size: 1rem;
    letter-spacing: 2px;
}

.review-source {
    font-size: 0.8rem;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    font-style: italic;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

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

.review-author-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 2px;
}

.review-author strong {
    font-size: 1rem;
    color: var(--charcoal);
}

.cta-section {
    text-align: center;
    margin-top: 60px;
}

.cta-text {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.cta-link {
    color: var(--saffron-orange);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    border-bottom: 2px solid var(--saffron-orange);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.cta-link:hover {
    color: #d48806;
    border-color: #d48806;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-title {
        font-size: 2.5rem;
    }

    .review-card {
        width: 300px;
        height: auto;
        padding: 2rem;
    }

    .review-text {
        font-size: 1rem;
    }
}

</style>< !-- External Libraries --><script src="https://cdnjs.cloudflare.com/ajax/libs/lenis/1.0.42/lenis.min.js"></script><script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.5/gsap.min.js"></script><script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.5/ScrollTrigger.min.js"></script><style>

/* Catering Page Specific Styles */
:root {
    --catering-text-light: #ffffff;
    --catering-gold: #e0c7a8;
}

/* Hero Section */
.section.is--catering-hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
    /* Space for navbar */
}

.catering_hero_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url('./About/1.jpeg');
    background-size: cover;
    background-position: center;
}

.catering_hero_bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catering_hero_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Dark overlay for text readability */
    z-index: 0;
}

.catering_hero_content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1200px;
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Tickers */
.heading-sub-wrapper {
    position: relative;
    display: inline-block;
    /* Ensures wrapper fits the text width */
}

.catering__hero__ticker {
    position: absolute;
    top: 55%;
    /* Align with the visual center of the text (cap height vs line height) */
    transform: translateY(-50%);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--catering-text-light);
    text-transform: uppercase;
    font-weight: 600;
    white-space: nowrap;
}

.catering__hero__ticker.is--left {
    right: 100%;
    margin-right: 30px;
    /* Space from text */
    left: auto;
}

.catering__hero__ticker.is--right {
    left: 100%;
    margin-left: 30px;
    /* Space from text */
    right: auto;
}

@media screen and (max-width: 1400px) {
    .catering__hero__ticker.is--left {
        left: 0;
        position: relative;
        transform: none;
        margin-bottom: 20px;
        display: block;
    }

    .catering__hero__ticker.is--right {
        right: 0;
        position: relative;
        transform: none;
        margin-top: 20px;
        display: block;
    }

    .catering_hero_content {
        justify-content: center;
    }
}

/* Titles */
.heading-hero-main {
    font-family: 'Playfair Display', serif;
    font-size: 6vw;
    /* Responsive font size matching the design */
    color: var(--catering-text-light);
    font-weight: 400;
    line-height: 0.9;
    margin: 0;
    text-transform: uppercase;
}

.heading-hero-sub {
    font-family: 'Playfair Display', serif;
    font-size: 6vw;
    color: var(--catering-text-light);
    font-weight: 400;
    line-height: 0.9;
    margin: 0;
    text-transform: uppercase;
}

/* Content Bottom */
.catering_hero_bottom {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
}

.catering_hero_text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    color: var(--catering-text-light);
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: center;
}

.button-primary {
    background-color: var(--catering-gold);
    color: #000;
    padding: 16px 32px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 4px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    display: inline-block;
}

.button-primary:hover {
    transform: translateY(-2px);
    background-color: #d1b695;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {

    .heading-hero-main,
    .heading-hero-sub {
        font-size: 14vw;
    }

    .catering__hero__ticker {
        display: none;
        /* Hide tickers on mobile if needed or stack them */
    }
}

/* Intro Section */
.catering-intro {
    padding: 120px 0;
    background-color: #E2D9C8;
    /* Beige color from screenshot */
    color: #1a1a1a;
}

.container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 5%;
    /* Aligns with typical site margins (approx 60-80px) */
    box-sizing: border-box;
}

.intro-heading {
    font-family: 'Playfair Display', serif;
    font-size: 68px;
    /* Larger as per screenshot */
    line-height: 1.1;
    font-weight: 400;
    max-width: 100%;
    margin-bottom: 150px;
    /* Large space before columns as seen in screenshot */
    margin-left: 0;
    color: #333;
}

.intro-columns {
    display: flex;
    gap: 60px;
    max-width: 100%;
}

.intro-col {
    flex: 1;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
}

/* Celebration Section */
.catering-celebration {
    background-color: #E2D9C8;
    /* Continuing the beige theme if implied, or keep white? Screenshot cuts off but "WHERE TASTE MEETS" text is on beige. */
    padding-bottom: 0;
    /* Remove padding to let scrolltrigger handle spacing */
}

.celebration-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 150vh;
    /* Make it tall to enable scrolling effect */
    align-items: start;
    /* Important for pinning: align content to top */
    position: relative;
}

.celebration-image {
    width: 100%;
    height: 100%;
    /* Fills the grid height */
    position: relative;
}

.celebration-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.celebration-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
    background-color: #E2D9C8;
    /* Update content bg as well */
    height: 100vh;
    /* Full viewport height for centering effect while pinned */
    box-sizing: border-box;
}

/* All Services Section */
.all-services {
    background-color: #1a1a1a;
    position: relative;
    /* Height will be handled by pinning duration */
    color: #E2D9C8;
    /* Removed padding to ensure full background */
}

.services-pin-container {
    width: 100%;
    height: 100vh;
    display: flex;
    overflow: hidden;
    position: relative;
}

/* Background dim overlay or image to match screenshot */
.services-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./assets/images/6.jpeg');
    /* Placeholder, need dark interior */
    background-size: cover;
    background-position: center;
    filter: brightness(0.4);
    z-index: 0;
}

.services-content {
    display: flex;
    flex-direction: column;
    /* Stack vertically as requested */
    justify-content: center;
    /* Center content vertically in the viewport */
    width: 100%;
    height: 100%;
    z-index: 1;
    position: relative;
    padding-top: 60px;
    /* Space from top */
}

.services-left {
    width: 100%;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    background: transparent;
    /* Removed gradient to blend better */
    margin-bottom: 60px;
    /* Space between header and cards */
    text-align: center;
    /* Center the text */
    align-items: center;
    /* Center items flex-wise */
}

.services-heading-main {
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    line-height: 0.9;
    color: #E2D9C8;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.services-btn {
    padding: 15px 30px;
    border: 1px solid #E2D9C8;
    color: #E2D9C8;
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
    width: fit-content;
    transition: all 0.3s ease;
    background: rgba(226, 217, 200, 0.1);
}

.services-btn:hover {
    background: #E2D9C8;
    color: #1a1a1a;
}

.services-right {
    display: flex;
    align-items: flex-start;
    /* Align top */
    padding-left: 5vw;
    /* Start with some offset or center? Let's start from visual center or left */
    gap: 40px;
    width: max-content;
    /* Allow flow to expand */
}

.service-card {
    width: 400px;
    height: auto;
    /* Responsive height */
    min-height: 50vh;
    max-height: 55vh;
    /* Reduced slightly to ensure it fits with header */
    border: 1px solid rgba(226, 217, 200, 0.3);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    position: relative;
    margin-bottom: 40px;
    /* Add explicit margin to bottom */
}

.service-num {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    opacity: 0.7;
}

.service-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 400;
}

.service-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.8;
    margin-top: auto;
}

.celebration-heading {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 24px;
    text-transform: uppercase;
    color: #1a1a1a;
    max-width: 400px;
}

.celebration-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 40px;
    max-width: 400px;
}

.btn-dark {
    background-color: #1a1a1a;
    color: #fff;
    padding: 15px 30px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    width: fit-content;
    transition: background-color 0.3s;
}

.btn-dark:hover {
    background-color: var(--catering-gold);
    color: #1a1a1a;
}

/* Responsive */
@media screen and (max-width: 900px) {
    .intro-heading {
        font-size: 40px;
    }

    .intro-columns {
        flex-direction: column;
        gap: 30px;
    }

    .celebration-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .celebration-image {
        height: 400px;
    }

    .celebration-content {
        padding: 40px 20px;
    }
}

/* SCROLL TO TOP BUTTON */
.scroll-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #F5A623, #ff8c00);
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 8px 30px rgba(245, 166, 35, 0.5);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    text-decoration: none;
}

.scroll-top-btn.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(245, 166, 35, 0.6);
}

.scroll-top-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* ABOUT-STYLE HERO FOR CATERING */
.about-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Using the requested background image with an overlay */
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../assets/images/2.webp');
    background-size: cover;
    background-position: center;
    padding: 140px 20px 80px;
    overflow: hidden;
}

.about-hero-content {
    z-index: 2;
    max-width: 1200px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-title-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    gap: 40px;
}

.about-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(4rem, 12vw, 8rem);
    line-height: 0.85;
    font-weight: 400;
    color: var(--about-cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    letter-spacing: -0.02em;
}

.about-hero-title .line-1,
.about-hero-title .line-2 {
    display: block;
}

.side-text {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 248, 231, 0.9);
    font-weight: 500;
    white-space: nowrap;
}

.about-hero-subtitle {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    color: rgba(255, 248, 231, 0.9);
    max-width: 600px;
    line-height: 1.7;
    font-weight: 400;
    margin-top: 40px;
    text-align: center;
}

@media (max-width: 768px) {
    .hero-title-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .side-text {
        display: none;
        /* Often hidden on mobile in the original design? Or stacked. keeping simplified */
    }
}

</style>