/******************************************************
 * GLOBAL LAYOUT
 ******************************************************/
body.single-events {
    background: #f4f4f4;
    overflow-x: hidden;
}

.exp-event.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 20px 15px;
}

/* Desktop: 2-column layout */
.exp-event-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
}

/* Mobile: stack columns */
@media (max-width: 900px) {
    .exp-event-layout {
        grid-template-columns: 1fr;
    }
}

/******************************************************
 * PAGE TITLE + TOP BUTTONS
 ******************************************************/
.exp-event-banner {
    text-align: center;
    padding: 20px 0 8px;
    margin-bottom: 10px;
}

.exp-event-title {
    font-size: 45px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    color: var(--e-global-color-primary);
}

.exp-event-subtitle {
    font-size: 16px !important;
    color: var(--e-global-color-secondary);
    margin-top: 6px;
}

.exp-event-title-underline {
    width: 120px;
    height: 3px;
    background: var(--e-global-color-accent);
    margin: 12px auto 0;
    border-radius: 2px;
}

.exp-top-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.exp-enter-top,
.exp-info-top,
.exp-enter-closed {
    padding: 12px 22px;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.exp-enter-top {
    background: var(--e-global-color-accent);
    color: #fff;
}

.exp-info-top {
    background: #df4f20;
    color: #fff;
}

.exp-enter-closed {
    background: #333;
    color: #fff;
}

/******************************************************
 * SIDEBAR
 ******************************************************/
.exp-event-sidebar {
    position: sticky;
    top: 90px;
    text-align: center;
}

@media (max-width: 900px) {
    .exp-event-sidebar {
        position: static;
    }
}

.exp-side-toggle {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
    background: #f4f4f4;
    color: #111;
    padding: 12px 14px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    margin-bottom: 10px;
}

.exp-side-caret {
    transition: transform .25s ease;
}

.exp-side-toggle[aria-expanded="true"] .exp-side-caret {
    transform: rotate(180deg);
}

.exp-side-wrap[hidden] {
    display: none !important;
}

.exp-side-box {
    background: #fff;
    padding: 20px;
    margin-bottom: 18px;
    border-radius: 10px;
    border: 1px solid #eee;
    box-shadow: 0 4px 14px rgba(0,0,0,.06);
}

.exp-side-box h3 {
    color: #111 !important;
    margin-bottom: 8px;
}

.exp-side-icon {
    font-size: 28px;
    color: #111;
    opacity: .85;
    margin-bottom: 8px;
}

.exp-side-divider {
    width: 60%;
    height: 2px;
    background: #e6ac00;
    margin: 14px auto 0;
    border-radius: 2px;
    opacity: .7;
}

.exp-side-fees li {
    padding: 6px 0;
    border-bottom: 1px solid #eee;
    list-style: none;
}

/******************************************************
 * HERO IMAGE + CONTENT
 ******************************************************/
.exp-event-hero img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 16px;
}

/******************************************************
 * MAP
 ******************************************************/
.exp-event-map {
    text-align: center;
}

.exp-map-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f4f4f4;
    padding: 14px 18px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin: 10px auto 12px;
}

.exp-map-wrapper {
    background: #fafafa;
    padding: 18px;
    border-radius: 8px;
    box-shadow: 0 4px 18px rgba(0,0,0,.05);
}

.exp-map-wrapper iframe {
    width: 100%;
    height: 260px;
    border-radius: 8px;
}

/******************************************************
 * SECTION HEADERS + DIVIDERS
 ******************************************************/
.exp-section-divider {
    width: 60%;
    max-width: 250px;
    height: 3px;
    background: var(--e-global-color-accent);
    opacity: .7;
    border-radius: 2px;
    margin: 28px auto;
}

.exp-event-info-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--e-global-color-primary);
    margin-bottom: 14px;
}

/******************************************************
 * ACCORDION
 ******************************************************/
.exp-event-accordion .exp-acc-btn {
    width: 100%;
    background: #f4f4f4;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 14px 16px;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin-bottom: 8px;
}

.exp-acc-btn:hover {
    background: #eaeaea;
}

.exp-acc-title {
    flex: 1;
    text-align: left;
    white-space: normal;
    color: #111 !important;
}

.exp-acc-icon {
    transition: transform .3s ease;
    opacity: .7;
}

.exp-acc-btn[aria-expanded="true"] .exp-acc-icon {
    transform: rotate(90deg);
}

.exp-acc-content {
    background: #fafafa;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-top: -8px;
    padding: 0 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .3s ease;
}

.exp-acc-content.open {
    padding: 16px;
}

/******************************************************
 * INCLUDED / RENTALS
 ******************************************************/
.single-events h3 {
    color: #111 !important;
}

.exp-event-includes {
    margin-bottom: 28px;
}

.exp-event-rentals {
    margin-top: 28px;
}

/******************************************************
 * BOTTOM CTA BUTTON
 ******************************************************/
.exp-bottom-cta-wrap {
    text-align: center;
    margin: 40px auto 60px;
}

