/* =============================================================
   Times & Prices – WPBakery Element Styles  v1.2.0
   Fluid layout – fills whatever WPBakery column it sits in.
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;900&display=swap');

/* ─────────────────────────────────────────────────────────────
   CARD SHELL
   100% wide, fills its WPBakery column at any breakpoint.
───────────────────────────────────────────────────────────── */
.tp-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 0 16px rgba(0,0,0,0.30);
    background-color: #8ab13e;
    font-family: 'Outfit', sans-serif;
    box-sizing: border-box;
}

/* ─────────────────────────────────────────────────────────────
   HEADER
───────────────────────────────────────────────────────────── */
.tp-header {
    background-color: #8ab13e;
    padding: 16px 20px 12px;
    text-align: center;
}

.tp-title {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 900 !important;
    font-size: 28px !important;
    line-height: 1.15 !important;
    color: #ffffff !important;
    margin: 0 !important;
    padding: 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.01em !important;
    border: none !important;
    background: none !important;
}

/* ─────────────────────────────────────────────────────────────
   SMALL NOTE STRIP
───────────────────────────────────────────────────────────── */
.tp-note-strip {
    background-color: #ffffff;
    padding: 10px 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    box-sizing: border-box;
}

.tp-note {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 400 !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
    color: #000000 !important;
    margin: 0 !important;
    padding: 0 !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ─────────────────────────────────────────────────────────────
   IMAGE — maintains 16:7 aspect ratio as card scales
───────────────────────────────────────────────────────────── */
.tp-image-wrap {
    position: relative;
    width: 100%;
    padding-top: 53.8%; /* 240/446 = 53.8% */
    overflow: hidden;
    background-color: #688334;
    flex-shrink: 0;
}

.tp-image {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.tp-image-placeholder {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: #688334;
}

/* ─────────────────────────────────────────────────────────────
   BUY TICKETS BUTTON WRAPPER
───────────────────────────────────────────────────────────── */
.tp-buy-wrap {
    background-color: #8ab13e;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 14px 16px;
}

/* ─────────────────────────────────────────────────────────────
   SHARED BUTTON STYLES
───────────────────────────────────────────────────────────── */
.tp-btn {
    display: inline-block !important;
    background-color: #f9cb40 !important;
    color: #000000 !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 900 !important;
    font-size: 17px !important;
    line-height: 1.2 !important;
    text-align: center !important;
    text-decoration: none !important;
    border-radius: 40px !important;
    padding: 12px 28px !important;
    cursor: pointer !important;
    border: none !important;
    box-shadow: none !important;
    white-space: normal !important;
    transition: background-color 0.2s ease;
}

.tp-btn:hover,
.tp-btn:focus {
    background-color: #3e98d0 !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

/* ─────────────────────────────────────────────────────────────
   PRICE GRID  (flexbox rows – no table, no theme overrides)
───────────────────────────────────────────────────────────── */
.tp-prices {
    width: 100%;
    box-sizing: border-box;
}

/* Every row is a flex row of 3 cells */
.tp-prices__row {
    display: flex;
    width: 100%;
    box-sizing: border-box;
}

/* Header row – white background, green text */
.tp-prices__row--head {
    background-color: #ffffff;
}

.tp-prices__row--head .tp-prices__cell {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 900 !important;
    font-size: 14px !important;
    color: #8ab13e !important;
    padding: 7px 6px !important;
    text-align: center !important;
}

.tp-prices__row--head .tp-prices__cell--label {
    text-align: left !important;
    padding-left: 14px !important;
}

/* Price rows – dark green background, white text */
.tp-prices__body .tp-prices__row {
    background-color: #688334;
}

.tp-prices__body .tp-prices__cell {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 400 !important;
    font-size: 15px !important;
    color: #ffffff !important;
    padding: 7px 6px !important;
    text-align: center !important;
    line-height: 1.3 !important;
}

.tp-prices__body .tp-prices__cell--label {
    text-align: left !important;
    padding-left: 14px !important;
}

/* Column widths: label takes 45%, two price cols share the rest */
.tp-prices__cell--label {
    flex: 0 0 45%;
    width: 45%;
}

.tp-prices__cell:not(.tp-prices__cell--label) {
    flex: 1;
}

/* ─────────────────────────────────────────────────────────────
   OPENING HOURS  (flexbox row – same approach)
───────────────────────────────────────────────────────────── */
.tp-hours {
    width: 100%;
    box-sizing: border-box;
}

.tp-hours__row {
    display: flex;
    width: 100%;
    background-color: #ffffff;
    box-sizing: border-box;
}

.tp-hours__cell {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 900 !important;
    font-size: 13px !important;
    color: #8ab13e !important;
    padding: 8px 6px !important;
    text-align: center !important;
    line-height: 1.3 !important;
    flex: 1;
}

.tp-hours__cell--label {
    flex: 0 0 45%;
    width: 45%;
    text-align: left !important;
    padding-left: 14px !important;
}

/* ─────────────────────────────────────────────────────────────
   ANNUAL PASS BUTTON
───────────────────────────────────────────────────────────── */
.tp-annual-wrap {
    background-color: #8ab13e;
    padding: 14px 16px 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ─────────────────────────────────────────────────────────────
   PLEASE NOTE FOOTER
───────────────────────────────────────────────────────────── */
.tp-please-note-wrap {
    background-color: #8ab13e;
    padding: 0 20px 16px;
    text-align: center;
}

.tp-please-note {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 400 !important;
    font-size: 12px !important;
    line-height: 1.5 !important;
    color: #ffffff !important;
    margin: 0 !important;
    padding: 0 !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
