/*
|--------------------------------------------------------------------------
| TEMPORARY TOUR PAGE
|--------------------------------------------------------------------------
*/

.temporary-tour-page {
    --temporary-bg: #f7f8fa;
    --temporary-white: #ffffff;
    --temporary-dark: #111827;
    --temporary-text: #334155;
    --temporary-muted: #64748b;
    --temporary-border: #e5e7eb;
    --temporary-accent: #f4b400;

    color: var(--temporary-text);
    background: var(--temporary-bg);
}


/*
|--------------------------------------------------------------------------
| TEMPORARY TOUR NAVBAR
|--------------------------------------------------------------------------
*/

.temporary-tour-page {
    position: relative;
}

.temporary-tour-page>header,
.temporary-tour-page>.navbar,
.temporary-tour-page .navbar {
    position: absolute !important;

    top: 0;
    right: 0;
    left: 0;

    z-index: 1000;

    width: 100%;

    background: transparent !important;

    border: 0;
    box-shadow: none;
}


/*
|--------------------------------------------------------------------------
| HERO
|--------------------------------------------------------------------------
*/

.temporary-tour-hero {
    position: relative;

    min-height: 620px;

    display: flex;
    align-items: stretch;

    overflow: hidden;

    background: #111827;
}

.temporary-tour-hero-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.temporary-tour-hero-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;
}

.temporary-tour-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, .72) 0%,
            rgba(0, 0, 0, .50) 42%,
            rgba(0, 0, 0, .18) 100%);
}

.temporary-tour-hero .container {
    position: relative;
    z-index: 2;

    width: 100%;
}

.temporary-tour-hero-content {
    min-height: 620px;

    max-width: 760px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding-top: 110px;
    padding-bottom: 70px;

    color: #ffffff;
}


/*
|--------------------------------------------------------------------------
| HERO EYEBROW
|--------------------------------------------------------------------------
*/

.temporary-tour-eyebrow {
    display: inline-block;

    margin-bottom: 14px;

    font-size: .75rem;
    font-weight: 700;
    line-height: 1.4;

    letter-spacing: .13em;
    text-transform: uppercase;
}

.temporary-tour-hero .temporary-tour-eyebrow {
    color: rgba(255, 255, 255, .78);
}


/*
|--------------------------------------------------------------------------
| HERO TITLE
|--------------------------------------------------------------------------
*/

.temporary-tour-hero h1 {
    max-width: 720px;

    margin: 0 0 18px;

    color: #ffffff;

    font-size: clamp(2.7rem,
            5vw,
            4.6rem);

    font-weight: 700;
    line-height: 1.04;

    letter-spacing: -.04em;
}


/*
|--------------------------------------------------------------------------
| HERO SUBTITLE
|--------------------------------------------------------------------------
*/

.temporary-tour-subtitle {
    max-width: 650px;

    margin: 0 0 28px;

    color: rgba(255, 255, 255, .9);

    font-size: 1.08rem;
    line-height: 1.7;
}


/*
|--------------------------------------------------------------------------
| HERO META
|--------------------------------------------------------------------------
*/

.temporary-tour-meta {
    display: flex;
    flex-wrap: wrap;

    gap: 10px 24px;

    margin-bottom: 34px;
}

.temporary-tour-meta span {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: rgba(255, 255, 255, .88);

    font-size: .88rem;
    line-height: 1.5;
}

.temporary-tour-meta i {
    color: var(--temporary-accent);

    font-size: .9rem;
}


/*
|--------------------------------------------------------------------------
| BUTTON
|--------------------------------------------------------------------------
*/

.temporary-tour-page .btn {
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: .88rem;
    font-weight: 600;

    transition:
        transform .2s ease,
        background-color .2s ease,
        border-color .2s ease;
}

.temporary-tour-page .btn:hover {
    transform: translateY(-2px);
}

.temporary-tour-page .btn-primary {
    border-color: var(--temporary-accent);

    background: var(--temporary-accent);
    color: #111827;
}

.temporary-tour-page .btn-primary:hover {
    border-color: #dfa600;

    background: #dfa600;
    color: #111827;
}


/*
|--------------------------------------------------------------------------
| INFORMATION UPDATE
|--------------------------------------------------------------------------
*/

.temporary-tour-update-section {
    padding: 34px 0 0;

    background: var(--temporary-bg);
}

.temporary-tour-update {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 35px;

    padding: 28px 32px;

    background: var(--temporary-white);

    border: 1px solid var(--temporary-border);
    border-radius: 18px;

    box-shadow:
        0 10px 30px rgba(15, 23, 42, .04);
}