.exp-bottom-cta-btn {
    background: var(--e-global-color-accent);
    color: #fff;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    display: inline-block;
}

.exp-bottom-closed {
    background: #333;
    color: #fff;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 700;
}

/******************************************************
 * MOBILE TWEAKS
 ******************************************************/
@media (max-width: 767px) {
    .exp-event-title { font-size: 28px !important; }
    .exp-event-subtitle { font-size: 14px !important; }
    .exp-map-wrapper iframe { height: 220px; }
}

/*************************************************************
 * HOME PAGE EVENT GRID — CLEAN, OPTIMIZED, MODERN LAYOUT
 *************************************************************/

/* Grid container */
.exp-home-events {
    display: grid;
    gap: 35px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin: 30px auto 60px;
    padding: 0 10px;
}

/*************************************************************
 * EVENT CARD — STRUCTURE & HOVER EFFECT
 *************************************************************/
.exp-event-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e6e6e6;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform .25s ease, box-shadow .3s ease;
    position: relative;
}

.exp-event-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.18);
}

/*************************************************************
 * IMAGE WRAPPER 
 *************************************************************/
.exp-card-img-wrap {
    display: block;
    position: relative;
}

.exp-card-img-wrap img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/*************************************************************
 * DATE OVERLAY
 *************************************************************/
.exp-card-date-overlay {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0,0,0,0.75);
    padding: 5px 10px;
    color: #fff;
    font-weight: 700;
    border-radius: 4px;
    font-size: 14px;
    z-index: 3;
}

/*************************************************************
 * MULTI-BADGE STACK (VERTICAL)
 *************************************************************/
.exp-card-badge-wrap.stacked {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    z-index: 4;
}

.exp-card-badge.stacked {
    background: #e6ac00;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 700;
    color: #000;
    border-radius: 6px;
    white-space: nowrap;
    display: inline-block;
}

/*************************************************************
 * CARD CONTENT
 *************************************************************/
.exp-card-content {
    padding: 18px 20px 25px;
}

.exp-card-content h3 {
    font-size: 20px;
    margin: 0 0 10px;
    color: var(--e-global-color-primary);
    font-weight: 700;
}

/* Location text */
.exp-card-location {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.exp-card-location .dashicons {
    font-size: 16px;
    vertical-align: middle;
    margin-right: 5px;
}

/*************************************************************
 * CTA BUTTONS — UNIFIED MODERN STYLE
 *************************************************************/

/* Dual button container */
.exp-card-btn-row {
    display: flex !important;
    justify-content: center !important;
    gap: 14px !important;
    margin-top: 20px !important;
}

/* Base button styling */
.exp-card-btn-row .exp-card-btn,
.exp-card-btn {
    padding: 10px 18px !important;
    font-size: 14px !important;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    min-width: 110px;
    text-align: center;
    display: inline-block;
    transition: filter .25s ease;
}

/* Primary action (Enter Now / View Results) */
.exp-card-btn.primary {
    background: var(--e-global-color-accent);
    color: #fff !important;
}

/* Secondary action (Event Info) */
.exp-card-btn.secondary {
    background: #333;
    color: #fff !important;
}

/* Hover */
.exp-card-btn:hover {
    filter: brightness(0.9);
}

/*************************************************************
 * MOBILE OPTIMIZATION
 *************************************************************/
@media (max-width: 768px) {
    .exp-card-img-wrap img {
        height: 160px;
    }

    .exp-card-content h3 {
        font-size: 18px;
    }
}

/* Mobile horizontal carousel mode */
@media (max-width: 600px) {
    .exp-home-events {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding: 10px 10px 30px;
    }

    .exp-event-card {
        min-width: 80%;
        scroll-snap-align: start;
    }
}

/* MOBILE FIX — ensure sidebar stays ABOVE hero image */
@media (max-width: 900px) {
    .exp-event-sidebar {
        order: -2 !important; /* sidebar FIRST */
    }

    .exp-top-buttons {
        order: -1 !important; /* CTA SECOND */
    }

    .exp-event-main {
        order: 0 !important; /* content THIRD */
    }
}

/****************************************************
 * VIEW ALL EVENTS BUTTON
 ****************************************************/
.exp-view-all-wrap {
    text-align: center;
    margin: 40px 0 20px;
}

.exp-view-all-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--e-global-color-accent);
    color: #fff;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    transition: filter .25s ease, transform .2s ease;
}

.exp-view-all-btn:hover {
    filter: brightness(0.9);
    transform: translateY(-2px);
}

/******************************************************
 * CAROUSEL SNAP DOTS (MOBILE ONLY)
 ******************************************************/
.exp-snap-dots {
    display: none;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
    margin-bottom: 25px;
}

.exp-snap-dot {
    width: 8px;
    height: 8px;
    background: #ccc;
    border-radius: 50%;
    transition: background 0.25s ease, transform 0.25s ease;
}

.exp-snap-dot.active {
    background: var(--e-global-color-accent);
    transform: scale(1.3);
}

/* Only show dots on mobile */
@media (max-width: 600px) {
    .exp-snap-dots {
        display: flex;
    }
}
