/**
 * BigShots Events — Single Event Page Styles
 *
 * Developer:   RidgeMinds
 * Website:     https://www.ridgeminds.com
 * Author URI:  https://www.ridgeminds.com
 * Prefix:      rmbsnj-
 *
 * Scoped to .rmbsnj-event-page to prevent conflicts with MEC or theme styles.
 * All colours, spacing, and breakpoints use CSS custom properties for easy
 * per-event or global overrides.
 *
 * @package  BigShots_Events
 * @version  1.0.0
 */


/* ============================================================================
   0. CSS CUSTOM PROPERTIES
   ============================================================================ */

.rmbsnj-event-page {
    /* Palette */
    --c-bg:           #0c0c0c;
    --c-bg-card:      #181818;
    --c-bg-card-alt:  #1f1f1f;
    --c-bg-offer:     #161408;
    --c-border:       #2a2a2a;
    --c-border-offer: #c9a84c;

    /* Text */
    --c-text:         #ffffff;
    --c-text-muted:   #888888;
    --c-text-body:    #c0c0c0;
    --c-text-label:   #777777;

    /* Accent */
    --c-gold:         #c9a84c;
    --c-gold-bright:  #f0c040;

    /* Buttons */
    --c-btn-primary-bg:   #ffffff;
    --c-btn-primary-text: #111111;
    --c-btn-outline-text: #ffffff;
    --c-btn-reserve-bg:   #f0b429;
    --c-btn-reserve-text: #111111;

    /* Layout */
    --container:       1200px;
    --container-pad:   clamp(16px, 4vw, 48px);
    --section-gap:     clamp(32px, 6vw, 80px);
    --card-radius:     14px;
    --card-radius-sm:  10px;
    --card-pad:        clamp(20px, 3vw, 36px);
    --grid-gap:        clamp(16px, 2vw, 24px);

    /* Typography */
    --font-base:       inherit;
    --font-size-base:  1rem;
    --lh-base:         1.6;

    /* Apply base */
    background-color: var(--c-bg);
    color: var(--c-text);
    font-family: var(--font-base);
    font-size: var(--font-size-base);
    line-height: var(--lh-base);
}


/* ============================================================================
   1. CONTAINER
   ============================================================================ */

.rmbsnj-container {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--container-pad);
    width: 100%;
}


/* ============================================================================
   2. HERO
   ============================================================================ */

.rmbsnj-hero {
    position: relative;
    min-height: clamp(420px, 60vh, 680px);
    background-color: #111;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;

    /* Full-bleed escape from MEC container */
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
}

.rmbsnj-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.92) 0%,
        rgba(0, 0, 0, 0.55) 50%,
        rgba(0, 0, 0, 0.25) 100%
    );
    pointer-events: none;
}

.rmbsnj-hero .rmbsnj-container {
    position: relative;
    z-index: 1;
    padding-bottom: clamp(40px, 6vh, 72px);
    padding-top: clamp(80px, 12vh, 120px);
}

.rmbsnj-hero__content {
    max-width: 680px;
}

/* Badge */
.rmbsnj-badge {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 100px;
    padding: 5px 14px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--c-text);
    margin-bottom: 18px;
    background: rgba(255, 255, 255, 0.08);
}

/* Title */
.rmbsnj-hero__title {
    font-size: clamp(2.2rem, 6vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--c-text);
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}

/* Tagline */
.rmbsnj-hero__tagline {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin: 0 0 32px;
    max-width: 560px;
}

/* CTA Actions */
.rmbsnj-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}


/* ============================================================================
   3. BUTTONS
   ============================================================================ */

.rmbsnj-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 24px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.18s ease, transform 0.14s ease, background-color 0.18s ease;
    white-space: nowrap;
    border: 2px solid transparent;
}

.rmbsnj-btn:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

.rmbsnj-btn:active {
    transform: translateY(0);
}

/* Primary — filled white */
.rmbsnj-btn--primary {
    background-color: var(--c-btn-primary-bg);
    color: var(--c-btn-primary-text);
    border-color: var(--c-btn-primary-bg);
}

