/* ==========================================================================
   CSS Variables
   ========================================================================== */
:root {
    --color-primary:   #09B4FA;
    --color-pricing:   #398DC6;
    --color-pricing-bg: #E9FFF9;
    --color-bg:        #ffffff;
    --color-text:      #333333;
    --color-text-light: #666666;
    --color-border:    #dddddd;
    --font-heading:    'Montserrat', sans-serif;
    --font-body:       'Roboto', sans-serif;
    --font-size-h1:    65px;
    --font-size-h2:    45px;
    --font-size-h3:    29px;
    --font-size-body:  23px;
    --font-size-small: 16px;
    --border-radius-btn: 0px;
    --max-width:       1200px;
    --section-padding: 80px 5%;
}

/* ==========================================================================
   Reset + Base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: var(--font-body);
    font-size: var(--font-size-body);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 16px 40px;
    background: var(--color-primary);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    border: none;
    border-radius: var(--border-radius-btn);
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s ease;
}
.btn:hover { background: #0898d4; text-decoration: none; }

/* ==========================================================================
   Top Bar
   ========================================================================== */
.top-bar {
    background: var(--color-primary);
    color: #fff;
    padding: 8px 5%;
    display: flex;
    align-items: center;
    gap: 20px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
}
.top-bar a { color: #fff; text-decoration: none; }
.top-bar a:hover { text-decoration: underline; }
.top-bar svg { display: block; }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 5%;
    border-bottom: 2px solid var(--color-primary);
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 100;
}
.site-logo img { height: 60px; width: auto; }

.site-nav ul {
    display: flex;
    gap: 36px;
    align-items: center;
}
.site-nav a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
}
.site-nav a:hover { color: var(--color-primary); text-decoration: none; }

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    width: 36px;
    height: 36px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Page Section Base
   ========================================================================== */
