/* Date Night Experience Styles */

:root {
    --gold: #D4AF37;
    --gold-dark: #AA892E;
    --gold-glow: rgba(212, 175, 55, 0.3);
    --gold-gradient: linear-gradient(135deg, #E6C875 0%, #B8860B 25%, #FFD700 50%, #DAA520 75%, #F8E58C 100%);
    --gold-gradient-horizontal: linear-gradient(to right, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
}

.luxury-theme {
    background-color: #000000;
    color: #FFFFFF;
}

.gold-text {
    color: var(--gold);
}

.gold-gradient-text {
    background: var(--gold-gradient-horizontal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.gold-text-italic {
    color: var(--gold);
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.5rem;
}

.script-text {
    font-family: 'Pinyon Script', cursive;
    font-size: 2.5rem;
    line-height: 1;
}

.serif-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    Text-transform: capitilize;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 30px;
    text-transform: uppercase;
}

/* --- Navigation Overrides --- */
.luxury-theme .nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    background: rgba(0, 0, 0, 0.7) !important;
    backdrop-filter: blur(15px) !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15) !important;
    padding: 0 !important;
    /* Reset padding to use fixed height */
    height: 110px !important;
    display: flex !important;
    align-items: center !important;
    z-index: 2000 !important;
}

.luxury-theme .nav-inner {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr !important;
    align-items: center !important;
    width: 100% !important;
    padding: 0 40px !important;
}

.luxury-theme .logo {
    justify-self: start;
}

.luxury-theme .logo img {
    height: 90px;
    /* Balanced size */
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}

.luxury-theme .nav-links {
    position: static;
    /* Remove absolute centering */
    transform: none;
    left: auto;
    justify-self: center;
    display: flex;
    gap: 50px;
}

.luxury-theme .nav-btn-wrap {
    justify-self: end;
}

.luxury-theme .nav-links a {
    color: #FFFFFF;
    font-size: 0.85rem;
    letter-spacing: 4px;
    font-weight: 600;
    opacity: 0.8;
    transition: 0.3s ease;
}

.luxury-theme .nav-links a:hover {
    color: var(--gold);
}

.luxury-theme .btn.nav-btn {
    background-color: var(--gold);
    border-color: var(--gold);
    color: #000;
    padding: 12px 30px;
    font-weight: 900;
    border-radius: 4px;
}

/* --- Hero --- */
.date-night-hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.date-night-hero .hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background-color: #000;
}

.date-night-hero .hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.6) contrast(1.1);
}

.date-night-hero .hero-slider .slide-1 {
    animation: slowZoomHero 20s ease-in-out infinite alternate;
}

.date-night-hero .hero-slider .slide-2 {
    animation: slowZoomHero 20s ease-in-out infinite alternate, crossfadeHero 16s infinite;
}

@keyframes slowZoomHero {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

@keyframes crossfadeHero {

    0%,
    35% {
        opacity: 0;
    }

    50%,
    85% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.date-night-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.date-night-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
}

.date-night-hero .hero-title {
    font-family: var(--font-heading);
    font-size: 6rem;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1;
}

.date-night-hero .hero-subtext {
    font-size: 1.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.btn-gold {
    background: var(--gold-gradient-horizontal);
    color: #000;
    padding: 15px 35px;
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    border: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.4s ease;
    display: inline-block;
    white-space: nowrap;
    animation: goldPulse 2.5s infinite;
}

@keyframes goldPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.btn-gold.large {
    padding: 18px 50px;
    font-size: 1.1rem;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    background: var(--gold-gradient-horizontal);
    color: #000;
}

/* --- Experience Intro --- */
.experience-intro {
    padding: 120px 0;
    text-align: center;
}

.container.narrow {
    max-width: 800px;
}

.experience-grid {
    margin-top: 50px;
    font-size: 1.2rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.7);
}

.experience-statement {
    margin: 40px 0;
    font-size: 1.8rem;
    color: #FFF;
}

/* --- Experience Feature Strip --- */
.experience-features-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    padding: 25px 40px;
    margin-top: 60px;
    border-radius: 6px;
}