/* Outline — transparent with white border */
.rmbsnj-btn--outline {
    background-color: transparent;
    color: var(--c-btn-outline-text);
    border-color: rgba(255, 255, 255, 0.55);
}

.rmbsnj-btn--outline:hover {
    border-color: #ffffff;
    opacity: 1;
}

/* Secondary — dark card style */
.rmbsnj-btn--secondary {
    background-color: var(--c-bg-card-alt);
    color: var(--c-text);
    border-color: var(--c-border);
    font-size: 0.9rem;
}

.rmbsnj-btn--secondary:hover {
    border-color: rgba(255, 255, 255, 0.4);
    opacity: 1;
}

/* Offer button — outlined white */
.rmbsnj-btn--offer {
    background-color: var(--c-btn-primary-bg);
    color: var(--c-btn-primary-text);
    border-color: var(--c-btn-primary-bg);
    padding: 13px 28px;
    font-size: 1rem;
    white-space: nowrap;
}

/* Reserve (Gravity Form submit override — see GF section below) */


/* ============================================================================
   3.5 EVENT STATUS NOTICE + EXPORT LINKS
   ============================================================================ */

.rmbsnj-notice {
    padding-block: 14px;
    border-bottom: 1px solid var(--c-border);
}

/* Past event notice — amber accent */
.rmbsnj-notice--past {
    background-color: rgba(201, 168, 76, 0.08);
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

/* Export-only notice (future events) — near-invisible, blends with bg */
.rmbsnj-notice--export {
    background-color: transparent;
}

/* Inner flex row — date block left, export buttons right */
.rmbsnj-notice__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.rmbsnj-notice__text {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--c-gold);
    margin: 0;
    letter-spacing: 0.02em;
}

/* Left column of past-event notice: "ended" + date */
.rmbsnj-notice__left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Date line beneath the "ended" text (past events) */
.rmbsnj-notice__date {
    font-size: 0.8rem;
    color: var(--c-text-muted);
    margin: 0;
    font-weight: 400;
}

/* Date block in future-event export bar (left of calendar buttons) */
.rmbsnj-notice__date-block {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.rmbsnj-notice__date-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--c-text);
    white-space: nowrap;
}

.rmbsnj-notice__date-time {
    font-size: 0.78rem;
    color: var(--c-text-muted);
    white-space: nowrap;
}

