/* Catering Menu Specific Styles */
@import url('date-night.css');

.catering-menu-page {
    background-color: #000;
    color: #fff;
    font-family: var(--font-body);
}

/* Luxury Hero - 100vh Scale with 80px Padding */
.catering-hero-revised {
    height: 100vh !important;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    padding: 80px 20px;
    /* Requested 80px padding */
}

.catering-hero-revised .hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.catering-hero-revised .hero-slider .slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.35) contrast(1.1);
}

.catering-hero-revised .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.95) 100%);
    z-index: 1;
}

.catering-hero-revised .hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
    /* Increased padding to avoid nav and give breathing room */
    padding: 140px 20px 80px;
}

.catering-hero-revised .hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 8vw, 4.5rem);
    font-weight: 300;
    margin-bottom: 25px;
    line-height: 1.1;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.catering-hero-revised .hero-subtext {
    font-size: clamp(0.95rem, 3vw, 1.15rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-actions {
    margin-top: 20px;
}

/* Hero Mobile Refinements */
@media (max-width: 768px) {
    .catering-hero-revised {
        padding: 50px 10px !important;
        /* Requested 50px top/bottom, 10px sides */
    }

    .catering-hero-revised {
        height: 100vh !important;
        min-height: 700px;
    }

    .catering-hero-revised .hero-title {
        font-size: clamp(1.8rem, 10vw, 2.5rem);
        letter-spacing: 1px;
    }

    .catering-hero-revised .hero-subtext {
        font-size: 0.9rem;
        line-height: 1.6;
        opacity: 0.8;
    }

    .hero-badge {
        font-size: 0.7rem;
        letter-spacing: 5px;
        margin-bottom: 15px;
    }

    .catering-hero-revised .hero-content {
        padding: 80px 10px 0px 20px;
    }

    h2.luxury-title-main {
        font-size: 23px;
    }

    .catering-hero-revised {
        height: 80vh !important;
    }

    h3.card-subtitle-brand {
        font-size: 18px !important;
    }
}

/* Scroll down arrow */
.scroll-down {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    z-index: 100;
    cursor: pointer;
    transition: 0.3s;
}

.scroll-down:hover {
    color: #fff;
    transform: translateX(-50%) translateY(5px);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-15px);
    }

    60% {
        transform: translateX(-50%) translateY(-7px);
    }
}

/* --- NAVIGATION & HAMBURGER --- */
.nav-right-wrap {
    display: flex;
    align-items: center;
    gap: 30px;
    /* Increased gap between button and hamburger */
    margin-left: 50px;
    /* Push away from the center menu */
}

.luxury-gap {
    margin-left: 20px;
}

.nav-links {
    gap: 60px !important;
    /* Wider spacing for more elite look */
}

.nav-links a {
    font-size: 0.75rem !important;
    letter-spacing: 3px !important;
}

.nav-toggle {
    display: none;
    /* Hidden on desktop */
    width: 45px;
    height: 45px;
    background: var(--gold);
    /* Gold Background */
    border-radius: 50%;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.nav-toggle .bar {
    width: 20px;
    height: 2px;
    background: #000;
    /* Black Lines */
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger Animation */
.nav-toggle.active .bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 992px) {
    .nav-toggle {
        display: flex;
        /* Show on mobile */
    }

    .hide-mobile {
        display: none !important;
    }
}

.catering-menu-page .nav {
    background: transparent !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: none !important;
    transition: all 0.4s ease !important;
    height: 100px !important;
    /* Slightly sleeker height */
}

.catering-menu-page .logo img {
    height: 100px !important;
    /* Scaled down logo */
}

@media (min-width: 1101px) {
    .catering-menu-page .dropdown-menu {
        top: 100% !important;
        /* Align closer to the nav bar */
    }
}

.catering-menu-page .nav.scrolled {
    background: rgba(0, 0, 0, 0.95) !important;
    height: 90px !important;
    padding: 10px 0 !important;
    backdrop-filter: blur(10px) !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3) !important;
}

