/* ============================================
   WEIRS DRIVE-IN THEATER — MAIN THEME STYLES
   Dark theme · Neon accents · Mobile-first
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --color-bg:            #0a0a0f;
    --color-bg-alt:        #111118;
    --color-bg-card:       #16161f;
    --color-bg-overlay:    rgba(10, 10, 15, 0.85);
    --color-surface:       #1c1c28;
    --color-border:        #2a2a3a;

    --color-neon-blue:     #00d4ff;
    --color-neon-pink:     #ff2d7b;
    --color-neon-amber:    #ffb800;
    --color-neon-green:    #39ff14;

    --color-text:          #e8e8f0;
    --color-text-muted:    #9898a8;
    --color-text-bright:   #ffffff;

    --font-heading:        'Oswald', sans-serif;
    --font-body:           'Inter', sans-serif;

    --glow-blue:           0 0 20px rgba(0, 212, 255, 0.3), 0 0 40px rgba(0, 212, 255, 0.1);
    --glow-pink:           0 0 20px rgba(255, 45, 123, 0.3), 0 0 40px rgba(255, 45, 123, 0.1);
    --glow-amber:          0 0 20px rgba(255, 184, 0, 0.3), 0 0 40px rgba(255, 184, 0, 0.1);

    --radius:              8px;
    --radius-lg:           16px;
    --transition:          0.3s ease;
    --max-width:           1200px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-text-bright);
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }

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

a {
    color: var(--color-neon-blue);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-neon-pink);
}

img {
    max-width: 100%;
    height: auto;
}

/* --- Utility Classes --- */
.container,
.container-xl {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.25rem;
}

.section-padding {
    padding: 5rem 0;
}

.section-padding-sm {
    padding: 3rem 0;
}
h2 .text-neon-blue { display:block}
.text-center { text-align: center; }
.text-neon-blue { color: var(--color-neon-blue); }
.text-neon-pink { color: var(--color-neon-pink); }
.text-neon-amber { color: var(--color-neon-amber); }
.text-muted { color: var(--color-text-muted); }

.neon-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-neon-blue), var(--color-neon-pink));
    border: none;
    margin: 1rem auto;
    border-radius: 2px;
}

.neon-line-left {
    margin-left: 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* --- Buttons --- */
.btn-neon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 2px solid var(--color-neon-blue);
    color: var(--color-neon-blue);
    background: transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-neon:hover,
.btn-neon:focus {
    background: var(--color-neon-blue);
    color: var(--color-bg);
    box-shadow: var(--glow-blue);
    text-decoration: none;
}

.btn-neon-pink {
    border-color: var(--color-neon-pink);
    color: var(--color-neon-pink);
}

.btn-neon-pink:hover,
.btn-neon-pink:focus {
    background: var(--color-neon-pink);
    color: var(--color-bg);
    box-shadow: var(--glow-pink);
}

.btn-neon-amber {
    border-color: var(--color-neon-amber);
    color: var(--color-neon-amber);
}

.btn-neon-amber:hover,
.btn-neon-amber:focus {
    background: var(--color-neon-amber);
    color: var(--color-bg);
    box-shadow: var(--glow-amber);
}

.btn-neon-filled {
    background: var(--color-neon-blue);
    color: var(--color-bg);
    border-color: var(--color-neon-blue);
}

.btn-neon-filled:hover {
    background: transparent;
    color: var(--color-neon-blue);
}

.btn-neon-lg {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
}

/* --- Navigation --- */
#wrapper-navbar,
.weirs-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    transition: background var(--transition);
}

.navbar,
.weirs-nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand img,
.weirs-logo img {
    height: 50px;
    width: auto;
    display: block;
}

.navbar-nav,
.weirs-nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-nav .nav-link,
.weirs-nav-links a {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-text);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius);
    transition: all var(--transition);
    text-decoration: none;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.weirs-nav-links a:hover {
    color: var(--color-neon-blue);
    background: rgba(0, 212, 255, 0.08);
}

.navbar-nav .nav-link.active,
.weirs-nav-links a.active {
    color: var(--color-neon-blue);
}

/* Dropdown menus */
.dropdown-menu {
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 0.5rem 0;
    min-width: 220px;
}

.dropdown-menu .dropdown-item {
    color: var(--color-text);
    padding: 0.6rem 1.25rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    transition: all var(--transition);
}