/* MEC export module — wrapper strip */
.rmbsnj-notice .mec-events-meta-group-export,
.rmbsnj-notice__export .mec-events-meta-group-export,
.rmbsnj-notice__export {
    display: flex;
    flex-direction: row;        /* ← force horizontal */
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

/* MEC outputs export links inside a <ul class="mec-export-details"> */
.rmbsnj-notice .mec-export-details,
.rmbsnj-notice__export .mec-export-details,
.rmbsnj-notice .mec-events-meta-group-export ul {
    display: flex;
    flex-direction: row;        /* ← force list items side by side */
    flex-wrap: wrap;
    gap: 10px;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Each <li> must also be inline */
.rmbsnj-notice .mec-export-details li,
.rmbsnj-notice__export .mec-export-details li,
.rmbsnj-notice .mec-events-meta-group-export li {
    display: inline-flex !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* The actual anchor links */
.rmbsnj-notice .mec-export-details a,
.rmbsnj-notice__export .mec-export-details a,
.rmbsnj-notice .mec-events-meta-group-export a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--c-text-muted) !important;
    background: var(--c-bg-card) !important;
    border: 1px solid var(--c-border) !important;
    border-radius: 6px !important;
    padding: 6px 14px !important;
    text-decoration: none !important;
    transition: color 0.15s ease, border-color 0.15s ease;
    white-space: nowrap;
    line-height: 1.4;
}

.rmbsnj-notice .mec-export-details a:hover,
.rmbsnj-notice__export .mec-export-details a:hover,
.rmbsnj-notice .mec-events-meta-group-export a:hover {
    color: var(--c-text) !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
}

/* ============================================================================
   5.5 SHARE THIS EVENT
   Actual MEC HTML structure (confirmed from source):
   .mec-event-social.mec-frontbox
     h3.mec-social-single.mec-frontbox-title
     .mec-event-sharing
       .mec-links-details
         ul  (no class)
           li.mec-event-social-icon
             a.facebook|twitter|linkedin|email
               i.mec-fa-* OR inline <svg>  (Twitter = SVG)
               span.mec-social-title  (text label — hidden below)
   ============================================================================ */

.rmbsnj-share {
    padding-block: clamp(20px, 3vw, 32px);
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
}

.rmbsnj-share__inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── Outer widget container ─────────────────────────────────────────────── */
.rmbsnj-share .mec-event-social,
.rmbsnj-share .mec-frontbox {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    flex-wrap: wrap;
    gap: 16px;
}

/* ── "Share this event" heading ─────────────────────────────────────────── */
.rmbsnj-share .mec-social-single,
.rmbsnj-share .mec-frontbox-title {
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    color: var(--c-text-muted) !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
    white-space: nowrap;
    /* Reset any block/flex from MEC or theme */
    display: inline !important;
    width: auto !important;
}

/* ── Sharing wrapper + links container ──────────────────────────────────── */
.rmbsnj-share .mec-event-sharing,
.rmbsnj-share .mec-links-details {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    margin: 0 !important;
    padding: 0 !important;
}

/* ── The <ul> (has no class in MEC's output) ────────────────────────────── */
.rmbsnj-share .mec-links-details ul {
    display: flex !important;
    flex-direction: row !important;    /* ← THIS is the key fix */
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* ── Each <li class="mec-event-social-icon"> ────────────────────────────── */
.rmbsnj-share .mec-event-social-icon {
    display: inline-flex !important;   /* ← override any block default */
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
}

/* ── Each <a> — the icon button circle ─────────────────────────────────── */
.rmbsnj-share .mec-event-social-icon a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
    background: var(--c-bg-card) !important;
    border: 1px solid var(--c-border) !important;
    color: var(--c-text-muted) !important;
    font-size: 0.9rem !important;
    text-decoration: none !important;
    transition: border-color 0.15s ease, background-color 0.15s ease !important;
    overflow: hidden;
    padding: 0 !important;
    /* Prevent text label inside from stretching the button */
    white-space: nowrap;
}

.rmbsnj-share .mec-event-social-icon a:hover {
    border-color: rgba(255, 255, 255, 0.35) !important;
    background: var(--c-bg-card-alt) !important;
}

/* ── Font icons (Facebook, LinkedIn, Email etc.) ────────────────────────── */
.rmbsnj-share .mec-event-social-icon a i {
    font-size: 0.95rem !important;
    color: var(--c-text-muted) !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rmbsnj-share .mec-event-social-icon a:hover i {
    color: var(--c-text) !important;
}

/* ── Twitter / X — inline SVG fix ───────────────────────────────────────────
   MEC outputs a raw <svg> with no fill set. The SVG path defaults to
   currentColor but since color on the dark bg is not set explicitly it
   falls back to the browser default (black) → invisible.
   We explicitly set fill and constrain the SVG size.
   ────────────────────────────────────────────────────────────────────────── */
.rmbsnj-share .mec-event-social-icon a svg {
    width: 15px !important;
    height: 15px !important;
    fill: var(--c-text-muted) !important;    /* ← makes the X visible */
    display: block !important;
    flex-shrink: 0;
    transition: fill 0.15s ease;
}

.rmbsnj-share .mec-event-social-icon a:hover svg {
    fill: var(--c-text) !important;
}

/* ── Text labels (span.mec-social-title) — hidden in icon-only mode ─────── */
/* These labels cause vertical stacking if visible. Hide them so only
   the icon shows inside the circle button. */
.rmbsnj-share .mec-event-social-icon .mec-social-title,
.rmbsnj-share .mec-event-social-icon span.mec-social-title {
    display: none !important;         /* ← hides "Facebook", "Twitter" text */
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
}



.rmbsnj-infobar {
    padding-block: clamp(24px, 4vw, 40px);
}

.rmbsnj-infobar__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--grid-gap);
}

.rmbsnj-infobar__tile {
    background-color: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--card-radius-sm);
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rmbsnj-infobar__label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-text-label);
}