.nav-btn {
    background: linear-gradient(90deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C) !important;
    color: #000 !important;
    border: none !important;
    font-weight: 700 !important;
    padding: 14px 35px !important;
    /* More generous padding */
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    border-radius: 4px !important;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

/* Luxury Marquee Section */



.je-marquee-track {
    display: flex;
    width: max-content;
    animation: je-scroll 40s linear infinite;
}

.je-menu-item {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #000;
    padding: 0 30px;
    white-space: nowrap;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.je-menu-item::before {
    content: '✻';
    margin-right: 15px;
    font-size: 1rem;
    color: #000;
}

.je-menu-item.je-brunch-ticker-item {
    background-color: var(--gold) !important;
    color: #fff !important;
    padding: 6px 20px !important;
    border-radius: 30px;
    margin: 0 15px !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
}

.je-menu-item.je-brunch-ticker-item::before {
    color: #fff !important;
    content: '✦' !important;
    margin-right: 10px;
}

@keyframes je-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 767px) {
    .je-marquee-wrapper {
        padding: 10px 0;
    }

    .je-menu-item {
        font-size: 0.75rem;
        padding: 0 15px;
        letter-spacing: 1.5px;
    }

    .info-section.elite-luxury {
        padding: 70px 10px !important;
        background: #000;
        overflow-x: hidden;
    }
}

/* Menu Content Styles */
.catering-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 80px 0;
}

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

.catering-experience-card {
    background: linear-gradient(145deg, #0a0a0a, #050505);
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 60px 40px;
    position: relative;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.catering-experience-card:hover {
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.experience-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
    text-align: center;
}

.experience-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.6;
}

.experience-includes {
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: 25px 0;
    margin-bottom: 30px;
}

.includes-title {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
    text-align: center;
}

.includes-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    font-size: 0.85rem;
}

.includes-list li::before {
    content: "✦";
    color: var(--gold);
    margin-right: 10px;
}

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

@media (max-width: 600px) {
    .menu-selections {
        grid-template-columns: 1fr;
    }
}

.selection-group h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 8px;
}