.dropdown-menu .dropdown-item:hover {
    background: rgba(0, 212, 255, 0.1);
    color: var(--color-neon-blue);
}

/* Mobile nav toggle */
.navbar-toggler {
    border: 1px solid var(--color-border);
    padding: 0.5rem;
    background: transparent;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(232, 232, 240, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Body offset for fixed nav */
body {
    padding-top: 72px;
}

/* --- Hero Section --- */
.weirs-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--color-bg);
}

.weirs-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.weirs-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 15, 0.4) 0%,
        rgba(10, 10, 15, 0.7) 50%,
        rgba(10, 10, 15, 0.95) 100%
    );
}

.weirs-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
     margin: 0 auto ;
}

.weirs-hero-logo {
    max-width: 350px;
    width: 80%;
    margin: 0 auto 2rem;
    display: block;
}

.weirs-hero h1 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    color: var(--color-text-bright);
}

.weirs-hero p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.weirs-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* Animated stars background */
.weirs-hero-stars {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: visible;
    pointer-events: none;
}

.weirs-hero-stars span {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    animation: twinkle 4s infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.8; }
}

/* --- Section Headers --- */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* --- Featured Events Grid --- */
.events-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 960px) {
    .events-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.event-card {
    position: relative;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}

.event-card:hover {
    border-color: var(--color-neon-blue);
    transform: translateY(-4px);
    box-shadow: var(--glow-blue);
}

.event-card-image {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    display: block;
}

.event-card-placeholder {
    width: 100%;
    aspect-ratio: 3 / 2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: linear-gradient(135deg, var(--color-bg-alt), var(--color-surface));
}

.event-card-body {
    padding: 1.5rem;
}

.event-card-date {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-neon-amber);
    margin-bottom: 0.5rem;
}

.event-card-body h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.event-card-body p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

/* --- About / Intro Section --- */
.weirs-about {
    background: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.weirs-about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .weirs-about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.weirs-about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.weirs-about-image img {
    width: 100%;
    display: block;
}

.weirs-about-image-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    border-radius: var(--radius-lg);
}

/* --- Page Hero (Inner Pages) --- */
.page-hero {
    position: relative;
    padding: 6rem 0 4rem;
    text-align: center;
    background: linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
    border-bottom: 1px solid var(--color-border);
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero h1 {
    position: relative;
    margin-bottom: 1rem;
}

.page-hero p {
    position: relative;
    color: var(--color-text-muted);
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto;
}

/* --- Content Sections --- */
.content-section {
    padding: 4rem 0;
}

.content-section:nth-child(even) {
    background: var(--color-bg-alt);
}

.content-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: border-color var(--transition);
}

.content-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
}

.content-card h3 {
    margin-bottom: 1rem;
    color: var(--color-neon-blue);
    font-size: 1.3rem;
}

/* --- Info Grid --- */
.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 960px) {
    .info-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.info-item {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition);
}

.info-item:hover {
    border-color: var(--color-neon-blue);
    transform: translateY(-2px);
}

.info-item-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.info-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-item p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin: 0;
}

/* --- Date Banner --- */
.date-banner {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 45, 123, 0.1));
    border: 1px solid var(--color-neon-blue);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    margin: 2rem 0;
    box-shadow: var(--glow-blue);
}

.date-banner h2 {
    color: var(--color-neon-blue);
    margin-bottom: 0.5rem;
}

.date-banner .date-range {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-text-bright);
    letter-spacing: 0.05em;
}

.date-banner .date-detail {
    color: var(--color-text-muted);
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* --- RV Booking Form --- */
.rv-booking-section {
    background: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
}

.rv-booking-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

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

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-neon-blue);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.15);
}

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

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

.price-summary {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.price-line {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    border-bottom: 1px solid var(--color-border);
}

.price-line:last-child {
    border-bottom: none;
}

.price-total {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-neon-blue);
    padding-top: 1rem;
    margin-top: 0.5rem;
    border-top: 2px solid var(--color-neon-blue);
}

/* --- Rules List --- */
.rules-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rules-list li {
    position: relative;
    padding: 0.75rem 0 0.75rem 2rem;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text);
    font-size: 0.95rem;
}

.rules-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--color-neon-amber);
    font-weight: bold;
}

.rules-list li:last-child {
    border-bottom: none;
}

/* --- Vendor Types Grid --- */
.vendor-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .vendor-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.vendor-type {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: border-color var(--transition);
}