.rmbsnj-infobar__value {
    font-size: clamp(0.88rem, 1.4vw, 1rem);
    font-weight: 600;
    color: var(--c-text);
    line-height: 1.3;
}

/* Multi-day event end date — shown at reduced weight below start date */
.rmbsnj-infobar__value--sub {
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--c-text-muted);
}

/* Time line under the date in the WHEN tile */
.rmbsnj-infobar__time {
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--c-text-muted);
    line-height: 1.3;
    margin-top: -2px; /* tighten gap slightly against the date line above */
}


/* ============================================================================
   5. CONTENT SECTION (WHY + ARRIVE)
   ============================================================================ */

.rmbsnj-content-section {
    padding-block: clamp(20px, 4vw, 40px);
}

/* Default: side-by-side 2 columns (the design's no-media state) */
.rmbsnj-content-blocks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--grid-gap);
    align-items: stretch;
}

/* Stacked: full-width each when either section has media */
.rmbsnj-content-blocks--stacked {
    grid-template-columns: 1fr;
}

/* Individual block card */
.rmbsnj-block {
    background-color: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--card-radius);
    padding: var(--card-pad);
    display: flex;
    flex-direction: column;
}

/* When block has media → internal 2-column split */
.rmbsnj-block--has-media {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: clamp(20px, 3vw, 40px);
    align-items: center;
    padding: var(--card-pad);
}

.rmbsnj-block__content {
    display: flex;
    flex-direction: column;
    min-width: 0; /* prevents grid blowout */
}

.rmbsnj-block__media {
    min-width: 0;
    border-radius: var(--card-radius-sm);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rmbsnj-block__img {
    width: 100%;
    height: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: var(--card-radius-sm);
    display: block;
}

/* Block Title */
.rmbsnj-block__title {
    font-size: clamp(1.15rem, 2.2vw, 1.45rem);
    font-weight: 700;
    color: var(--c-text);
    margin: 0 0 14px;
    line-height: 1.25;
}

/* Block Body */
.rmbsnj-block__body {
    font-size: 0.92rem;
    color: var(--c-text-body);
    line-height: 1.65;
    margin: 0 0 20px;
}


/* ── Bullet List ─────────────────────────────────────────────────────────── */

.rmbsnj-bullets {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rmbsnj-bullets__item {
    background-color: var(--c-bg-card-alt);
    border: 1px solid var(--c-border);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.9rem;
    color: var(--c-text);
    line-height: 1.4;
    position: relative;
    padding-left: 20px;
    transition: border-color 0.15s ease;
}

.rmbsnj-bullets__item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--c-gold);
    border-radius: 3px 0 0 3px;
}


/* ── Numbered Steps ──────────────────────────────────────────────────────── */

.rmbsnj-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.rmbsnj-steps__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    min-height: 44px;
}

.rmbsnj-steps__num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--c-bg-card-alt);
    border: 2px solid var(--c-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--c-text);
    line-height: 1;
    margin-top: 2px;
}

.rmbsnj-steps__text {
    font-size: 0.92rem;
    color: var(--c-text);
    line-height: 1.5;
    padding-top: 7px;
}


/* ============================================================================
   6. AUDIENCE CARDS
   ============================================================================ */

.rmbsnj-audience {
    padding-block: clamp(20px, 4vw, 40px);
}

.rmbsnj-audience__grid {
    display: grid;
    gap: var(--grid-gap);
}

.rmbsnj-audience__grid--1col { grid-template-columns: 1fr; }
.rmbsnj-audience__grid--2col { grid-template-columns: repeat(2, 1fr); }
.rmbsnj-audience__grid--3col { grid-template-columns: repeat(3, 1fr); }

.rmbsnj-audience__card {
    background-color: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--card-radius);
    padding: var(--card-pad);
}

.rmbsnj-audience__card-title {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: 700;
    color: var(--c-text);
    margin: 0 0 10px;
    line-height: 1.3;
}

.rmbsnj-audience__card-body {
    font-size: 0.9rem;
    color: var(--c-text-body);
    line-height: 1.6;
    margin: 0;
}