.selection-list li {
    margin-bottom: 10px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.flavor-enhancements {
    margin-top: auto;
    padding-top: 40px;
}

.enhancement-title {
    font-size: 0.75rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.enhancement-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.enhancement-list li {
    font-size: 0.8rem;
    opacity: 0.6;
}

/* --- ELITE ARCHED CARDS --- */
.info-section.elite-luxury {
    padding: 180px 0;
    background: #000;
    overflow-x: hidden;
}

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

/* --- ELITE SECTION HEADING --- */
.section-heading-elite {
    text-align: center;
    margin-bottom: 80px;
}

.section-heading-elite .serif-title {
    font-size: clamp(2rem, 5vw, 3rem);
    letter-spacing: 5px;
    margin-top: 10px;
}

.heading-line {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 25px auto 0;
    opacity: 0.5;
}

/* --- SLIDER WRAPPER & ARROWS --- */
.slider-wrapper-elite {
    position: relative;
    display: flex;
    align-items: center;
}

.slider-arrow {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-arrow:hover {
    background: var(--gold);
    color: #000;
}

.prev-arrow {
    position: absolute;
    left: -10px;
}

.next-arrow {
    position: absolute;
    right: -10px;
}

/* Hide arrows on desktop if needed, but the user asked for mobile/tablet */
@media (min-width: 993px) {
    .slider-arrow {
        display: none;
    }

    .section-heading-elite {
        margin-bottom: 40px !important;

    }
}

.arched-card {
    position: relative;
    padding-top: 68px;
    /* Slightly reduced to force an overlap */
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.card-arch {
    width: 140px;
    height: 70px;
    background: linear-gradient(135deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
    border-radius: 140px 140px 0 0;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 -5px 20px rgba(212, 175, 55, 0.3);
    margin-bottom: -2px;
    /* Pulls it into the body slightly */
}

.arch-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #000;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    transform: translateY(12px);
    /* Lowered slightly to stay inside the arch */
    transition: none;
    /* No movement relative to card */
}

.arch-icon i {
    color: var(--gold);
    font-size: 24px;
}

.card-body-elite {
    background: #0a0a0a;
    /* Unified background */
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 80px 30px 40px;
    text-align: center;
    transition: all 0.5s ease;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.card-content-wrap {
    flex-grow: 1;
}

/* --- READ MORE SYSTEM --- */
.extra-content-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.extra-content-wrapper.active {
    grid-template-rows: 1fr;
    margin-top: 15px;
}

.extra-content {
    min-height: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.extra-content-wrapper.active .extra-content {
    opacity: 1;
}

.read-more-btn {
    background: none;
    border: none;
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    cursor: pointer;
    margin-top: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0.8;
}

.read-more-btn:hover {
    opacity: 1;
    letter-spacing: 5px;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.read-more-btn i {
    font-size: 12px;
    transition: transform 0.5s ease;
}

.read-more-btn.active i {
    transform: rotate(180deg);
}

.btn-placeholder {
    height: 45px;
}

/* --- HOVER EFFECTS - UNIFIED MOVEMENT --- */
.arched-card:hover {
    transform: translateY(-12px);
    /* Moves the whole card as one piece */
}

.arched-card:hover .card-body-elite {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}

.arched-card:hover .card-arch {
    box-shadow: 0 -10px 30px rgba(212, 175, 55, 0.4);
}

/* --- FULL HOVER EFFECT --- */
.arched-card:hover {
    transform: translateY(-15px);
}

.arched-card:hover .card-body-elite {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.1);
}

.arched-card:hover .card-arch {
    transform: translateX(-50%) translateY(-8px);
    box-shadow: 0 -10px 30px rgba(212, 175, 55, 0.4);
}

.arched-card:hover .arch-icon i {
    transform: scale(1.2);
}

.elite-num {
    display: block;
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 1.4rem;
    /* Significantly larger */
    font-weight: 300;
    letter-spacing: 6px;
    margin-bottom: 20px;
    opacity: 0.8;
    /* More visible */
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.elite-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 30px;
}

.elite-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.9;
    font-size: 0.95rem;
}

.elite-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.elite-list li {
    font-size: 0.95rem;
    /* Increased for better readability */
    text-transform: none;
    /* Changed from uppercase to Sentence Case */
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.elite-list li::before {
    content: '\f005';
    /* FontAwesome Star */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--gold);
    font-size: 8px;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.5));
}

/* Two-Column Layout for long lists */
.elite-list.column-list,
.elite-list.grid-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

@media (min-width: 1200px) {
    .elite-list.grid-list {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }

    .elite-list.grid-list li {
        justify-content: flex-start;
        font-size: 0.75rem;
    }
}

/* --- MOBILE SLIDER STYLES --- */
@media (max-width: 992px) {
    .info-grid.mobile-slider {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding: 40px 20px 60px;
        scrollbar-width: none;
        /* Hide scrollbar Firefox */
    }

    .info-grid.mobile-slider::-webkit-scrollbar {
        display: none;
        /* Hide scrollbar Chrome/Safari */
    }

    .slider-item {
        min-width: 85vw;
        scroll-snap-align: center;
    }

    .slider-dots {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: -20px;
    }

    .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(212, 175, 55, 0.2);
        transition: all 0.3s ease;
    }

    .dot.active {
        width: 25px;
        border-radius: 10px;
        background: var(--gold);
    }
}

.mobile-only {
    display: none;
}

@media (max-width: 992px) {
    .mobile-only {
        display: flex;
    }
}

/* --- OVERHAULED CTA SECTION --- */
.cta-section {
    padding: 100px 0;
    /* Premium vertical padding */
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../assets/hero_candlelit_dinner.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cta-content-inner {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.cta-main-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1.1;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: #fff;
    margin: 30px 0;
}

.cta-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.cta-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
        background-attachment: scroll;
        /* Better for mobile performance */
    }

    .section-heading-elite {
        margin-bottom: 10px !important;

    }

    .cta-btns {
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

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

    .cta-main-title {
        letter-spacing: 4px;
        margin: 20px 0;
    }

    .cta-section .script-text {
        font-size: 2.5rem !important;
    }
}

.btn-gold.secondary {
    background: transparent !important;
    color: var(--gold) !important;
    border: 1px solid var(--gold) !important;
}

.btn-gold.secondary:hover {
    background: var(--gold) !important;
    color: #000 !important;
}