.vendor-type:hover {
    border-color: var(--color-neon-amber);
}

.vendor-type-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.vendor-type h4 {
    font-size: 1rem;
    margin: 0 0 0.25rem;
}

.vendor-type p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin: 0;
}

/* --- Movie Schedule --- */
.movie-notice {
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.08), rgba(255, 184, 0, 0.02));
    border: 1px solid var(--color-neon-amber);
    border-radius: var(--radius-lg);
    padding: 3rem;
    text-align: center;
    max-width: 600px;
    margin: 2rem auto;
}

.movie-notice h3 {
    color: var(--color-neon-amber);
}

/* --- CTA Banner --- */
.cta-banner {
    position: relative;
    padding: 5rem 0;
    text-align: center;
    background: linear-gradient(135deg, #0d1b2a, #1b2838);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(255, 45, 123, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta-banner h2 {
    position: relative;
    margin-bottom: 1rem;
}

.cta-banner p {
    position: relative;
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner .btn-neon {
    position: relative;
}






/* --- Email Signup Section --- */
.weirs-signup {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.weirs-signup-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.weirs-signup-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.weirs-signup-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 15, 0.92) 0%,
        rgba(13, 27, 42, 0.88) 50%,
        rgba(10, 10, 15, 0.92) 100%
    );
}

.weirs-signup .container-xl {
    position: relative;
    z-index: 2;
}

.weirs-signup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.weirs-signup-text h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    margin-bottom: 0.5rem;
    color: var(--color-text-bright);
}

.weirs-signup-text p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.weirs-signup-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.weirs-signup-list li {
    position: relative;
    padding: 0.45rem 0 0.45rem 1.75rem;
    color: var(--color-text);
    font-size: 1rem;
    line-height: 1.6;
}

.weirs-signup-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-neon-blue);
    box-shadow: 0 0 8px rgba(0, 212, 255, 0.4);
}

.weirs-signup-form {
    background: rgba(20, 24, 36, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.weirs-signup-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin: 1rem 0 0;
    font-style: italic;
}

/* Glow submit button override inside signup */
.weirs-signup-form .gform_wrapper.gravity-theme .gform_button,
.weirs-signup-form .gform_wrapper.gravity-theme input[type="submit"],
.weirs-signup-form .gform_wrapper.gravity-theme button[type="submit"],
.weirs-signup-form .gform_wrapper.gravity-theme .gform-theme-button--primary {
    width: 100%;
    box-shadow: 0 0 16px rgba(0, 212, 255, 0.3), 0 0 40px rgba(0, 212, 255, 0.1) !important;
    transition: background 0.25s, box-shadow 0.35s, transform 0.2s !important;
}

.weirs-signup-form .gform_wrapper.gravity-theme .gform_button:hover,
.weirs-signup-form .gform_wrapper.gravity-theme input[type="submit"]:hover,
.weirs-signup-form .gform_wrapper.gravity-theme button[type="submit"]:hover,
.weirs-signup-form .gform_wrapper.gravity-theme .gform-theme-button--primary:hover {
    box-shadow: 0 0 24px rgba(0, 212, 255, 0.5), 0 0 60px rgba(0, 212, 255, 0.2) !important;
    transform: translateY(-2px) !important;
}

@media (max-width: 768px) {
    .weirs-signup {
        padding: 4rem 0;
    }

    .weirs-signup-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .weirs-signup-text .neon-line {
        margin-left: auto;
    }

    .weirs-signup-list {
        display: inline-block;
        text-align: left;
    }

    .weirs-signup-form {
        padding: 1.75rem;
    }
}

/* --- Footer --- */
.weirs-footer {
    background: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
    padding: 4rem 0 0;
}

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

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 960px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-brand img {
    height: 45px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    max-width: 300px;
}

.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-bright);
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-col ul li a {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-col ul li a:hover {
    color: var(--color-neon-blue);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.footer-contact-icon {
    color: var(--color-neon-blue);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding: 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--color-text-muted);
    font-size: 0.8rem;
    margin: 0;
}

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

.footer-social a {
    color: var(--color-text-muted);
    font-size: 1.25rem;
    transition: color var(--transition);
}

.footer-social a:hover {
    color: var(--color-neon-blue);
}

/* --- Parking Page --- */
.parking-rate {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--color-neon-amber);
    text-align: center;
    margin: 1rem 0;
}

