/* Reset and Base Styles */
/* Force holiday hero headline to solid white (override gradient) */
.holiday-hero .hero-title .hero-title-main {
    background-image: none !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: #ffffff !important;
    color: #ffffff !important;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
    overflow-x: hidden;
}

/* Availability Bar */
.availability-bar { position: sticky; top: 0; z-index: 1001; background: rgba(0,0,0,.7); backdrop-filter: blur(8px); border-bottom: 1px solid rgba(255,255,255,.08); box-shadow: 0 2px 8px rgba(0,0,0,.35); }
.availability-inner { display:flex; align-items:center; justify-content: space-between; gap:1rem; padding: .9rem 0; font-size:.95rem; color:#fff; min-height: 56px; }
.btn-compact { padding: .7rem 1.25rem; border-radius: 999px; line-height: 1.15; }
.availability-actions { display:flex; align-items:center; gap:.5rem; }
.availability-close { background: transparent; color:#fff; border:0; font-size:1.25rem; cursor:pointer; opacity:.7; }
.availability-close:hover { opacity:1; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 300;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.25rem;
    text-align: center;
    color: #a0a0a0;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    font-weight: 300;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: #000000;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    font-weight: 600;
    letter-spacing: 0.025em;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, #e6c547 0%, #d4af37 100%);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    font-weight: 500;
    letter-spacing: 0.025em;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-full {
    width: 100%;
    justify-self: stretch;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Mega Menu */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 1rem;
    min-width: 600px;
}

.nav-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem;
}

.mega-menu-section h3 {
    color: #d4af37;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mega-menu-section a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    font-weight: 400;
    border-radius: 5px;
}

.mega-menu-section a:hover {
    color: #d4af37;
    transform: translateX(5px);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-logo a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: #ffffff;
    line-height: 1;
    letter-spacing: 0.05em;
}

.logo-subtext {
    font-size: 0.75rem;
    color: #d4af37;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: -0.2rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    position: relative;
    transition: color 0.3s ease;
    letter-spacing: 0.025em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #d4af37;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: #000000 !important;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    letter-spacing: 0.025em;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, #e6c547 0%, #d4af37 100%);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.6) 0%, 
        rgba(20, 20, 20, 0.6) 50%, 
        rgba(0, 0, 0, 0.9) 100%
    );
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    animation: heroFloat 30s ease-in-out infinite;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.55);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 20%, rgba(0,0,0,0.4) 100%);
}

@keyframes heroFloat {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.05) rotate(1deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

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

.hero-title-main {
    display: block;
    font-size: clamp(1.8rem, 6.5vw, 4rem);
    font-weight: 200;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    animation: fadeInUp 1s ease-out 0.2s both;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title-sub {
    display: block;
    font-size: clamp(1rem, 3.8vw, 1.5rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.4s both;
    letter-spacing: 0.05em;
}

/* Reusable hero template utilities */
.hero--center .hero-content { display:flex; flex-direction:column; justify-content:center; align-items:center; text-align:center; min-height: var(--hero-min-height, calc(100vh - var(--navHeight, 76px))); padding-top: var(--hero-padding-top, var(--navHeight, 76px)); max-width: var(--hero-max-width, 1100px); }
.hero--left .hero-content { display:flex; flex-direction:column; justify-content:center; align-items:flex-start; text-align:left; min-height: var(--hero-min-height, calc(100vh - var(--navHeight, 76px))); padding-top: var(--hero-padding-top, var(--navHeight, 76px)); max-width: var(--hero-max-width, 1100px); }
.hero--right .hero-content { display:flex; flex-direction:column; justify-content:center; align-items:flex-end; text-align:right; min-height: var(--hero-min-height, calc(100vh - var(--navHeight, 76px))); padding-top: var(--hero-padding-top, var(--navHeight, 76px)); max-width: var(--hero-max-width, 1100px); }

/* Overlay strengths */
.hero--overlay-weak .hero-overlay { background: rgba(0,0,0,.25); }
.hero--overlay-strong .hero-overlay { background: rgba(0,0,0,.7); }
.hero--overlay-max .hero-overlay { background: rgba(0,0,0,.85); }

/* Boxed text container for readable hero copy */
.hero-box {
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.06);
    display: inline-block;
    padding: 1.75rem 2.25rem;
    border-radius: 14px;
    margin: 0 auto;
    max-width: 960px;
}

/* High-contrast headline helper: removes gradients and enforces readability */
.headline-readable {
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    -webkit-text-fill-color: #ffffff !important;
    color: #ffffff !important;
    text-shadow: 0 4px 28px rgba(0,0,0,.95);
}
.headline-readable.stroke-light { -webkit-text-stroke: 0.5px rgba(0,0,0,0.45); }
.headline-readable.stroke { -webkit-text-stroke: 1px rgba(0,0,0,0.45); }

.hero-description {
    font-size: clamp(0.95rem, 3.6vw, 1.25rem);
    line-height: 1.6;
    margin-bottom: clamp(1.25rem, 4.5vw, 3rem);
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Holiday page specific tweaks */
.holiday-hero .hero-title-main,
.holiday-hero .hero-title-sub,
.holiday-hero .hero-description {
    text-shadow: 0 3px 24px rgba(0,0,0,.95);
}

/* Stronger readability for holiday hero */
.holiday-hero .hero-overlay {
    background: rgba(0,0,0,0.8);
}

.holiday-hero .hero-text {}

.holiday-hero .hero-title-main {
    /* Prefer class-based readable headline but keep legacy in place */
    -webkit-text-stroke: 1px rgba(0,0,0,0.45);
}

.holiday-hero .hero-title-sub {
    color: #ffffff;
    -webkit-text-stroke: 0.5px rgba(0,0,0,0.45);
    text-shadow: 0 3px 22px rgba(0,0,0,.9);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    animation: fadeInUp 1s ease-out 1s both;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid rgba(255, 255, 255, 0.7);
    border-bottom: 2px solid rgba(255, 255, 255, 0.7);
    transform: rotate(45deg);
    margin-top: 0.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Trust Section */
.trust-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.trust-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
    font-weight: 300;
    letter-spacing: -0.01em;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.trust-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    backdrop-filter: blur(10px);
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.trust-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 400;
}

.trust-item p {
    color: #a0a0a0;
    line-height: 1.6;
    font-weight: 300;
}

/* Venues Section */
.venues {
    padding: 6rem 0;
    background: linear-gradient(135deg, #000000 0%, #0f0f0f 100%);
}

.venues-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
}

/* Remove last-child spanning to avoid odd gaps when items are removed */

.venue-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
    grid-column: span 6;
}

.venue-card.featured { grid-column: span 12; }

@media (max-width: 900px) {
  .venues-grid { grid-template-columns: 1fr; }
  .venue-card, .venue-card.featured { grid-column: auto; }
}

.venue-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.6);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
}

