/* DESIGN VARIABLE VALUES */
/* Update your font-heading variable to use Fredoka */
:root {
    --bg-dark: #060b14;
    --bg-card: #0d1527;
    --orange: #ff6a00;
    --orange-glow: rgba(255, 106, 0, 0.4);
    --blue: #00b0ff;
    --blue-glow: rgba(0, 176, 255, 0.4);
    --text-light: #ffffff;
    --text-gray: #a0aec0;
    --font-heading: 'Fredoka', sans-serif; 
    --font-body: 'arial', sans-serif;
}

/* LAYOUT RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative; /* Crucial anchor for the background layer */
}

/* THIS LAYER HANDLES THE SEMI-TRANSPARENT BACKGROUND IMAGE */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Pushes the image layer completely behind your text and cards */
    
    /* Insert your background file here */
    background-image: url('Bounce-Air-2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    /* Control transparency level here (0.0 is invisible, 1.0 is fully solid) */
    opacity: 0.35; 
}


/* NAVIGATION INTERFACE STRUCTURE */
header {
    background-color: rgba(6, 11, 20, 0.95);
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
   /* text-transform: uppercase;	*/
    color: var(--blue);
    line-height: 1;
}

header h2 {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-light);
  /*  text-transform: uppercase;  */
    letter-spacing: 2px;
    font-weight: 700;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--orange);
}

/* NEW LOGO IMAGE STYLES */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 75px; /* Adjust this height to match your specific logo dimensions */
    width: auto;  /* Maintains your logo's original aspect ratio */
    display: block;
    transition: transform 0.2s ease;
}

/* Adds a subtle interactive pop when a user hovers over the logo */
.logo-link:hover .logo-image {
    transform: scale(1.03);
}

/* BOOKING BUTTON INTERFACES */
header div a {
    background-color: var(--orange);
    color: var(--text-light);
    font-family: var(--font-heading);
    text-transform: uppercase;
    padding: 10px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: bold;
    box-shadow: 0 0 15px var(--orange-glow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: inline-block;
}

header div a:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px var(--orange);
}

/* HERO SECTION SPLASH */
main > section:first-of-type {
    padding: 100px 5% 80px 5%;
    text-align: center;
}

main > section:first-of-type h1 {
    font-family: var(--font-heading);
    font-size: 72px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

main > section:first-of-type p {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 40px;
}

main > section:first-of-type div {
    display: flex;
    justify-content: center;
    gap: 25px;
}

main > section:first-of-type div a {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 20px;
    padding: 14px 40px;
    text-decoration: none;
    color: var(--text-light);
    border-radius: 4px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    min-width: 220px;
    display: inline-block;
}

main > section:first-of-type div a:first-child {
    background-color: var(--orange);
    box-shadow: 0 0 15px var(--orange-glow);
}

main > section:first-of-type div a:first-child:hover {
    box-shadow: 0 0 25px var(--orange);
    transform: translateY(-2px);
}

main > section:first-of-type div a:last-child {
    background-color: var(--blue);
    box-shadow: 0 0 15px var(--blue-glow);
}

main > section:first-of-type div a:last-child:hover {
    box-shadow: 0 0 25px var(--blue);
    transform: translateY(-2px);
}

/* CARD TILES & BORDER HOVER EFFECTS */
article {
    background-color: var(--bg-card);
    border-radius: 6px;
    padding: 110px 15px 25px 15px; /* Spacing accounts for missing image files */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-image: linear-gradient(135deg, #101c36 0%, #0d1527 100%);
}

/* SUBPAGE SPECIFIC OVERRIDES */
.subpage-hero {
    padding: 60px 5% 40px 5% !important;
}
.subpage-hero .hero-title {
    font-size: 56px !important;
}

/* --- PARTY PAGE SIDE-BY-SIDE LAYOUT STYLES --- */
.parties-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 4%;
}
.party-headline-group {
    text-align: center;
    margin-bottom: 50px;
}
.party-headline-group h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    color: var(--text-light);
    text-transform: uppercase;
}
.party-headline-group p {
    color: var(--text-gray);
    font-size: 18px;
}
.packages-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
    margin-bottom: 50px;
}
.package-box {
    background-color: var(--bg-card);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}