.parking-rate span {
    font-size: 0.5em;
    color: var(--color-text-muted);
    font-weight: 400;
}

/* --- Responsive Overrides --- */
@media (max-width: 767px) {
    .section-padding {
        padding: 3.5rem 0;
    }

    .weirs-hero {
        min-height: 80vh;
    }

    .weirs-hero-logo {
        max-width: 250px;
    }

    .weirs-hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .weirs-hero-ctas .btn-neon {
        width: 100%;
        max-width: 300px;
    }

    .page-hero {
        padding: 4rem 0 3rem;
    }

    .rv-booking-form {
        padding: 1.5rem;
    }

    .date-banner {
        padding: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* --- WordPress Admin Bar Fix --- */
body.admin-bar #wrapper-navbar,
body.admin-bar .weirs-navbar {
    top: 32px;
}

@media (max-width: 782px) {
    body.admin-bar #wrapper-navbar,
    body.admin-bar .weirs-navbar {
        top: 46px;
    }
}

/* --- Understrap Overrides --- */
#page {
    background: var(--color-bg);
}

#wrapper-footer {
    display: none;
}

.entry-content {
    color: var(--color-text);
}

#content {
    background: var(--color-bg);
}

.site {
    background: var(--color-bg);
}

/* Override Bootstrap dark backgrounds */
.bg-dark {
    background-color: var(--color-bg-alt) !important;
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--color-text);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
    color: var(--color-neon-blue);
}

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

.animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Stagger children */
.animate-in.visible:nth-child(2) { transition-delay: 0.1s; }
.animate-in.visible:nth-child(3) { transition-delay: 0.2s; }
.animate-in.visible:nth-child(4) { transition-delay: 0.3s; }

/* --- Enhanced Star Animations --- */
@keyframes shootingStar {
    0% {
        transform: translateX(0) translateY(0);
        opacity: 1;
    }
    70% {
        opacity: 1;
    }
    100% {
        transform: translateX(-300px) translateY(200px);
        opacity: 0;
    }
}

@keyframes fadeInLine {
    0% {
        opacity: 0;
        transform: scaleX(0);
    }
    100% {
        opacity: 0.4;
        transform: scaleX(1);
    }
}

.constellation-star {
    animation: twinkle 3s ease-in-out infinite alternate;
}

@keyframes twinkle {
    0% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
    100% {
        opacity: 0.6;
        transform: scale(1);
    }
}

.shooting-star {
    pointer-events: none;
    z-index: 1;
}

/* Enhanced twinkling for regular stars */
.weirs-hero-stars .star {
    border-radius: 50%;
    position: absolute;
    animation: enhancedTwinkle 4s ease-in-out infinite;
}

@keyframes enhancedTwinkle {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* --- Container Overrides --- */
/* Small devices */
.container-sm {
    max-width: 540px !important;
}

/* Medium devices */
.container-md {
    max-width: 720px !important;
}

/* Large devices */
.container-lg {
    max-width: 960px !important;
}

/* Extra large devices */
.container-xl {
    max-width: 1140px !important;
}

/* Extra extra large devices */
.container-xxl {
    max-width: 1320px !important;
}

/* --- Action Bar (below hero) --- */
.action-bar {
    background: var(--color-bg-alt);
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.action-bar-row {
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.btn-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1 1 0;
    padding: 1.25rem 0.75rem;
    text-decoration: none;
    color: var(--color-text-bright);
    font-family: var(--font-heading);
    transition: background 0.25s ease, color 0.25s ease;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    gap: 0.4rem;
}

.btn-action:last-child {
    border-right: none;
}

.btn-action:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--color-neon-blue);
}

.btn-action-icon {
    font-size: 1.6rem;
    line-height: 1;
    display: block;
}

.btn-action-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .action-bar-row {
        flex-wrap: wrap;
    }

    .btn-action {
        flex: 1 1 33.333%;
        padding: 1rem 0.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .btn-action:nth-child(3) {
        border-right: none;
    }

    .btn-action-icon {
        font-size: 1.4rem;
    }

    .btn-action-label {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .btn-action {
        flex: 1 1 50%;
    }

    .btn-action:nth-child(3) {
        border-right: 1px solid rgba(255, 255, 255, 0.06);
    }

    .btn-action:nth-child(2n) {
        border-right: none;
    }
}

/* --- Featured Event Highlight --- */
.featured-event-highlight {
    background: var(--color-bg-alt);
}

.featured-event-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--color-bg);
}

