/* Orange Sky Travel — single Trip page styling.
   Layout matches the live Squarespace design: centered trip title (H1),
   trip code (H2), outlined BOOK THIS TRIP button, Heyzine flipbook,
   orange DOWNLOAD TRIPBOOK link.

   The template renders from ACF fields only; the brand orange is the
   single CSS variable below — tweak it to change every accent on the page. */

:root {
    --ost-orange: #e0701f;
    --ost-orange-dark: #c15e13;
    --ost-ink: #1a1a1a;
}

.ost-trip-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 56px 20px 96px;
    text-align: center;
}

.ost-trip-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--ost-ink);
    margin: 0 0 0.4em;
    line-height: 1.2;
}

.ost-trip-code {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--ost-ink);
    margin: 0 0 2rem;
}

/* ---- BOOK THIS TRIP : outlined button ---- */
.ost-trip-cta {
    margin: 0 0 2.5rem;
}

.ost-btn {
    display: inline-block;
    border: 2px solid var(--ost-ink);
    background: transparent;
    color: var(--ost-ink);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    padding: 18px 46px;
    text-decoration: none;
    border-radius: 2px;
    line-height: 1;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

.ost-btn:hover,
.ost-btn:focus {
    background: var(--ost-orange);
    border-color: var(--ost-orange);
    color: #fff;
}

/* ---- Heyzine flipbook iframe ---- */
/* Wide enough for the 2-page book spread; Heyzine collapses to single page
   on narrower viewports automatically. */
.ost-trip-flipbook {
    margin: 1.5rem auto 2.5rem;
    max-width: 1100px;
}

.ost-trip-flipbook .fp-iframe {
    display: block;
    width: 100%;
    height: 720px;
    border: 0;
}

/* ---- DOWNLOAD TRIPBOOK link ---- */
.ost-trip-download {
    margin: 0;
}

.ost-trip-download a {
    display: inline-block;
    color: var(--ost-orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    text-decoration: none;
    border-bottom: 2px solid var(--ost-orange);
    padding-bottom: 3px;
    transition: color .2s ease, border-color .2s ease;
}

.ost-trip-download a:hover,
.ost-trip-download a:focus {
    color: var(--ost-orange-dark);
    border-color: var(--ost-orange-dark);
}

/* Medium screens — narrower 2-page spread */
@media (max-width: 1000px) {
    .ost-trip-flipbook .fp-iframe { height: 620px; }
}

/* Small screens — single-page view */
@media (max-width: 600px) {
    .ost-trip-wrap { padding: 36px 16px 64px; }
    .ost-trip-title { font-size: 1.5rem; }
    .ost-trip-code  { font-size: 1.25rem; }
    .ost-trip-flipbook { max-width: 480px; }
    .ost-trip-flipbook .fp-iframe { height: 520px; }
    .ost-btn { padding: 16px 34px; letter-spacing: 0.14em; }
}