.temporary-tour-update-content {
    max-width: 850px;
}

.temporary-tour-update-label {
    display: block;

    margin-bottom: 8px;

    color: var(--temporary-muted);

    font-size: .72rem;
    font-weight: 700;

    letter-spacing: .11em;
    text-transform: uppercase;
}

.temporary-tour-update h2 {
    margin: 0 0 10px;

    color: var(--temporary-dark);

    font-size: clamp(1.45rem,
            2.5vw,
            2rem);

    font-weight: 700;
    line-height: 1.2;

    letter-spacing: -.025em;
}

.temporary-tour-update p {
    margin: 0 0 6px;

    color: var(--temporary-muted);

    font-size: .94rem;
    line-height: 1.7;
}

.temporary-tour-update p:last-child {
    margin-bottom: 0;
}

.temporary-tour-update-action {
    flex-shrink: 0;
}


/*
|--------------------------------------------------------------------------
| OVERVIEW
|--------------------------------------------------------------------------
*/

.temporary-tour-overview {
    padding: 90px 0;

    background: var(--temporary-bg);
}

.temporary-tour-overview-image {
    width: 100%;

    overflow: hidden;

    aspect-ratio: 4 / 3;

    background: #e2e8f0;

    border-radius: 20px;
}

.temporary-tour-overview-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .5s ease;
}

.temporary-tour-overview-image:hover img {
    transform: scale(1.03);
}


/*
|--------------------------------------------------------------------------
| SECTION HEADING
|--------------------------------------------------------------------------
*/

.temporary-tour-section-heading {
    margin-bottom: 24px;
}

.temporary-tour-section-heading .temporary-tour-eyebrow {
    margin-bottom: 10px;

    color: #8a6a00;
}

.temporary-tour-section-heading h2 {
    margin: 0;

    color: var(--temporary-dark);

    font-size: clamp(2rem,
            3.5vw,
            2.8rem);

    font-weight: 700;
    line-height: 1.15;

    letter-spacing: -.035em;
}

.temporary-tour-section-heading>p {
    max-width: 680px;

    margin: 14px auto 0;

    color: var(--temporary-muted);

    font-size: 1rem;
    line-height: 1.7;
}


/*
|--------------------------------------------------------------------------
| OVERVIEW CONTENT
|--------------------------------------------------------------------------
*/

.temporary-tour-overview-content {
    max-width: 720px;
}

.temporary-tour-overview-content p {
    margin: 0 0 16px;

    color: var(--temporary-muted);

    font-size: 1rem;
    line-height: 1.85;
}

.temporary-tour-overview-content p:last-child {
    margin-bottom: 0;
}


/*
|--------------------------------------------------------------------------
| HIGHLIGHTS
|--------------------------------------------------------------------------
*/

.temporary-tour-highlights-section {
    padding: 90px 0;

    background: var(--temporary-white);
}

.temporary-tour-highlight {
    height: 100%;

    padding: 28px 24px;

    background: var(--temporary-white);

    border: 1px solid var(--temporary-border);
    border-radius: 18px;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.temporary-tour-highlight:hover {
    transform: translateY(-4px);

    border-color: #d8dee7;

    box-shadow:
        0 16px 40px rgba(15, 23, 42, .07);
}


/*
|--------------------------------------------------------------------------
| HIGHLIGHT ICON
|--------------------------------------------------------------------------
*/

.temporary-tour-highlight-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    border-radius: 14px;

    background: #fff7db;

    color: #9a7300;

    font-size: 1.05rem;
}

.temporary-tour-highlight h3 {
    margin: 0 0 10px;

    color: var(--temporary-dark);

    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
}

.temporary-tour-highlight p {
    margin: 0;

    color: var(--temporary-muted);

    font-size: .91rem;
    line-height: 1.7;
}


/*
|--------------------------------------------------------------------------
| FINAL CTA
|--------------------------------------------------------------------------
*/

.temporary-tour-cta-section {
    padding: 0 0 90px;

    background: var(--temporary-white);
}

.temporary-tour-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;

    padding: 44px;

    background: var(--temporary-dark);

    border-radius: 24px;

    color: #ffffff;
}

.temporary-tour-cta-content {
    max-width: 700px;
}

.temporary-tour-cta .temporary-tour-eyebrow {
    margin-bottom: 10px;

    color: rgba(255, 255, 255, .58);
}