.featured-event-image {
    background-size: cover;
    background-position: center;
    min-height: 350px;
}

.featured-event-body {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-event-badge {
    display: inline-block;
    background: var(--color-neon-pink);
    color: var(--color-bg);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.35rem 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    width: fit-content;
}

.featured-event-body h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 0.5rem;
    color: var(--color-text-bright);
}

.featured-event-dates {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-neon-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}

.featured-event-body p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .featured-event-card {
        grid-template-columns: 1fr;
    }

    .featured-event-image {
        min-height: 200px;
    }

    .featured-event-body {
        padding: 2rem;
    }
}

/* --- Amenity Notes --- */
.amenity-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.amenity-note {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--color-text-muted);
    background: rgba(255, 255, 255, 0.03);
}

.amenity-note::before {
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.amenity-note-positive {
    border-color: rgba(0, 200, 83, 0.3);
    color: #00c853;
}

.amenity-note-positive::before {
    content: '\2713';
}

.amenity-note-negative {
    border-color: rgba(255, 82, 82, 0.3);
    color: #ff5252;
}

.amenity-note-negative::before {
    content: '\2717';
}

/* ═══════════════════════════════════════════════════════════════
   GRAVITY FORMS — Dark Theme Override
   ═══════════════════════════════════════════════════════════════ */

/* --- Form Wrapper --- */
.gform_wrapper.gravity-theme {
    color: var(--color-text-body);
}

/* --- Labels --- */
.gform_wrapper.gravity-theme .gfield_label,
.gform_wrapper.gravity-theme .gfield_label_before_complex,
.gform_wrapper.gravity-theme .ginput_complex label,
.gform_wrapper.gravity-theme .gfield_description,
.gform_wrapper.gravity-theme legend.gfield_label {
    color: var(--color-neon-blue, #00d4ff) !important;
    font-family: var(--font-display, 'Righteous', sans-serif);
    font-size: 0.85rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.gform_wrapper.gravity-theme .gfield_description,
.gform_wrapper.gravity-theme .ginput_complex label,
.gform_wrapper.gravity-theme .gfield_label_before_complex {
    color: var(--color-text-muted, #8b8fa3) !important;
    font-family: inherit;
    text-transform: none;
    font-size: 0.8rem;
}

.gform_wrapper.gravity-theme .gfield_required {
    color: #ff5252 !important;
}

/* --- Inputs, Textareas, Selects --- */
.gform_wrapper.gravity-theme input[type="text"],
.gform_wrapper.gravity-theme input[type="email"],
.gform_wrapper.gravity-theme input[type="tel"],
.gform_wrapper.gravity-theme input[type="url"],
.gform_wrapper.gravity-theme input[type="number"],
.gform_wrapper.gravity-theme input[type="date"],
.gform_wrapper.gravity-theme input[type="password"],
.gform_wrapper.gravity-theme textarea,
.gform_wrapper.gravity-theme select,
.gform_wrapper.gravity-theme .ginput_container input,
.gform_wrapper.gravity-theme .ginput_container textarea,
.gform_wrapper.gravity-theme .ginput_container select {
    background: var(--color-bg-card, #141824) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 8px !important;
    color: var(--color-text-bright, #e4e6eb) !important;
    padding: 0.75rem 1rem !important;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.gform_wrapper.gravity-theme input:focus,
.gform_wrapper.gravity-theme textarea:focus,
.gform_wrapper.gravity-theme select:focus {
    border-color: var(--color-neon-blue, #00d4ff) !important;
    box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.15) !important;
    outline: none !important;
}

.gform_wrapper.gravity-theme input::placeholder,
.gform_wrapper.gravity-theme textarea::placeholder {
    color: rgba(255, 255, 255, 0.25) !important;
}

/* --- Date Picker Inputs --- */
.gform_wrapper.gravity-theme .datepicker {
    background: var(--color-bg-card, #141824) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: var(--color-text-bright, #e4e6eb) !important;
}

/* --- Section Breaks / HTML Fields --- */
.gform_wrapper.gravity-theme .gsection {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.gform_wrapper.gravity-theme .gsection_title {
    color: var(--color-text-bright, #e4e6eb) !important;
    font-family: var(--font-display, 'Righteous', sans-serif);
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.gform_wrapper.gravity-theme .gsection_description {
    color: var(--color-text-muted, #8b8fa3);
}

/* --- HTML Fields --- */
.gform_wrapper.gravity-theme .gfield_html {
    color: var(--color-text-body);
}

/* --- Submit Button --- */
.gform_wrapper.gravity-theme .gform_button,
.gform_wrapper.gravity-theme input[type="submit"],
.gform_wrapper.gravity-theme button[type="submit"] {
    background: var(--color-neon-blue, #00d4ff) !important;
    color: var(--color-bg, #0a0e17) !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 0.85rem 2.5rem !important;
    font-family: var(--font-display, 'Righteous', sans-serif) !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
    box-shadow: 0 0 12px rgba(0, 212, 255, 0.25);
}

.gform_wrapper.gravity-theme .gform_button:hover,
.gform_wrapper.gravity-theme input[type="submit"]:hover,
.gform_wrapper.gravity-theme button[type="submit"]:hover {
    background: #00b8e0 !important;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
    transform: translateY(-1px);
}

/* --- Checkboxes & Radios --- */
.gform_wrapper.gravity-theme .gchoice label,
.gform_wrapper.gravity-theme .gfield_checkbox label,
.gform_wrapper.gravity-theme .gfield_radio label {
    color: var(--color-text-body) !important;
}

.gform_wrapper.gravity-theme input[type="checkbox"],
.gform_wrapper.gravity-theme input[type="radio"] {
    accent-color: var(--color-neon-blue, #00d4ff);
}

/* --- Validation Errors --- */
.gform_wrapper.gravity-theme .gfield_error input,
.gform_wrapper.gravity-theme .gfield_error textarea,
.gform_wrapper.gravity-theme .gfield_error select {
    border-color: #ff5252 !important;
}

.gform_wrapper.gravity-theme .gfield_error .gfield_label {
    color: #ff5252 !important;
}

.gform_wrapper.gravity-theme .validation_message,
.gform_wrapper.gravity-theme .gform_validation_errors {
    color: #ff5252 !important;
    background: rgba(255, 82, 82, 0.08) !important;
    border: 1px solid rgba(255, 82, 82, 0.3) !important;
    border-radius: 8px !important;
    padding: 0.75rem 1rem;
}

.gform_wrapper.gravity-theme .gform_validation_errors h2 {
    color: #ff5252 !important;
}

/* --- Confirmation Message --- */
.gform_confirmation_message {
    background: rgba(0, 212, 255, 0.06);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    color: var(--color-text-bright, #e4e6eb);
    text-align: center;
    font-size: 1.05rem;
}

/* --- Progress Bar --- */
.gform_wrapper.gravity-theme .gf_progressbar {
    background: rgba(255, 255, 255, 0.06) !important;
    border-radius: 8px;
    overflow: hidden;
}

.gform_wrapper.gravity-theme .gf_progressbar_percentage {
    background: var(--color-neon-blue, #00d4ff) !important;
    color: var(--color-bg, #0a0e17) !important;
    font-weight: 700;
}

/* --- CAPTCHA --- */
.gform_wrapper.gravity-theme .gfield .gcaptcha_wrapper {
    filter: invert(0.85) hue-rotate(180deg);
    border-radius: 8px;
    overflow: hidden;
}

/* --- Consent / Description Links --- */
.gform_wrapper.gravity-theme a {
    color: var(--color-neon-blue, #00d4ff);
}

/* --- Select Dropdown Arrow (dark bg fix) --- */
.gform_wrapper.gravity-theme select {
    appearance: auto;
    background-image: none !important;
}

/* --- Field Spacing --- */
.gform_wrapper.gravity-theme .gfield {
    margin-bottom: 1.25rem;
}

/* --- Form Card Container (when inside content-card) --- */
.content-card .gform_wrapper.gravity-theme,
.content-section .gform_wrapper.gravity-theme {
    padding: 0;
}

/* --- Responsive: Stack name fields on mobile --- */
@media (max-width: 640px) {
    .gform_wrapper.gravity-theme .ginput_complex {
        flex-direction: column;
    }
    .gform_wrapper.gravity-theme .ginput_complex .ginput_left,
    .gform_wrapper.gravity-theme .ginput_complex .ginput_right {
        width: 100% !important;
    }
}


/* --- Print Styles --- */
@media print {
    .weirs-navbar,
    #wrapper-navbar,
    .weirs-footer,
    .cta-banner {
        display: none;
    }

    body {
        background: #fff;
        color: #000;
        padding-top: 0;
    }
}
