/* =============================================================================
   SMS4Sport — Booking Page Stylesheet
   ============================================================================= */

/* -----------------------------------------------------------------------------
   Page wrapper
   ----------------------------------------------------------------------------- */
.booking-page {
    background: var(--color-blue-dark);
    direction: rtl;
    min-height: 100vh;
    overflow-x: hidden;
}

/* -----------------------------------------------------------------------------
   Booking Main Section (Hero + Iframe + Info)
   ----------------------------------------------------------------------------- */
.booking-main {
    background: url('/wp-content/uploads/2026/05/BOOKING-BR.png') no-repeat center bottom/cover;
    min-height: 100vh;
}

/* =============================================================================
   Booking Hero
   ============================================================================= */
.booking-hero {
    position: relative;
    padding: 72px 32px 48px;
    overflow: hidden;
}

/* Watermark */
.booking-hero__watermark {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 0;
}

.booking-hero__watermark img {
    width: 480px;
    max-width: 70%;
    opacity: 0.05;
    filter: grayscale(1) brightness(3);
}

.booking-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
}

/* Headings */
.booking-hero__eyebrow {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-white);
    margin: 0 0 12px;
}

.booking-hero__title {
    font-family: 'Dancing Script', cursive;
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-white);
    margin: 0;
    line-height: 1.2;
}

.booking-hero__title-sub {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-gold);
}

.booking-hero__subtitle {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--color-white);
    margin: 8px 0 0;
    letter-spacing: 0.5px;
}

.booking-hero__notice {
    font-size: 1.2rem;
    color: var(--color-gold);
    max-width: 700px;
    margin: 12px auto 0;
    line-height: 1.6;
    text-decoration: underline;
}

/* =============================================================================
   Trust Bar
   ============================================================================= */
.booking-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 14px 32px;
    margin-top: 32px;
    gap: 0;
}

.booking-trust__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 0 32px;
    position: relative;
    text-transform: none;
}

.booking-trust__item:last-child::after {
    display: none;
}

.booking-trust__check {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
}

.booking-trust__text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    margin: 0;
    white-space: nowrap;
    letter-spacing: 0.005em;
}

@media (max-width: 768px) {
    .booking-trust {
        flex-direction: column;
        gap: 10px;
    }

    .booking-trust__item {
        padding: 0;
    }

    .booking-trust__item::after {
        display: none;
    }
}

/* =============================================================================
   Booking Embed
   ============================================================================= */
.booking-embed {
    padding: 40px 32px 56px;
}

.booking-embed__inner {
    max-width: 1100px;
    margin: 0 auto;
}

/* Toolbar */
.booking-embed__toolbar {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 12px;
}

.booking-embed__refresh {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    color: var(--color-white);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 9px 18px;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
    direction: rtl;
}

.booking-embed__refresh:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(196, 162, 87, 0.5);
}

.booking-embed__refresh svg {
    flex-shrink: 0;
}

/* Frame wrapper */
.booking-embed__frame-wrap {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

.booking-embed__frame {
    display: block;
    width: 100%;
    min-height: 800px;
    border: none;
}

/* =============================================================================
   Post-Booking Info
   ============================================================================= */
.booking-info {
    padding: 32px;
}

.booking-info__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    background: rgba(65, 105, 225, 0.12); /* royal blue tint */
    border: 1px solid rgba(65, 105, 225, 0.25);
    border-radius: 12px;
    padding: 24px 32px;
    direction: rtl;
}

.booking-info__icon {
    color: #4169E1; /* royal blue — no variable defined */
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: rgba(65, 105, 225, 0.15); /* royal blue tint */
    border-radius: 50%;
}

.booking-info__title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-white);
    margin: 0 0 6px;
}

.booking-info__text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75); /* white 75% */
    line-height: 1.6;
    margin: 0 0 8px;
}

.booking-info__text a {
    color: var(--color-gold);
    text-decoration: none;
    font-weight: 600;
}

.booking-info__text a:hover {
    text-decoration: underline;
}

/* =============================================================================
   Responsive
   ============================================================================= */

/* Tablet: 769–1024px — the nowrap trust labels overflow the viewport and shove
   the whole RTL page sideways. Let items wrap and tighten padding. */
@media (max-width: 1024px) and (min-width: 769px) {
    .booking-hero {
        padding: 56px 24px 40px;
    }

    .booking-hero__title {
        font-size: 3rem;
    }

    .booking-hero__subtitle {
        font-size: 2rem;
    }

    .booking-trust {
        flex-wrap: nowrap;
        padding: 14px 16px;
        gap: 0;
        align-items: flex-start;
    }

    .booking-trust__item {
        flex: 1 1 0;
        min-width: 0;
        padding: 0 10px;
        align-items: flex-start;
    }

    .booking-trust__text {
        white-space: normal;
    }

    .booking-embed {
        padding: 32px 16px 48px;
    }

    .booking-info {
        padding: 24px 16px;
    }
}

@media (max-width: 768px) {
    .booking-hero {
        padding: 52px 20px 36px;
    }

    .booking-hero__title {
        font-size: 2rem;
    }

    .booking-hero__title-sub {
        font-size: 1.3rem;
    }

    .booking-hero__subtitle {
        font-size: 1.2rem;
    }

    .booking-trust {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .booking-trust__item {
        border-left: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 0 8px 20px;
        width: 100%;
        justify-content: flex-start;
    }

    .booking-trust__item:last-child {
        border-bottom: none;
    }

    .booking-trust__text {
        white-space: normal;
        font-size: 1rem;
    }

    .booking-trust__check {
        width: 36px;
        height: 36px;
        flex-shrink: 0;
    }

    .booking-embed {
        padding: 24px 16px 40px;
    }

    .booking-embed__frame {
        min-height: 600px;
    }

    .booking-info__inner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
}