/* ============================================================================
   7. TONIGHT'S OFFER
   ============================================================================ */

.rmbsnj-offer {
    padding-block: clamp(20px, 4vw, 40px);
}

.rmbsnj-offer__inner {
    background-color: var(--c-bg-offer);
    border: 1px solid var(--c-border);
    border-left: 4px solid var(--c-border-offer);
    border-radius: var(--card-radius);
    padding: clamp(24px, 3.5vw, 40px) clamp(24px, 4vw, 48px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(20px, 4vw, 48px);
    flex-wrap: wrap;
}

.rmbsnj-offer__text {
    flex: 1 1 280px;
    min-width: 0;
}

.rmbsnj-offer__label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--c-gold);
    margin-bottom: 10px;
}

.rmbsnj-offer__headline {
    font-size: clamp(1.1rem, 2.4vw, 1.55rem);
    font-weight: 700;
    color: var(--c-text);
    line-height: 1.3;
    margin: 0 0 8px;
}

.rmbsnj-offer__body {
    font-size: 0.88rem;
    color: var(--c-text-body);
    line-height: 1.55;
    margin: 0;
}

.rmbsnj-offer__action {
    flex-shrink: 0;
}


/* ============================================================================
   8. BOTTOM — FIND US FAST + RESERVE YOUR SPOT
   ============================================================================ */

.rmbsnj-bottom {
    padding-block: clamp(32px, 5vw, 60px);
}

.rmbsnj-bottom__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--grid-gap);
    align-items: start;
}

/* ── Find Us Fast ──────────────────────────────────────────────────────────── */

.rmbsnj-find {
    background-color: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--card-radius);
    padding: var(--card-pad);
}

.rmbsnj-find__title {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 700;
    color: var(--c-text);
    margin: 0 0 14px;
    line-height: 1.25;
}

.rmbsnj-find__desc {
    font-size: 0.9rem;
    color: var(--c-text-body);
    line-height: 1.65;
    margin: 0 0 20px;
}

.rmbsnj-find__address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0 0 24px;
    padding: 14px 16px;
    background-color: var(--c-bg-card-alt);
    border: 1px solid var(--c-border);
    border-radius: var(--card-radius-sm);
}

.rmbsnj-find__address span {
    font-size: 0.88rem;
    color: var(--c-text);
    line-height: 1.5;
}

.rmbsnj-find__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}


/* ── Reserve Your Spot ─────────────────────────────────────────────────────── */

.rmbsnj-reserve {
    background-color: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--card-radius);
    padding: var(--card-pad);
}

.rmbsnj-reserve__title {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 700;
    color: var(--c-text);
    margin: 0 0 10px;
    line-height: 1.25;
}

.rmbsnj-reserve__subtitle {
    font-size: 0.88rem;
    color: var(--c-text-body);
    line-height: 1.6;
    margin: 0 0 24px;
}

.rmbsnj-reserve__form {
    /* GF overrides below */
}


/* ============================================================================
   9. VIDEO EMBED — RESPONSIVE 16:9 WRAPPER
   ============================================================================ */

.rmbsnj-video-wrap {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: var(--card-radius-sm);
    background-color: #000;
    width: 100%;
}

.rmbsnj-video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}


/* ============================================================================
   10. GRAVITY FORMS — DARK THEME OVERRIDES
   Scoped tightly so these only apply within .rmbsnj-reserve__form.
   ============================================================================ */

.rmbsnj-reserve__form .gform_wrapper,
.rmbsnj-reserve__form .gform_wrapper.gravity-theme {
    margin: 0;
}

/* Labels */
.rmbsnj-reserve__form .gfield_label,
.rmbsnj-reserve__form .gform_wrapper .gfield_label {
    color: var(--c-text-muted) !important;
    font-size: 0.8rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.03em !important;
    margin-bottom: 6px !important;
    display: none; /* Hide labels — design uses placeholder-only approach */
}