.box-starter, .box-ultimate {
    border: 1px solid rgba(0, 176, 255, 0.2);
}
.box-starter:hover, .box-ultimate:hover {
    border-color: var(--blue);
    transform: translateY(-5px);
}
.box-advance {
    border: 2px solid var(--orange);
    box-shadow: 0 0 20px var(--orange-glow);
    transform: scale(1.02);
    z-index: 2;
}
.box-advance:hover {
    box-shadow: 0 0 30px var(--orange);
    transform: scale(1.02) translateY(-5px);
}
.featured-ribbon {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--orange);
    color: var(--text-light);
    padding: 4px 12px;
    font-family: var(--font-heading);
    font-size: 12px;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 4px;
}
.box-header {
    padding: 30px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.box-header h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.box-starter h3, .box-ultimate h3 { color: var(--blue); }
.box-advance h3 { color: var(--orange); }
.box-price {
    font-family: var(--font-heading);
    font-size: 54px;
    font-weight: 700;
}
.box-base-count {
    font-size: 14px;
    font-weight: bold;
}
.box-extra-fees {
    font-size: 12px;
    color: var(--text-gray);
}
.box-perks {
    list-style: none;
    padding: 25px;
    flex-grow: 1;
}
.box-perks li {
    margin-bottom: 12px;
    font-size: 14px;
    color: #e5e7eb;
    position: relative;
    padding-left: 20px;
}
.box-perks li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--blue);
    font-weight: bold;
}
.box-advance .box-perks li::before { color: var(--orange); }
.perk-highlight { color: var(--orange); font-weight: bold; }
.perk-alert { color: #ff5555; font-weight: bold; }
.perk-alert::before { content: "✕" !important; color: #ff5555 !important; }
.box-action-area { padding: 0 25px 30px 25px; }
.box-btn {
    display: block;
    text-align: center;
    padding: 12px 20px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
}
.btn-outline { border: 2px solid var(--blue); color: var(--blue); }
.btn-outline:hover { background-color: var(--blue); color: var(--text-light); }
.btn-filled { background-color: var(--orange); color: var(--text-light); }
.addon-banner {
    background-color: var(--bg-card);
    border: 1px dashed rgba(0, 176, 255, 0.3);
    border-radius: 8px;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.addon-text-panel h4 { font-family: var(--font-heading); font-size: 20px; color: var(--blue); text-transform: uppercase; }
.addon-text-panel p { font-size: 14px; color: var(--text-gray); }
.addon-alert-tag { color: var(--orange); font-weight: bold; font-size: 12px; display: block; margin-top: 5px; }
.addon-price-panel { text-align: right; }
.addon-amt { font-family: var(--font-heading); font-size: 24px; color: var(--orange); font-weight: bold; }
.addon-label { font-size: 11px; color: var(--text-gray); text-transform: uppercase; }

/* TABLET & MOBILE RESPONSIVE FALLBACK */
@media (max-width: 1024px) {
    .packages-row { grid-template-columns: 1fr; gap: 40px; }
    .box-advance { transform: none; }
    .box-advance:hover { transform: translateY(-5px); }
    .addon-banner { flex-direction: column; align-items: flex-start; gap: 20px; }
    .addon-price-panel { text-align: left; }
}


article:nth-child(odd) {
    border: 1px solid rgba(0, 176, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

article:nth-child(even) {
    border: 1px solid rgba(255, 106, 0, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

article:nth-child(odd):hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px var(--blue-glow);
    border-color: var(--blue);
}

article:nth-child(even):hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px var(--orange-glow);
    border-color: var(--orange);
}

article h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

article p {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
}

article:nth-child(odd) p {
    color: var(--blue);
}

article:nth-child(even) p {
    color: var(--orange);
}

/* LOWER INFO FOOTER SEGMENT */
footer {
    background-color: #03060c;
    padding: 50px 5% 30px 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer > div:first-child {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

footer section h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: var(--text-light);
    border-left: 3px solid var(--orange);
    padding-left: 10px;
}

footer section ul {
    list-style: none;
}

footer section li {
    margin-bottom: 8px;
}

footer section a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 15px;
}

footer section a:hover {
    color: var(--blue);
}

footer section p {
    color: var(--text-gray);
    font-size: 15px;
}

footer > div:last-child {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-gray);
    font-size: 13px;
}

footer > div:last-child div display {
    display: flex;
    gap: 15px;
}

footer > div:last-child div a {
    color: var(--text-gray);
    text-decoration: none;
    margin-left: 15px;
    transition: color 0.2s ease;
}

footer > div:last-child div a:hover {
    color: var(--blue);
}

/* MEDIA QUERIES FOR SCREEN SIZES */
@media (max-width: 1200px) {
    #attractions > div {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    main > section:first-of-type h1 {
        font-size: 48px;
    }
    #attractions > div {
        grid-template-columns: repeat(2, 1fr);
    }
    footer > div:first-child {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
    main > section:first-of-type div {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    #attractions > div {
        grid-template-columns: 1fr;
    }
    footer > div:last-child {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
/* --- DIGITAL LIABILITY WAIVER INTERFACE STYLES --- */
.waiver-container {
    max-width: 850px;
    margin: 40px auto 80px auto;
    padding: 0 4%;
}
.waiver-headline {
    text-align: center;
    margin-bottom: 40px;
}
.waiver-headline h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    color: var(--text-light);
    text-transform: uppercase;
}
.waiver-headline p {
    color: var(--text-gray);
    margin-top: 10px;
}
.waiver-form {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

/* SCROLLABLE SCROLL AREA FOR THE AGREEMENT TEXT */
.waiver-legal-box {
    background-color: #060b14;
    border: 1px solid rgba(0, 176, 255, 0.3);
    border-radius: 6px;
    height: 300px;
    overflow-y: scroll;
    padding: 25px;
    margin-bottom: 40px;
}
.waiver-legal-box h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    color: var(--blue);
}
.waiver-legal-box h4 {
    font-size: 14px;
    color: var(--orange);
    margin-top: 20px;
    margin-bottom: 8px;
}
.waiver-legal-box p {
    font-size: 13px;
    color: #cbd5e1;
    margin-bottom: 15px;
    line-height: 1.5;
}
.waiver-legal-box .final-notice {
    font-weight: bold;
    color: #ffffff;
    border-top: 1px dashed rgba(255, 255, 255, 0.2);
    padding-top: 15px;
    margin-top: 25px;
    text-align: center;
}

/* DATA FIELD ROW GROUPS */
.form-section {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    margin-bottom: 35px;
}
.form-section h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--blue);
    text-transform: uppercase;
    margin-bottom: 15px;
}
.section-desc {
    font-size: 13px;
    color: var(--text-gray);
    margin-top: -10px;
    margin-bottom: 20px;
}
.input-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.border-bottom-pulse {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.field-box {
    display: flex;
    flex-direction: column;
}
.field-box.full-width {
    grid-column: span 2;
}
.field-box label {
    font-size: 13px;
    color: #e2e8f0;
    margin-bottom: 6px;
    font-weight: 700;
}
.field-box input {
    background-color: #060b14;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    padding: 12px;
    color: #ffffff;
    font-size: 15px;
    transition: all 0.2s ease;
}
.field-box input:focus {
    border-color: var(--orange);
    outline: none;
    box-shadow: 0 0 10px var(--orange-glow);
}

/* SUBMIT CTA BUTTONS */
.submit-waiver-btn {
    display: block;
    width: 100%;
    background-color: var(--orange);
    color: #ffffff;
    border: none;
    padding: 16px;
    font-family: var(--font-heading);
    font-size: 20px;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 4px 15px var(--orange-glow);
    transition: all 0.2s ease;
    letter-spacing: 0.5px;
}
.submit-waiver-btn:hover {
    box-shadow: 0 0 25px var(--orange);
    transform: translateY(-2px);
}

/* RESPONSIVITY REDUCTIONS FOR MOBILE */
@media (max-width: 650px) {
    .waiver-form { padding: 20px; }
    .input-grid { grid-template-columns: 1fr; }
    .field-box.full-width { grid-column: span 1; }
}


/* --- STANDALONE 3x4 ATTRACTIONS GRID STYLES --- */
.attractions-wrapper {
    max-width: 1400px;
    margin: 60px auto 100px auto;
    padding: 0 4%;
}
.attractions-headline {
    text-align: center;
    margin-bottom: 60px;
}
.attractions-headline h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.attractions-headline p {
    color: var(--text-gray);
    font-size: 18px;
}
.attractions-grid-3x4 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    align-items: stretch;
}
.attraction-card {
    background-color: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
    position: relative;
}
.attraction-card:hover {
    transform: translateY(-8px);
}
.box-blue-theme {
    border: 1px solid rgba(0, 176, 255, 0.2);
    background-image: linear-gradient(to bottom, #0d1a30 0%, #0d1527 100%);
}
.box-blue-theme:hover {
    border-color: var(--blue);
    box-shadow: 0 10px 30px var(--blue-glow);
}
.box-blue-theme h3 { color: var(--blue); }

.box-orange-theme {
    border: 1px solid rgba(255, 106, 0, 0.2);
    background-image: linear-gradient(to bottom, #1e1424 0%, #0d1527 100%);
}
.box-orange-theme:hover {
    border-color: var(--orange);
    box-shadow: 0 10px 30px var(--orange-glow);
}
.box-orange-theme h3 { color: var(--orange); }

.image-container-frame {
    position: relative;
    width: 100%;
    padding-top: 40px;
    text-align: center;
}
.image-container-frame h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    text-transform: uppercase;
}
.generic-photo-spot {
    margin: 20px 20px 0 20px;
    height: 150px;
    background-color: rgba(6, 11, 20, 0.6);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 14px;
    text-transform: uppercase;
    color: var(--text-gray);
}
.description-info-block {
    padding: 25px;
    flex-grow: 1;
}
.description-info-block p {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.5;
}
.coming-soon-banner {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #334155;
    color: #94a3b8;
    padding: 4px 12px;
    font-family: var(--font-heading);
    font-size: 11px;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 4px;
}
.card-disabled { opacity: 0.75; }

@media (max-width: 1150px) {
    .attractions-grid-3x4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .attractions-grid-3x4 { grid-template-columns: 1fr; gap: 30px; }
}

/* --- STANDALONE FOOD & CAFE MENU STYLES --- */
.menu-wrapper {
    max-width: 900px;
    margin: 60px auto 100px auto;
    padding: 0 4%;
}
.menu-headline {
    text-align: center;
    margin-bottom: 60px;
}
.menu-headline h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.menu-headline p {
    color: var(--text-gray);
    font-size: 18px;
}
.menu-section {
    background-color: var(--bg-card);
    border: 1px solid rgba(0, 176, 255, 0.15);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    background-image: linear-gradient(to bottom, #111a2e 0%, #0d1527 100%);
}
/* Alternate section borders to match your party layout rules */
.menu-section:nth-of-type(even) {
    border-color: rgba(255, 106, 0, 0.2);
}
.menu-section h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}
.menu-section:nth-of-type(odd) h3 { color: var(--blue); }
.menu-section:nth-of-type(even) h3 { color: var(--orange); }

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.menu-item-details {
    flex-grow: 1;
    padding-right: 20px;
}
.menu-item h4 {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 700;
}
.menu-item p {
    font-size: 14px;
    color: var(--text-gray);
    margin-top: 2px;
}
.menu-price-column {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    white-space: nowrap;
}
.menu-section:nth-of-type(odd) .menu-price-column { color: var(--blue); }
.menu-section:nth-of-type(even) .menu-price-column { color: var(--orange); }