.experience-features-strip::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 6px;
    padding: 1px;
    background: var(--gold-gradient-horizontal);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.feature-strip-item {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: center;
}

.feature-icon {
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-text {
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 2px;
    line-height: 1.6;
    text-align: left;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}

.feature-strip-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(212, 175, 55, 0.3);
}

@media (max-width: 900px) {
    .experience-features-strip {
        flex-direction: column;
        gap: 30px;
        padding: 30px;
    }

    .feature-strip-divider {
        width: 100%;
        height: 1px;
    }

    .feature-strip-item {
        width: 100%;
        justify-content: center;
    }

    .serif-title {
        font-size: 2rem;
    }

    .date-night-cta .cta-title {
        font-size: 2rem;
    }

    .moments-title {
        font-size: 2rem !important;
    }

    .experience-statement p {
        font-size: 22px !important;
        margin: 0px !important;
    }

    .experience-grid p {
        font-size: 16px !important;
    }

    h2.serif-title.gold-gradient-text {
        font-size: 2rem !important;
    }

    a.back-to-home {
        font-size: 14px;
    }
}

/* --- Packages Detailed Menu Cards --- */
.packages {
    padding: 80px 0;
    background-color: #050505;
    background-image: radial-gradient(circle at center, #111 0%, #000 100%);
}

.packages-header {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.packages-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
}

.packages-flourish {
    color: var(--gold);
    font-size: 1.5rem;
    opacity: 0.7;
}

.menu-packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    /* Added gap between cards */
    max-width: 1000px;
    /* Constrain overall width */
    margin: 0 auto;
}

.menu-package-card {
    padding: 25px 15px;
    /* Reduced padding */
    text-align: center;
    display: flex;
    flex-direction: column;
    position: relative;
    background: #050505;
    /* Card background */
    border: 1px solid rgba(212, 175, 55, 0.3);
    /* Individual border */
    border-radius: 8px;
    /* Modern rounded corners */
}

.menu-package-card.middle-card {
    /* Removed side borders since cards are separate now */
}

.menu-package-card.romance-card {
    border: 2px solid var(--gold);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.25), inset 0 0 15px rgba(212, 175, 55, 0.05);
    transform: scale(1.05);
    /* Pop out slightly */
    z-index: 2;
    background: #000;
    margin: 0;
    /* Removed negative margin */
    border-radius: 8px;
}

@media (max-width: 900px) {
    .menu-packages-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .menu-package-card.romance-card {
        transform: none;

    }

    .cta-content-inner {
        padding: 40px !important;
        text-align: center;
    }
}

.package-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    /* Reduced */
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.2;
    color: var(--gold);
    margin-bottom: 5px;
}

.package-script {
    font-family: 'Pinyon Script', cursive;
    font-size: 1.4rem;
    /* Reduced */
    color: #fff;
    margin-bottom: 10px;
}

.course-pill {
    background: linear-gradient(to right, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
    color: #000;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.75rem;
    /* Reduced */
    letter-spacing: 1.5px;
    padding: 4px 15px;
    display: inline-block;
    margin: 0 auto 15px;
    border-radius: 20px;
}

.package-menu {
    flex-grow: 1;
}

.menu-section-title {
    color: var(--gold);
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-size: 0.85rem;
    /* Reduced */
}

.menu-category {
    color: var(--gold);
    font-size: 0.85rem;
    /* Reduced */
    letter-spacing: 1.5px;
    margin: 10px 0 4px;
}

.menu-item {
    font-family: var(--font-heading);
    font-size: 1rem;
    /* Reduced */
    color: #fff;
    margin-bottom: 2px;
}

.menu-desc {
    font-size: 0.75rem;
    /* Reduced */
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    margin-bottom: 2px;
}

.package-price-box {
    margin-top: 15px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 10px;
    border-radius: 4px;
}

.price-box-label {
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    margin-bottom: 2px;
}

.price-box-value {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    /* Reduced */
    color: #fff;
    margin-bottom: 3px;
}

.price-box-sub {
    color: var(--gold);
    font-size: 0.65rem;
    letter-spacing: 1px;
}

.romance-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #fff;
    font-size: 0.75rem;
    letter-spacing: 2px;
    padding: 4px 15px;
    white-space: nowrap;
    border: 1px solid var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    border-radius: 2px;
}