/* Inputs & Selects */
.rmbsnj-reserve__form input[type="text"],
.rmbsnj-reserve__form input[type="email"],
.rmbsnj-reserve__form input[type="tel"],
.rmbsnj-reserve__form input[type="number"],
.rmbsnj-reserve__form input[type="url"],
.rmbsnj-reserve__form textarea,
.rmbsnj-reserve__form select,
.rmbsnj-reserve__form .ginput_container input,
.rmbsnj-reserve__form .ginput_container textarea,
.rmbsnj-reserve__form .ginput_container select {
    background-color: var(--c-bg-card-alt) !important;
    border: 1px solid var(--c-border) !important;
    border-radius: 8px !important;
    color: var(--c-text) !important;
    font-size: 0.95rem !important;
    padding: 14px 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    transition: border-color 0.15s ease !important;
    appearance: none;
    -webkit-appearance: none;
    outline: none !important;
    box-shadow: none !important;
}

/* Focus state */
.rmbsnj-reserve__form input:focus,
.rmbsnj-reserve__form textarea:focus,
.rmbsnj-reserve__form select:focus {
    border-color: rgba(255, 255, 255, 0.35) !important;
}

/* Placeholder */
.rmbsnj-reserve__form ::placeholder {
    color: var(--c-text-muted) !important;
    opacity: 1 !important;
}

/* Select arrow */
.rmbsnj-reserve__form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 14px center !important;
    padding-right: 40px !important;
}

/* Select options (browser-native, limited styling) */
.rmbsnj-reserve__form select option {
    background-color: var(--c-bg-card-alt);
    color: var(--c-text);
}