.temporary-tour-cta h2 {
    margin: 0 0 12px;

    color: #ffffff;

    font-size: clamp(1.8rem,
            3vw,
            2.5rem);

    font-weight: 700;
    line-height: 1.15;

    letter-spacing: -.03em;
}

.temporary-tour-cta p {
    margin: 0;

    color: #cbd5e1;

    font-size: .96rem;
    line-height: 1.7;
}

.temporary-tour-cta-action {
    flex-shrink: 0;
}


/*
|--------------------------------------------------------------------------
| TABLET
|--------------------------------------------------------------------------
*/

@media (max-width: 991.98px) {

    .temporary-tour-hero,
    .temporary-tour-hero-content {
        min-height: 560px;
    }

    .temporary-tour-hero-content {
        padding-top: 100px;
        padding-bottom: 70px;
    }

    .temporary-tour-overview {
        padding: 70px 0;
    }

    .temporary-tour-highlights-section {
        padding: 70px 0;
    }

    .temporary-tour-cta-section {
        padding-bottom: 70px;
    }

}


/*
|--------------------------------------------------------------------------
| MOBILE
|--------------------------------------------------------------------------
*/

@media (max-width: 767.98px) {

    /*
    |--------------------------------------------------------------------------
    | Navbar
    |--------------------------------------------------------------------------
    */

    body:has(.temporary-tour-page) .navbar {
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
    }


    /*
    |--------------------------------------------------------------------------
    | Hero
    |--------------------------------------------------------------------------
    */

    .temporary-tour-hero {
        min-height: 590px;
    }

    .temporary-tour-hero-content {
        min-height: 590px;

        padding-top: 120px;
        padding-bottom: 60px;
    }

    .temporary-tour-hero-overlay {
        background:
            linear-gradient(90deg,
                rgba(0, 0, 0, .74) 0%,
                rgba(0, 0, 0, .42) 100%);
    }

    .temporary-tour-hero h1 {
        font-size: 2.65rem;
    }

    .temporary-tour-subtitle {
        font-size: 1rem;
    }


    /*
    |--------------------------------------------------------------------------
    | Hero Meta
    |--------------------------------------------------------------------------
    */

    .temporary-tour-meta {
        gap: 10px 18px;

        margin-bottom: 28px;
    }

    .temporary-tour-meta span {
        font-size: .82rem;
    }


    /*
    |--------------------------------------------------------------------------
    | Update
    |--------------------------------------------------------------------------
    */

    .temporary-tour-update-section {
        padding: 20px 16px 0;
    }

    .temporary-tour-update {
        flex-direction: column;
        align-items: flex-start;

        gap: 22px;

        padding: 24px 22px;

        border-radius: 16px;
    }


    /*
    |--------------------------------------------------------------------------
    | Overview
    |--------------------------------------------------------------------------
    */

    .temporary-tour-overview {
        padding: 60px 20px;
    }

    .temporary-tour-overview-image {
        aspect-ratio: 16 / 11;

        border-radius: 16px;
    }

    .temporary-tour-section-heading h2 {
        font-size: 2rem;
    }


    /*
    |--------------------------------------------------------------------------
    | Highlights
    |--------------------------------------------------------------------------
    */

    .temporary-tour-highlights-section {
        padding: 60px 20px;
    }

    .temporary-tour-highlight {
        padding: 24px 22px;
    }


    /*
    |--------------------------------------------------------------------------
    | CTA
    |--------------------------------------------------------------------------
    */

    .temporary-tour-cta-section {
        padding: 0 20px 60px;
    }

    .temporary-tour-cta {
        flex-direction: column;
        align-items: flex-start;

        gap: 26px;

        padding: 30px 24px;

        border-radius: 20px;
    }

    .temporary-tour-cta h2 {
        font-size: 1.9rem;
    }

}


/*
|--------------------------------------------------------------------------
| SMALL MOBILE
|--------------------------------------------------------------------------
*/

@media (max-width: 575.98px) {

    .temporary-tour-hero {
        min-height: 570px;
    }

    .temporary-tour-hero-content {
        min-height: 570px;

        padding-top: 110px;
        padding-right: 10px;
        padding-bottom: 50px;
        padding-left: 10px;
    }

    .temporary-tour-hero h1 {
        font-size: 2.35rem;
    }

    .temporary-tour-meta {
        display: grid;
        grid-template-columns: 1fr 1fr;

        gap: 10px 12px;
    }

    .temporary-tour-page .btn {
        width: 100%;
    }

    .temporary-tour-update-action {
        width: 100%;
    }

    .temporary-tour-update-action .btn {
        width: 100%;
    }

}