/* --- Romance Feature --- */
.romance-feature {
    padding: 120px 0;
    background-color: #030303;
    position: relative;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.split-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.85;
}

.includes-list ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 30px;
    row-gap: 15px;
}

@media (max-width: 900px) {
    .includes-list ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .serif-title {
        font-size: 32px !important;
    }

    .date-night-cta .cta-title {
        font-size: 32px !important;
    }

    .moments-title {
        font-size: 28px !important;
    }

    .experience-statement p {
        font-size: 18px !important;
        margin: 0px !important;
    }

    .experience-grid p {
        font-size: 15px !important;
    }

    h2.serif-title.gold-gradient-text {
        font-size: 28px !important;
    }

    a.back-to-home {
        font-size: 14px;
    }

}

.includes-list li {
    font-size: 0.95rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
}

.image-frame-luxury {
    position: relative;
    padding: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
}

.image-frame-luxury::before {
    content: "";
    position: absolute;
    top: -20px;
    right: -20px;
    bottom: 40px;
    left: 40px;
    border: 1px solid var(--gold);
    border-radius: 8px;
    z-index: 0;
    opacity: 0.4;
}

.image-frame-luxury img {
    position: relative;
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 4px;
    z-index: 1;
    filter: contrast(1.1) brightness(0.85);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

@media (max-width: 900px) {
    .split-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .image-frame-luxury::before {
        display: none;
    }

    .image-frame-luxury img {
        height: 400px;
    }
}

/* --- Menu Preview --- */
.menu-preview {
    padding: 100px 0;
    background-color: #020202;
    background-image: url('assets/date_night_hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.menu-preview::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1;
}

.menu-preview .container {
    position: relative;
    z-index: 2;
}

.menu-card-luxury {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 50px 40px;
    text-align: center;
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.menu-card-luxury::before {
    content: "";
    position: absolute;
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    pointer-events: none;
}

.menu-header-luxury {
    margin-bottom: 30px;
}

.menu-script {
    font-family: 'Pinyon Script', cursive;
    font-size: 2.2rem;
    color: var(--gold);
    display: block;
    line-height: 1;
    margin-bottom: 5px;
}

.menu-title-main {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 300;
}

.menu-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.menu-divider::before,
.menu-divider::after {
    content: "";
    height: 1px;
    width: 40px;
    background: var(--gold);
    opacity: 0.5;
    margin: 0 15px;
}

.menu-divider .diamond {
    color: var(--gold);
    font-size: 1rem;
}

.bottom-divider {
    margin-top: 35px;
    margin-bottom: 0;
}

.menu-items-luxury {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.menu-item-luxury h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 2px;
}

.menu-item-luxury p {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.menu-item-luxury.highlight-course {
    position: relative;
    padding: 12px 0;
}

.menu-item-luxury.highlight-course::before,
.menu-item-luxury.highlight-course::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 1px;
    background: var(--gold);
    opacity: 0.3;
}

.menu-item-luxury.highlight-course::before {
    top: 0;
}

.menu-item-luxury.highlight-course::after {
    bottom: 0;
}

.menu-item-luxury.highlight-course h4 {
    color: var(--gold);
    font-size: 1.6rem;
}

/* --- Enhancements --- */
.enhancements-luxury {
    padding: 100px 0;
    background-color: #000;
}

.enhancements-header {
    text-align: center;
    margin-bottom: 60px;
}

.enhancement-grid-luxury {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.enhancement-item-luxury {
    background: linear-gradient(145deg, #0a0a0a 0%, #020202 100%);
    padding: 30px 15px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.enhancement-item-luxury::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.enhancement-item-luxury:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    border-color: rgba(212, 175, 55, 0.4);
}

.enhancement-item-luxury:hover::after {
    opacity: 1;
}

.enhancement-icon {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.enhancement-icon i {
    font-size: 2.2rem;
    color: var(--gold);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.4));
}

.enhancement-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.4;
    color: var(--gold);
    margin-bottom: 12px;
}

.enhancement-desc {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .enhancement-grid-luxury {
        grid-template-columns: repeat(2, 1fr);
    }

    .enhancement-item-luxury {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .enhancement-grid-luxury {
        grid-template-columns: 1fr;
    }

    .enhancement-item-luxury {
        width: 100%;
    }
}

/* --- Special Moments --- */
.special-moments-luxury {
    padding: 120px 0;
    background-color: #030303;
    position: relative;
}

.moments-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.moments-image {
    flex: 0 0 45%;
    position: relative;
    padding-bottom: 30px;
    padding-right: 30px;
}

.moments-image img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 4px;
    filter: brightness(0.85) contrast(1.1);
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.moments-image::after {
    content: "";
    position: absolute;
    top: 30px;
    right: 0;
    bottom: 0;
    left: 30px;
    border: 1px solid var(--gold);
    z-index: 1;
    opacity: 0.4;
    border-radius: 4px;
}

.moments-content {
    flex: 1;
}

.moments-script {
    font-family: 'Pinyon Script', cursive;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 10px;
    display: block;
}

.moments-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 40px;
    line-height: 1.2;
}

.moments-list-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
}

.moment-item {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 15px;
}

.moment-item h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.moment-item p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-style: italic;
}

@media (max-width: 900px) {
    .moments-container {
        flex-direction: column;
        gap: 50px;
    }

    .moments-image {
        padding-bottom: 20px;
        padding-right: 20px;
    }

    .moments-image::after {
        top: 20px;
        left: 20px;
    }

    .moments-title {
        font-size: 2.2rem;
    }
}

/* --- Final CTA Split Layout --- */
.date-night-cta {
    background-color: #050505;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.cta-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
    width: 100%;
}

.cta-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.cta-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) contrast(1.1);
}