/* Fieldset / gfield spacing */
.rmbsnj-reserve__form .gform_fields,
.rmbsnj-reserve__form .gform_wrapper ul.gform_fields {
    display: flex;
    flex-direction: column;
    gap: 12px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.rmbsnj-reserve__form .gfield,
.rmbsnj-reserve__form .gform_wrapper li.gfield {
    margin: 0 !important;
    padding: 0 !important;
}

.rmbsnj-reserve__form .gfield_validation_message,
.rmbsnj-reserve__form .validation_message {
    color: #ff6b6b !important;
    font-size: 0.8rem !important;
    margin-top: 4px !important;
}

.rmbsnj-reserve__form .gform_validation_errors,
.rmbsnj-reserve__form .validation_error {
    background: rgba(255, 107, 107, 0.1) !important;
    border: 1px solid rgba(255, 107, 107, 0.3) !important;
    border-radius: 8px !important;
    color: #ff8f8f !important;
    padding: 12px 16px !important;
    margin-bottom: 16px !important;
    font-size: 0.85rem !important;
}

/* Submit Button */
.rmbsnj-reserve__form .gform_footer,
.rmbsnj-reserve__form .gform_wrapper .gform_footer {
    padding: 0 !important;
    margin-top: 16px !important;
    text-align: left !important;
}

.rmbsnj-reserve__form input[type="submit"],
.rmbsnj-reserve__form button[type="submit"],
.rmbsnj-reserve__form .gform_button {
    width: 100% !important;
    background-color: var(--c-btn-reserve-bg) !important;
    color: var(--c-btn-reserve-text) !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    padding: 15px 24px !important;
    cursor: pointer !important;
    letter-spacing: 0.01em !important;
    transition: opacity 0.18s ease, transform 0.14s ease !important;
    box-shadow: none !important;
}

.rmbsnj-reserve__form input[type="submit"]:hover,
.rmbsnj-reserve__form button[type="submit"]:hover,
.rmbsnj-reserve__form .gform_button:hover {
    opacity: 0.9 !important;
    transform: translateY(-1px) !important;
}

/* Confirmation message */
.rmbsnj-reserve__form .gform_confirmation_wrapper,
.rmbsnj-reserve__form .gforms_confirmation_message {
    background-color: rgba(201, 168, 76, 0.1) !important;
    border: 1px solid var(--c-gold) !important;
    border-radius: 8px !important;
    color: var(--c-gold) !important;
    padding: 16px 20px !important;
    font-size: 0.95rem !important;
    text-align: center !important;
}


/* ============================================================================
   11. RESPONSIVE BREAKPOINTS
   ============================================================================ */

/* Tablet: ≤ 1024px */
@media (max-width: 1024px) {

    /* Info bar → 2x2 grid */
    .rmbsnj-infobar__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Content blocks with media → stack content above media */
    .rmbsnj-block--has-media {
        grid-template-columns: 1fr;
    }

    /* Bottom 2-col stays but tighter */
}


/* Mobile large: ≤ 768px */
@media (max-width: 768px) {

    /* Hero */
    .rmbsnj-hero {
        min-height: 70vmin;
        align-items: flex-end;
    }

    /* Content blocks → always stacked */
    .rmbsnj-content-blocks {
        grid-template-columns: 1fr;
    }

    /* Audience cards → 1 col */
    .rmbsnj-audience__grid--2col,
    .rmbsnj-audience__grid--3col {
        grid-template-columns: 1fr;
    }

    /* Offer → stack text and button */
    .rmbsnj-offer__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .rmbsnj-offer__action {
        width: 100%;
    }

    .rmbsnj-offer__action .rmbsnj-btn {
        width: 100%;
    }

    /* Bottom → stack */
    .rmbsnj-bottom__grid {
        grid-template-columns: 1fr;
    }

    /* Buttons in Find us fast → full width */
    .rmbsnj-find__actions {
        flex-direction: column;
    }

    .rmbsnj-find__actions .rmbsnj-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}


/* Mobile: ≤ 480px */
@media (max-width: 480px) {

    /* Info bar → single column */
    .rmbsnj-infobar__grid {
        grid-template-columns: 1fr;
    }

    /* Hero CTAs → stack */
    .rmbsnj-hero__actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .rmbsnj-hero__actions .rmbsnj-btn {
        width: 100%;
        justify-content: center;
    }
}


/* ============================================================================
   12. COMMENTS SECTION — DARK THEME
   Scoped to body.single-mec-events because WordPress outputs comments
   AFTER the MEC skin wrapper, so it sits outside .rmbsnj-event-page.
   ============================================================================ */

body.single-mec-events #comments,
body.single-mec-events .comments-area {
    background-color: #0c0c0c;
    color: #c0c0c0;
    padding: clamp(32px, 5vw, 64px) clamp(16px, 4vw, 48px);
    max-width: 1200px;
    margin-inline: auto;
    box-sizing: border-box;
}

/* Section heading "Submit a Comment" / "X Comments" */
body.single-mec-events #comments h2,
body.single-mec-events #comments h3,
body.single-mec-events .comments-title,
body.single-mec-events .comment-reply-title {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 24px;
    padding: 0;
    border: none;
    background: transparent;
}

/* "Logged in as…" notice */
body.single-mec-events .logged-in-as,
body.single-mec-events #comments .logged-in-as {
    font-size: 0.82rem;
    color: #666;
    margin-bottom: 20px;
}

body.single-mec-events .logged-in-as a {
    color: #888;
    text-decoration: underline;
}

body.single-mec-events .logged-in-as a:hover {
    color: #c9a84c;
}

/* Comment form wrapper */
body.single-mec-events #commentform,
body.single-mec-events .comment-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* All text inputs, textarea */
body.single-mec-events #commentform input[type="text"],
body.single-mec-events #commentform input[type="email"],
body.single-mec-events #commentform input[type="url"],
body.single-mec-events #commentform textarea,
body.single-mec-events .comment-form input[type="text"],
body.single-mec-events .comment-form input[type="email"],
body.single-mec-events .comment-form input[type="url"],
body.single-mec-events .comment-form textarea {
    width: 100% !important;
    background-color: #181818 !important;
    border: 1px solid #2a2a2a !important;
    border-radius: 8px !important;
    color: #ffffff !important;
    font-size: 0.92rem !important;
    padding: 13px 16px !important;
    box-sizing: border-box !important;
    outline: none !important;
    box-shadow: none !important;
    transition: border-color 0.15s ease !important;
    resize: vertical;
    font-family: inherit;
}

body.single-mec-events #commentform input:focus,
body.single-mec-events #commentform textarea:focus,
body.single-mec-events .comment-form input:focus,
body.single-mec-events .comment-form textarea:focus {
    border-color: rgba(255, 255, 255, 0.28) !important;
}