.page-section { padding: var(--section-padding); }
.page-section--gray { background: #f7f7f7; }
.page-section--primary { background: var(--color-primary); color: #fff; }

.section-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}
.section-header h1,
.section-header h2 { font-size: var(--font-size-h2); margin-bottom: 16px; }
.section-header p  { font-size: var(--font-size-body); max-width: 760px; margin: 0 auto; }

/* ==========================================================================
   Hero (Homepage)
   ========================================================================== */
.hero {
    background: var(--color-primary);
    color: #fff;
    text-align: center;
    padding: 120px 5%;
}
.hero h1 {
    font-size: var(--font-size-h1);
    font-weight: 800;
    margin-bottom: 36px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   Homepage: Intro (2-col)
   ========================================================================== */
.home-intro {
    padding: var(--section-padding);
}
.home-intro__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.home-intro__text h2 { font-size: var(--font-size-h2); margin-bottom: 20px; }
.home-intro__text p  { font-size: var(--font-size-body); line-height: 1.6; }
.home-intro__image img { width: 100%; border-radius: 4px; }

/* ==========================================================================
   Homepage: Reviews
   ========================================================================== */
.home-reviews {
    background: #f7f7f7;
    padding: var(--section-padding);
    text-align: center;
}
.home-reviews h2 { font-size: var(--font-size-h2); margin-bottom: 40px; }

/* ==========================================================================
   Homepage: Packages Overview (3 cards)
   ========================================================================== */
.home-packages { padding: var(--section-padding); }
.home-packages__inner {
    max-width: var(--max-width);
    margin: 0 auto;
}
.home-packages h2 {
    text-align: center;
    font-size: var(--font-size-h2);
    margin-bottom: 48px;
}
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.package-card {
    border: 2px solid var(--color-primary);
    border-radius: 4px;
    padding: 36px 28px;
    text-align: center;
}
.package-card h3 { font-size: 26px; color: var(--color-primary); margin-bottom: 14px; }
.package-card p  { font-size: 17px; line-height: 1.6; margin-bottom: 24px; }

/* ==========================================================================
   Homepage: Book Celebration (2-col text + image)
   ========================================================================== */
.home-book {
    background: #f7f7f7;
    padding: var(--section-padding);
}
.home-book__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.home-book__text h2 { font-size: var(--font-size-h2); margin-bottom: 20px; }
.home-book__text p  { font-size: var(--font-size-body); line-height: 1.6; margin-bottom: 28px; }

/* ==========================================================================
   Homepage: Why Choose (3 feature items)
   ========================================================================== */
.home-why { padding: var(--section-padding); }
.home-why__inner { max-width: var(--max-width); margin: 0 auto; }
.home-why h2 { text-align: center; font-size: var(--font-size-h2); margin-bottom: 48px; }
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}
.why-item h3 { font-size: 22px; color: var(--color-primary); margin-bottom: 12px; }
.why-item p  { font-size: 17px; line-height: 1.6; }

/* ==========================================================================
   Pricing Page
   ========================================================================== */
.pricing-page { padding: var(--section-padding); }
.pricing-page__inner { max-width: var(--max-width); margin: 0 auto; }
.pricing-page h1 {
    text-align: center;
    font-size: var(--font-size-h2);
    margin-bottom: 16px;
}
.pricing-page__intro {
    text-align: center;
    font-size: var(--font-size-body);
    max-width: 760px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.pricing-addons { padding: var(--section-padding); background: #f7f7f7; }
.pricing-addons__inner { max-width: var(--max-width); margin: 0 auto; }
.pricing-addons h2 { text-align: center; font-size: var(--font-size-h2); margin-bottom: 48px; }
.addons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 32px;
}
.addon-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    padding: 28px 20px;
    text-align: center;
}
.addon-card__icon { font-size: 36px; margin-bottom: 12px; }
.addon-card h3   { font-size: 19px; margin-bottom: 8px; }
.addon-card__price { font-family: var(--font-heading); font-weight: 700; color: var(--color-pricing); font-size: 22px; }
.addons-cta { text-align: center; margin-top: 32px; font-size: 17px; }

/* ==========================================================================
   Party Experience Page
   ========================================================================== */
.experience-page { padding: var(--section-padding); }
.experience-page__inner { max-width: var(--max-width); margin: 0 auto; }
.experience-page h1 {
    text-align: center;
    font-size: var(--font-size-h2);
    margin-bottom: 20px;
}
.experience-page__intro { text-align: center; font-size: var(--font-size-body); max-width: 760px; margin: 0 auto 20px; line-height: 1.6; }

.themes-section { padding: var(--section-padding); background: #f7f7f7; }
.themes-section__inner { max-width: var(--max-width); margin: 0 auto; }
.themes-section h2 { text-align: center; font-size: var(--font-size-h2); margin-bottom: 48px; }
.themes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.theme-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    padding: 24px 20px;
}
.theme-card h3 { font-size: 18px; color: var(--color-primary); margin-bottom: 10px; }
.theme-card p  { font-size: 15px; line-height: 1.5; color: var(--color-text-light); }

.testimonials-section { padding: var(--section-padding); }
.testimonials-section__inner { max-width: var(--max-width); margin: 0 auto; }
.testimonials-section h2 { text-align: center; font-size: var(--font-size-h2); margin-bottom: 48px; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.testimonial {
    background: #f7f7f7;
    border-radius: 4px;
    padding: 32px 28px;
}
.testimonial blockquote { font-size: 17px; font-style: italic; line-height: 1.6; margin-bottom: 16px; }
.testimonial cite { font-family: var(--font-heading); font-weight: 600; font-size: 14px; color: var(--color-primary); font-style: normal; }

/* ==========================================================================
   Book Now Page
   ========================================================================== */
.book-now-page { padding: var(--section-padding); }
.book-now-page__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}
.book-now__contact h2  { font-size: 28px; margin-bottom: 20px; }
.book-now__contact p   { font-size: 17px; line-height: 1.8; }
.book-now__contact a   { color: var(--color-primary); }

/* ==========================================================================
   Photo Gallery
   ========================================================================== */
.gallery-page { padding: var(--section-padding); }
.gallery-page__inner { max-width: var(--max-width); margin: 0 auto; }
.gallery-page h1 { text-align: center; font-size: var(--font-size-h2); margin-bottom: 40px; }

.gallery-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}
.gallery-filter {
    padding: 10px 24px;
    border: 2px solid var(--color-primary);
    background: #fff;
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border-radius: var(--border-radius-btn);
    transition: background 0.2s, color 0.2s;
}
.gallery-filter.active,
.gallery-filter:hover {
    background: var(--color-primary);
    color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 2px;
}

