.flatpickr-day.flatpickr-disabled, .flatpickr-day.flatpickr-disabled:hover {
    cursor: not-allowed;
    color: rgba(255, 255, 255, 0.25) !important;
}

:root {
    --black: #000000;
    --red: #e31c1c;
    --gold: #f7ce42;
    --text: #ffffff;
}

/** temp css **/
.cause-banner {
    background: #dff0ff;
    color: #102033;
    border-top: 2px solid #5aa9e6;
    border-bottom: 2px solid #5aa9e6;
    padding: 12px 18px;
    display: block;
    gap: 14px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
}

.cause-banner a {
    background: #005baa;
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}
/** end temp css **/

html,
body {
    background-color: var(--black);
    color: var(--text);
}

body,
p,
div,
span,
li,
label,
input,
select,
textarea,
button,
small {
    color: var(--text);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', sans-serif !important;
    color: var(--text);
    letter-spacing: 1px;
}

/* homepage */
.home-page {
    margin: 20px auto;
    padding: 0px;
    color: var(--text);
}

.wrap {
    width: min(1200px, 92%);
    margin: 0 auto;
}

.section {
    padding: 36px 0;
}

.section-dark {
    background: linear-gradient(180deg, #111 0%, #000 100%);
}

.accent {
    color: var(--gold);
}

.muted {
    color: rgba(255, 255, 255, 0.8);
}

.tiny {
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.5;
}

/* hero */
.site-content {
    padding: 10px 0 50px;
    background:
        radial-gradient(circle at top center, #e31c1c, transparent 45%),
        linear-gradient(180deg, #111 0%, #000 100%);
    text-align: center;
}

.site-content:has(#partySelectionPanel) {
    padding: 10px 0 50px;
    background:
        radial-gradient(circle at top center, #301934, transparent 45%),
        linear-gradient(180deg, #111 0%, #000 100%);
    text-align: center;
}

/* hero */
.hero-home {
    padding: 10px 0 10px;
     background:
        radial-gradient(circle at top center, #e31c1c, transparent 45%),
        linear-gradient(180deg, #111 0%, #000 100%);
    text-align: center;
}

.hero-home-inner {
    display: block;
}

.hero-home h1 {
    margin: 0 0 18px;
    font-size: clamp(2.0rem, 6vw, 5rem);
    line-height: 0.95;
    color: var(--text);
}

.booking-wrap h1 {
    margin: 0 0 18px;
    font-size: clamp(1.0rem, 6vw, 5rem) !important;
    line-height: 0.95;
    color: var(--text);
}

.booking-wrap p {
    color: var(--text);
}

.hero-subhead {
    max-width: 850px;
    margin: 0 auto 18px;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-lines {
    margin: 0 auto 0px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    line-height: 1.35;
    letter-spacing: 1px;
    color: var(--gold);
}

.cta {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* buttons */
.btn {
    display: inline-block;
    padding: 12px 20px;
    background: var(--red);
    color: var(--text);
    text-decoration: none;
    border: 2px solid var(--red);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
    transition: 0.2s ease;
}

.btn:hover {
    background: #b91515;
    border-color: #b91515;
    text-decoration: none;
}

.btn-outline {
    background: transparent;
    border-color: var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

/* experience cards */
.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 28px;
}

.card {
    background: #000000;
    border: 1px solid rgba(247, 206, 66, 0.2);
    color: var(--text);
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
    height: 100%;
}

.card * {
    color: inherit;
}

.card img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card .body {
    padding: 18px;
}

.card h3 {
    margin: 8px 0 10px;
    font-size: 1.8rem;
    color: var(--text);
}

.tag {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--gold);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 1px;
}

.actions {
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.chip {
    display: inline-block;
    padding: 6px 10px;
    border: 1px solid rgba(247, 206, 66, 0.45);
    color: var(--gold);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 1px;
    text-align: center;
    background: #000;
}

/* perks */
.perks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 26px;
}

.perk {
    background: #000000;
    border-left: 4px solid var(--red);
    padding: 20px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.6;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}

/* lower split section */
.feature-split {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

/* =========================
   HEADER
========================= */

.site-header {
    background: #000;
    color: #fff;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
}

.logo img {
    display: block;
    width: 100%;
    max-width: 3.7in;
    height: auto;
    padding: 10px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.main-nav a,
.dropdown-toggle {
    font-family: 'Bebas Neue', sans-serif !important;
    color: #fff;
    text-decoration: none;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 0;
    font-size: 1.5em;
    margin-right: 2vw;
    letter-spacing: 1px;
}

.main-nav a:hover,
.dropdown-toggle:hover {
    text-decoration: underline;
    color: var(--gold);
}

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 220px;
    background: #000;
    border: 1px solid #333;
    padding: 10px 0;
    z-index: 1000;
}

.dropdown-menu a {
    display: block;
    padding: 10px 14px;
    text-decoration: none;
    white-space: nowrap;
    color: var(--text);
}

.dropdown-menu a:hover {
    background: #111;
    color: var(--gold);
    text-decoration: none;
}

.nav-dropdown.open .dropdown-menu {
    display: block;
}

.header-facebook {
    font-size: 27px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    color: var(--text);
}

.header-facebook:hover {
    color: var(--gold);
}

.nav-toggle {
    display: none;
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
    width: 34px;
    height: 28px;
    flex-direction: column;
    justify-content: space-between;
}

.nav-toggle span {
    display: block;
    height: 4px;
    width: 100%;
    background: #fff;
    border-radius: 2px;
}

/* =========================
   FOOTER
========================= */

.site-footer {
    background: #000;
    color: #fff;
    border-top: 2px solid var(--red);
    padding: 20px 20px 14px;
    font-size: 0.95rem;
    margin-top: 30px;
}

.site-footer a {
    color: #fff;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
    color: var(--gold);
}

.footer-top,
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 18px;
}

.footer-hours,
.footer-contact {
    width: 48%;
}

.footer-hours h2 {
    font-size: 1.3em;
    margin: 0 0 8px;
    color: var(--gold);
}

.footer-hours p,
.footer-contact p,
.footer-bottom div {
    margin: 0 0 8px;
    line-height: 1.45;
    color: var(--text);
}

.footer-contact {
    text-align: right;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #222;
    padding-top: 12px;
    font-size: 0.9rem;
}

.large-float {
    float: left;
}

/* forms / inputs */
input,
select,
textarea {
    background: #000;
    color: var(--text);
    border: 1px solid rgba(247, 206, 66, 0.35);
}

input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* links in content */
a {
    color: var(--gold);
}

a:hover {
    color: var(--red);
}

/* mobile */
@media (max-width: 900px) {
    .grid {
        grid-template-columns: 1fr;
    }

    .perks {
        grid-template-columns: 1fr;
    }

    .feature-split {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 40px 0;
    }

    .hero-home {
        padding: 50px 0 36px;
    }

    .hero-subhead {
        font-size: 1rem;
    }

    .hero-lines {
        font-size: 1.2rem;
    }

    .card img {
        height: 200px;
    }

    .nav-toggle {
        display: flex;
        margin-bottom: 15px;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: #000;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 16px 20px;
        border-top: 1px solid #222;
        z-index: 1000;
    }

    .main-nav.nav-open {
        display: flex;
    }

    .main-nav > a,
    .nav-dropdown,
    .header-facebook {
        width: 100%;
        padding: 10px 0;
    }

    .dropdown-toggle {
        width: 100%;
        text-align: left;
    }

    .dropdown-menu {
        position: static;
        display: none;
        border: 0;
        background: #111;
        margin-top: 10px;
        min-width: 100%;
        padding: 6px 0;
    }

    .nav-dropdown.open .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 10px 12px;
    }

    .header-facebook {
        font-size: 27px;
    }

    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        position: relative;
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .large-float {
        float: none;
    }

    .site-footer {
        padding: 14px 14px 10px;
        font-size: 0.82rem;
    }

    .footer-top {
        display: block;
        margin-bottom: 12px;
    }

    .footer-hours,
    .footer-contact {
        width: 100%;
        text-align: center;
        margin-bottom: 12px;
    }

    .footer-hours h2 {
        font-size: 1.1em;
        margin-bottom: 6px;
    }

    .footer-hours p,
    .footer-contact p,
    .footer-bottom div {
        margin-bottom: 0px;
        line-height: 1.35;
    }

    .footer-bottom {
        padding-top: 10px;
        font-size: 0.8rem;
    }
}