/* remove duplicate/old rule */

.venue-image {
    height: 220px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.venue-card.featured .venue-image {
    height: 260px;
}

.venue-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.6) 0%, 
        rgba(212, 175, 55, 0.2) 100%
    );
    opacity: 0.9;
}

.venue-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(212, 175, 55, 0.9);
    color: #000000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.venue-content {
    padding: 1.5rem;
}

.venue-name {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
    color: #ffffff;
    font-weight: 400;
}

.venue-description {
    color: #a0a0a0;
    margin-bottom: 1.25rem;
    line-height: 1.5;
    font-weight: 300;
    font-size: 0.95rem;
}

.venue-features {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.feature {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: #000000;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.venue-capacity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
}

.capacity-label {
    font-weight: 500;
}

.capacity-number {
    color: #d4af37;
    font-weight: 600;
    font-size: 1.2rem;
}

/* Venue Breakdown Section */
.venue-breakdown {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.breakdown-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
    font-weight: 300;
}

.breakdown-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.breakdown-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.breakdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.breakdown-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #d4af37;
    font-weight: 500;
}

.breakdown-item p {
    color: #a0a0a0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-weight: 300;
}

.breakdown-capacity {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.capacity-detail {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Venues CTA */
.venues-cta {
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.venues-cta-content h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 400;
}

.venues-cta-content p {
    color: #a0a0a0;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Packages */
.packages { padding: 6rem 0; background: linear-gradient(135deg, #000000 0%, #0f0f0f 100%); }
.packages-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap:1.5rem; }
.package-card { border:1px solid rgba(255,255,255,0.1); border-radius: 14px; padding:1.5rem; background: rgba(255,255,255,0.05); backdrop-filter: blur(8px); }
.package-card.highlight { border-color: rgba(212,175,55,.4); background: rgba(212,175,55,.08); }
.package-card h3 { color:#fff; margin-bottom:.75rem; font-weight:500; }
.package-card ul { margin-left:1rem; color:#a0a0a0; }

/* Sticky CTA */
.sticky-cta { position: fixed; bottom: 20px; right: 20px; background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%); color:#000; padding:.85rem 1.1rem; border-radius:999px; font-weight:700; text-decoration:none; box-shadow:0 10px 30px rgba(212,175,55,.35); z-index:2001; }
.sticky-cta:hover { transform: translateY(-2px); }

/* Services Section */
.services {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: white;
}

.services .section-title {
    color: white;
    background: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.services-grid.two-col {
    grid-template-columns: repeat(2, 1fr);
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-media {
    height: 180px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    margin-bottom: 1.25rem;
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.service-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
}

.service-features li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
}

/* Gallery Section */
.gallery-preview {
    padding: 6rem 0;
    background: linear-gradient(135deg, #000000 0%, #0f0f0f 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    grid-auto-rows: 250px;
    grid-auto-flow: dense;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

/* Lightbox */
.lightbox.hidden { display: none; }
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 2rem;
}
.lightbox-image { max-width: 95vw; max-height: 75vh; border-radius: 8px; }
.lightbox-caption { color: #fff; margin-top: 1rem; opacity: 0.85; }
.lightbox-close {
    position: absolute; top: 16px; right: 16px; background: transparent; color: #fff; border: 0; font-size: 2rem; cursor: pointer;
}

/* Offer CTA */
.offer-cta { padding: 4rem 0; background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%); }
.offer-card { text-align: center; border: 1px solid rgba(212,175,55,.3); border-radius: 16px; padding: 2.5rem; background: rgba(212,175,55,.08); backdrop-filter: blur(8px); }
.offer-card h3 { color: #fff; font-weight: 400; margin-bottom: .75rem; }
.offer-card p { color: #a0a0a0; margin-bottom: 1.25rem; }
.offer-actions { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }

/* Benefits Kicker (improved to look great) */
.benefits-kicker { padding: 3.5rem 0; background: linear-gradient(180deg, rgba(0,0,0,0.8), rgba(0,0,0,0.92)); border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
.benefits-list { list-style: none; display: grid; grid-template-columns: repeat(12, 1fr); gap: 1rem; }
.benefit-item { grid-column: span 6; display:flex; align-items:flex-start; gap: .9rem; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); padding: 1rem 1.1rem; border-radius: 12px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.benefit-item:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,0.35); border-color: rgba(212,175,55,0.35); }
.benefit-item:nth-child(odd) { background: rgba(255,255,255,0.06); }
.benefit-icon { flex:0 0 auto; display:flex; align-items:center; justify-content:center; width: 30px; height: 30px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, #ffe793, #d4af37); box-shadow: inset 0 0 0 2px rgba(0,0,0,.35), 0 6px 14px rgba(0,0,0,.35); }
.benefit-icon svg { filter: drop-shadow(0 2px 6px rgba(0,0,0,.5)); }
.benefit-text { display:flex; flex-direction:column; gap: .15rem; }
.benefit-text strong { color:#fff; font-weight:700; letter-spacing: .01em; }
.benefit-text span { color:#cfcfcf; font-size: .98rem; }
@media (max-width: 900px) { .benefit-item { grid-column: span 12; } }

/* FAQ */
.faq { padding: 6rem 0; background: linear-gradient(135deg, #000 0%, #0f0f0f 100%); }
.faq-list details { border: 1px solid rgba(255,255,255,0.12); border-radius: 10px; padding: 1rem 1.25rem; margin-bottom: 1rem; background: rgba(255,255,255,0.04); }
.faq-list summary { cursor: pointer; font-weight: 600; color: #fff; }
.faq-list p { margin-top: .75rem; color: #a0a0a0; }

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    opacity: 0.8;
}

/* Quote Section */
.quote-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.quote-content {
    display: grid;
    /* Constrain the form column so the left content + image never collides */
    grid-template-columns: 1fr min(520px, 40vw);
    gap: 2rem;
    align-items: start;
}

@media (min-width: 1100px) {
    .quote-content {
        grid-template-columns: minmax(360px, 1fr) 560px;
        column-gap: 3rem;
    }
}

.quote-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 300;
}

.quote-description {
    font-size: 1.1rem;
    color: #a0a0a0;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 300;
}

/* Holiday form image sizing: simple image under text, contained in left column */
.quote-side-image { width: 100%; max-width: 720px; height: auto; border-radius: 14px; box-shadow: 0 12px 28px rgba(0,0,0,.35); display:block; margin: 1rem 0 0; }
@media (min-width: 1025px) { .quote-side-image { margin-top: .5rem; } }
@media (max-width: 1024px) { .quote-content { grid-template-columns: 1fr; } }
.quote-inline-image { width:100%; max-width: 720px; height:auto; border-radius: 14px; box-shadow: 0 12px 28px rgba(0,0,0,.35); display:block; margin: 1rem 0 0; }
@media (min-width: 1025px) { .quote-inline-image { margin-top: .5rem; } }

.quote-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.benefit-icon {
    color: #d4af37;
    font-weight: bold;
    font-size: 1.2rem;
}

.quote-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    background: rgba(255, 255, 255, 0.08);
}

.form-note {
    text-align: center;
    color: #a0a0a0;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.form-note a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
}

/* Ensure submit button isn't glued to the last field */
.quote-form .btn-full,
.event-form button[type="submit"] {
    margin-top: 1rem;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(135deg, #000000 0%, #0f0f0f 100%);
    color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: white;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #d4af37;
}

.value p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4af37;
    display: block;
    font-family: 'Playfair Display', serif;
}

.stat-card .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

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

.contact-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 300;
}

.contact-description {
    font-size: 1.1rem;
    color: #a0a0a0;
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 300;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #000000;
}

.contact-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 500;
}

.contact-text p {
    color: #a0a0a0;
}

.contact-text a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
}

.contact-cta {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cta-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    text-align: center;
    backdrop-filter: blur(10px);
}

.cta-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 400;
}

.cta-card p {
    color: #a0a0a0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-weight: 300;
}

/* Footer */
.footer {
    background: #000000;
    color: white;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #d4af37;
    font-weight: 400;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #d4af37;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.6);
}

.footer-social {
    display: flex;
    gap: 2rem;
}

.social-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #d4af37;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-title-main {
        font-size: 3rem;
    }
    
    .venue-card.featured {
        grid-column: span 1;
    }
    
    .quote-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(10px);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

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

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

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title-main {
        font-size: 2.5rem;
    }
    
    .hero-title-sub {
        font-size: 1.2rem;
    }
    
    .hero-cta { flex-direction: column; align-items: center; gap: .75rem; }
    
    .hero-stats { display: none; }
    
    .venues-grid,
    .services-grid,
    .services-grid.two-col {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .availability-inner { flex-direction: column; }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title-main { font-size: clamp(1.6rem, 7.5vw, 2rem); }
    .hero-title-sub { margin-bottom: 1rem; }
    .hero-scroll { display: none; }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .quote-form {
        padding: 2rem;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Intersection Observer Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.loading.fade-out {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid #e74c3c;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Smooth scrolling enhancements */
html {
    scroll-padding-top: var(--scrollPadTop, 80px);
}

/* Focus styles for accessibility */
/* Use focus-visible to avoid tap outlines on mobile and switch to brand color */
a:focus, button:focus, input:focus, select:focus, textarea:focus { outline: none; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid #d4af37;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        border: 2px solid #000;
    }
    
    .nav-link::after {
        height: 3px;
    }
}

/* Ferris Events Page Styles */
.ferris-hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.ferris-hero .hero-content { text-align: center; display:flex; justify-content:center; align-items:center; }

/* Improve legibility for the Ferris hero */
.ferris-hero .hero-title-main,
.ferris-hero .hero-title-sub,
.ferris-hero .hero-description {
    text-shadow: 0 3px 22px rgba(0,0,0,.9);
}

.ferris-hero .hero-title-main {
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: #ffffff !important;
    color: #ffffff !important;
}

.ferris-hero .hero-overlay {
    background: rgba(0,0,0,0.55);
}

.ferris-spaces {
    padding: 6rem 0;
    background: linear-gradient(135deg, #000000 0%, #0f0f0f 100%);
}

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

.space-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.space-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
}

.space-card.featured {
    grid-column: span 2;
}

.space-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.space-card.featured .space-image {
    height: 250px;
}

.space-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.6) 0%, 
        rgba(212, 175, 55, 0.2) 100%
    );
}

.space-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(212, 175, 55, 0.9);
    color: #000000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.space-content {
    padding: 2rem;
}

.space-name {
    font-size: 1.8rem;
    color: #d4af37;
    margin-bottom: 1rem;
    font-weight: 500;
}

.space-description {
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 300;
}

.space-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.feature-icon {
    font-size: 1.2rem;
    width: 30px;
}

.space-capacity {
    display: flex;
    gap: 1rem;
}

.capacity-option {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 1rem;
    text-align: center;
    flex: 1;
}

.space-capacity .capacity-label {
    display: block;
    color: #d4af37;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.space-capacity .capacity-number {
    display: block;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    margin-top: 0.5rem;
}

/* Ferris Offerings */
.ferris-offerings {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.offering-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.offering-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.offering-number {
    font-size: 3rem;
    font-weight: 700;
    color: #d4af37;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

.offering-card h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.offering-card p {
    color: #a0a0a0;
    line-height: 1.6;
    font-weight: 300;
}

/* Ferris CTA */
.ferris-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #000000 0%, #0f0f0f 100%);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 2rem;
    font-weight: 300;
}

.cta-description {
    font-size: 1.2rem;
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 3rem;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section spacing utilities */
.section-pad-tight { padding: 2.5rem 0 !important; }
.section-pad { padding: 4rem 0 !important; }
.section-pad-loose { padding: 6rem 0 !important; }

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-background {
        animation: none;
    }
    
    .hero-scroll {
        animation: none;
    }
}