/* ==========================================================================
   Jobs Page
   ========================================================================== */
.jobs-page { padding: var(--section-padding); }
.jobs-page__inner { max-width: 800px; margin: 0 auto; text-align: center; }
.jobs-page h1 { font-size: var(--font-size-h2); margin-bottom: 16px; }
.jobs-page__sub { font-size: 22px; color: var(--color-text-light); margin-bottom: 40px; }
.jobs-page img { margin: 0 auto 40px; border-radius: 4px; max-width: 600px; }
.jobs-page p { font-size: 19px; line-height: 1.7; margin-bottom: 28px; }

/* ==========================================================================
   Waiver Pages
   ========================================================================== */
.waiver-page { padding: var(--section-padding); }
.waiver-page__inner { max-width: 900px; margin: 0 auto; }
.waiver-page h1 { font-size: var(--font-size-h2); margin-bottom: 32px; }
.waiver-text { font-size: 16px; line-height: 1.8; color: var(--color-text); margin-bottom: 40px; }
.waiver-text p  { margin-bottom: 16px; }
.waiver-text ol { padding-left: 24px; margin-bottom: 16px; }
.waiver-text li { margin-bottom: 8px; }

/* ==========================================================================
   CTA Block (reusable template-parts/cta-consult.php)
   ========================================================================== */
.cta-consult {
    background: var(--color-primary);
    color: #fff;
    text-align: center;
    padding: 60px 5%;
}
.cta-consult h2 { font-size: 28px; margin-bottom: 12px; }
.cta-consult p  { font-size: 19px; margin-bottom: 24px; max-width: 600px; margin-left: auto; margin-right: auto; }
.btn--white {
    background: #fff;
    color: var(--color-primary);
}
.btn--white:hover { background: #f0f0f0; text-decoration: none; }

/* ==========================================================================
   Generic Page Fallback
   ========================================================================== */
.generic-page { padding: var(--section-padding); }
.generic-page__inner { max-width: 900px; margin: 0 auto; }
.generic-page h1 { font-size: var(--font-size-h2); margin-bottom: 32px; }
.generic-page .entry-content { font-size: 18px; line-height: 1.7; }

/* ==========================================================================
   404 Page
   ========================================================================== */
.page-404 { padding: 120px 5%; text-align: center; }
.page-404 h1 { font-size: 80px; color: var(--color-primary); margin-bottom: 16px; }
.page-404 p  { font-size: 22px; margin-bottom: 32px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: #111;
    color: #ccc;
    padding: 48px 5%;
}
.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}
.footer-contact p { font-size: 15px; line-height: 1.8; }
.footer-contact a { color: #ccc; }
.footer-contact a:hover { color: #fff; }
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.footer-nav a { font-size: 14px; color: #aaa; text-decoration: none; }
.footer-nav a:hover { color: #fff; text-decoration: none; }
.footer-copy { font-size: 13px; color: #777; }

/* ==========================================================================
   Responsive — Tablet (≤1024px)
   ========================================================================== */
@media (max-width: 1024px) {
    :root {
        --font-size-h1: 48px;
        --font-size-h2: 36px;
        --font-size-body: 20px;
        --section-padding: 60px 5%;
    }
    .themes-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   Responsive — Mobile (≤767px)
   ========================================================================== */
@media (max-width: 767px) {
    :root {
        --font-size-h1: 36px;
        --font-size-h2: 28px;
        --font-size-body: 18px;
        --section-padding: 48px 5%;
    }

    .nav-toggle { display: flex; }

    .site-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-top: 1px solid var(--color-border);
        padding: 16px 5%;
        z-index: 99;
    }
    .site-nav.is-open { display: block; }
    .site-nav ul { flex-direction: column; gap: 0; }
    .site-nav li { border-bottom: 1px solid var(--color-border); }
    .site-nav a { display: block; padding: 12px 0; }

    .home-intro__inner,
    .home-book__inner,
    .book-now-page__inner { grid-template-columns: 1fr; }

    .packages-grid,
    .testimonials-grid { grid-template-columns: 1fr; }

    .why-grid { grid-template-columns: 1fr; }

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

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

    .site-header { position: relative; }
}

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