body.single-mec-events #commentform ::placeholder,
body.single-mec-events .comment-form ::placeholder {
    color: #555 !important;
    opacity: 1 !important;
}

/* Textarea minimum height */
body.single-mec-events #commentform textarea#comment,
body.single-mec-events .comment-form textarea {
    min-height: 130px;
}

/* Labels */
body.single-mec-events #commentform label,
body.single-mec-events .comment-form label {
    font-size: 0.78rem !important;
    font-weight: 500 !important;
    color: #666 !important;
    display: block !important;
    margin-bottom: 5px !important;
}

/* Required asterisk */
body.single-mec-events #commentform .required,
body.single-mec-events .comment-form .required {
    color: #c9a84c;
}

/* Two-column row for Name + Email on wider screens */
body.single-mec-events #commentform .comment-form-author,
body.single-mec-events #commentform .comment-form-email,
body.single-mec-events #commentform .comment-form-url {
    margin: 0;
}

/* Submit button */
body.single-mec-events #commentform #submit,
body.single-mec-events #commentform input[type="submit"],
body.single-mec-events .comment-form input[type="submit"] {
    background-color: #ffffff !important;
    color: #111111 !important;
    border: 2px solid #ffffff !important;
    border-radius: 8px !important;
    padding: 12px 28px !important;
    font-size: 0.92rem !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: opacity 0.18s ease, transform 0.14s ease !important;
    box-shadow: none !important;
    align-self: flex-start;
    letter-spacing: 0.01em;
}

body.single-mec-events #commentform #submit:hover,
body.single-mec-events .comment-form input[type="submit"]:hover {
    opacity: 0.85 !important;
    transform: translateY(-1px) !important;
}

/* Existing comments list */
body.single-mec-events .comment-list,
body.single-mec-events ol.comment-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 40px !important;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

body.single-mec-events .comment-list .comment,
body.single-mec-events .comment-list article {
    background-color: #181818;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    padding: clamp(16px, 2vw, 24px);
}

/* Comment author meta */
body.single-mec-events .comment-author .fn {
    font-weight: 700;
    color: #ffffff;
    font-size: 0.92rem;
}

body.single-mec-events .comment-meta,
body.single-mec-events .comment-metadata {
    font-size: 0.75rem;
    color: #555;
    margin-top: 3px;
}

body.single-mec-events .comment-metadata a,
body.single-mec-events .comment-meta a {
    color: #555;
    text-decoration: none;
}

/* Comment body text */
body.single-mec-events .comment-content p {
    font-size: 0.9rem;
    color: #b0b0b0;
    line-height: 1.65;
    margin: 10px 0 0;
}

/* Reply link */
body.single-mec-events .reply a,
body.single-mec-events .comment-reply-link {
    font-size: 0.78rem;
    color: #666 !important;
    text-decoration: none;
    transition: color 0.15s ease;
}

body.single-mec-events .reply a:hover,
body.single-mec-events .comment-reply-link:hover {
    color: #c9a84c !important;
}

/* "No comments yet" / cancel reply link */
body.single-mec-events #cancel-comment-reply-link {
    color: #666;
    font-size: 0.8rem;
    margin-left: 10px;
    text-decoration: none;
}

body.single-mec-events #cancel-comment-reply-link:hover {
    color: #c9a84c;
}

/* Comment form notes / small text */
body.single-mec-registry #commentform .comment-notes,
body.single-mec-events #commentform .comment-notes,
body.single-mec-events .comment-form .comment-notes {
    font-size: 0.78rem;
    color: #555;
    margin-bottom: 4px;
}

/* Gravatar avatar */
body.single-mec-events .comment-author img.avatar {
    border-radius: 50%;
    border: 2px solid #2a2a2a;
}


/* ============================================================================
   13. UTILITY — PRINT HIDE
   ============================================================================ */

@media print {
    .rmbsnj-hero__overlay,
    .rmbsnj-hero__actions,
    .rmbsnj-offer__action,
    .rmbsnj-find__actions,
    .rmbsnj-reserve,
    body.single-mec-events #commentform { display: none; }
}