.cta-content-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
}

.cta-content-inner {
    max-width: 500px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.date-night-cta .script-text {
    font-family: 'Pinyon Script', cursive;
    font-size: 3.5rem;
    margin-bottom: 5px;
    color: var(--gold);
}

.date-night-cta .cta-title {
    font-family: var(--font-heading) !Important;
    text-transform: uppercase;
    font-size: 5rem;
    font-weight: normal !important;
    margin-bottom: 25px;
    letter-spacing: 4px;
    color: #fff;
    line-height: 1.1;
}

.date-night-cta .cta-desc {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .cta-split {
        grid-template-columns: 1fr;
    }

    .cta-image {
        min-height: 400px;
    }

    .cta-content-wrap {
        padding: 60px 20px;
    }

    .date-night-cta .cta-title {
        font-size: 3.5rem;
        line-height: 1.2;
    }

    .date-night-cta .script-text {
        font-size: 2.8rem;
    }

    .btn-gold.large {
        padding: 15px 20px;
        font-size: 0.9rem;
        white-space: normal;
    }
}

/* --- Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1100px) {
    .luxury-theme .nav {
        height: 90px !important;
        padding: 0 !important;
    }

    .luxury-theme .nav-inner {
        display: flex !important;
        justify-content: space-between !important;
        padding: 0 25px !important;
    }

    .luxury-theme .nav-btn-wrap {
        display: none !important;
    }

    .luxury-theme .logo img {
        height: 65px !important;
    }
}

@media (max-width: 768px) {
    .date-night-hero {
        height: auto;
        min-height: 80vh;
        padding: 120px 0 60px;
        /* give some top padding to clear header */
    }

    .date-night-hero .hero-title {
        font-size: 45px !important;
    }

    .cta-content-inner {
        padding: 0 !important;
        text-align: center;
        width: 100%;
    }

    .date-night-hero .hero-subtext {
        font-size: 16px !important;
        padding: 0 15px;
    }

    .package-grid {
        grid-template-columns: 1fr;
    }

    .enhancement-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .moments-list {
        flex-direction: column;
        gap: 10px;
    }

    .moments-list .dot {
        display: none;
    }

    .luxury-theme .nav {
        height: 80px !important;
    }

    .luxury-theme .logo img {
        height: 55px !important;
    }
}
