/* =========================================================
   WAY OUT WEST GAME PAGE
   Western / Frontier / Parchment Theme
   Responsive / Mobile-Safe Version
   ========================================================= */


/* =========================================================
   GLOBAL BOX SIZING / OVERFLOW PROTECTION
   ========================================================= */

.wayOutWest-hero,
.wayOutWest-story-section,
.wayOutWest-included,
.game-credit {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}


.wayOutWest-hero *,
.wayOutWest-story-section *,
.wayOutWest-included *,
.game-credit * {
    box-sizing: border-box;
}


.wayOutWest-hero-content,
.wayOutWest-story-container,
.wayOutWest-included-container {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}


/* =========================================================
   TITLE & BYLINE
   ========================================================= */

.wayOutWest-title {
    display: block;

    width: 100%;
    max-width: 100%;

    margin: 0 auto;

    text-align: center;
}


.wayOutWest-title h1 {
    margin-bottom: 0;

    max-width: 100%;

    white-space: nowrap;
    overflow-wrap: normal;
}


.wayOutWest-title h1 span {
    white-space: nowrap;
}


.game-byline {
    margin: -25px 0 10px;

    color: #d8cbb8;

    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    font-weight: 500;

    letter-spacing: 0.08em;

    text-align: right;

    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.9);
}


/* =========================================================
   WAY OUT WEST HERO
   ========================================================= */

.wayOutWest-hero {
    position: relative;

    min-height: 700px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    background:
        linear-gradient(
            rgba(20, 14, 9, 0.28),
            rgba(20, 14, 9, 0.78)
        ),
        url("wayOutWestBackground.jpg");

    background-size: cover;
    background-position: center;
}


/* ---------------------------------------------------------
   Hero Overlay
   --------------------------------------------------------- */

.wayOutWest-hero::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(18, 12, 8, 0.28) 100%
        );

    pointer-events: none;
}


/* ---------------------------------------------------------
   Hero Content
   --------------------------------------------------------- */

.wayOutWest-hero-content {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 850px;

    padding: 100px 30px 40px;

    margin: 0 auto;
}


/* =========================================================
   HERO EYEBROW
   ========================================================= */

.wayOutWest-hero .eyebrow {
    display: inline-block;

    max-width: 100%;

    margin: 0 0 25px;
    padding: 7px 16px;

    color: #f4ead9;

    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;

    letter-spacing: 0.18em;
    text-transform: uppercase;

    background: rgba(25, 18, 12, 0.72);

    border: 1px solid rgba(198, 161, 91, 0.45);

    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.9);
}


/* =========================================================
   MAIN TITLE
   ========================================================= */

.wayOutWest-hero h1 {
    max-width: 100%;

    margin-bottom: 15px;

    color: #fff8eb;

    font-family: 'Cinzel', serif;
    font-size: clamp(50px, 8vw, 100px);
    font-weight: 500;
    line-height: 1;

    letter-spacing: 4px;

    text-align: center;

    white-space: nowrap;
    overflow-wrap: normal;
    word-break: normal;

    text-shadow:
        0 2px 2px rgba(0, 0, 0, 0.95),
        0 4px 8px rgba(0, 0, 0, 0.75);
}


.wayOutWest-hero h1 span {
    color: var(--light-gold);

    white-space: nowrap;

    text-shadow:
        0 2px 2px rgba(0, 0, 0, 0.95),
        0 4px 8px rgba(0, 0, 0, 0.75);
}


/* =========================================================
   HERO SUBTITLE
   ========================================================= */

.wayOutWest-subtitle {
    max-width: 100%;

    margin-bottom: 30px;

    color: #eadcc5;

    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 500;

    letter-spacing: 3px;

    overflow-wrap: break-word;

    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.95),
        0 3px 7px rgba(0, 0, 0, 0.75);
}


/* =========================================================
   HERO TAGLINE
   ========================================================= */

.wayOutWest-hero .tagline {
    max-width: 100%;

    color: #f4ead9;

    white-space: nowrap;

    overflow: hidden;
    text-overflow: clip;

    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.95),
        0 3px 7px rgba(0, 0, 0, 0.75);
}


.wayOutWest-hero .tagline strong {
    color: #fff4df;

    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.95),
        0 3px 7px rgba(0, 0, 0, 0.75);
}


/* =========================================================
   HERO DETAILS
   ========================================================= */

.wayOutWest-hero-details {
    width: 100%;
    max-width: 100%;

    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: nowrap;

    gap: 30px;

    margin-top: 35px;

    box-sizing: border-box;
}


/* ---------------------------------------------------------
   Individual Detail Blocks
   --------------------------------------------------------- */

.wayOutWest-hero-details div {
    flex: 0 1 auto;

    min-width: 120px;

    padding-top: 12px;

    border-top: 1px solid rgba(198, 161, 91, 0.65);

    box-sizing: border-box;
}


/* ---------------------------------------------------------
   Players Block
   --------------------------------------------------------- */

.wayOutWest-hero-details div:first-child {
    min-width: 360px;
    max-width: 390px;
}


/* ---------------------------------------------------------
   Other Detail Blocks
   --------------------------------------------------------- */

.wayOutWest-hero-details div:not(:first-child) {
    min-width: 130px;
    max-width: 160px;
}


/* ---------------------------------------------------------
   Detail Labels
   --------------------------------------------------------- */

.wayOutWest-hero-details span {
    display: block;

    margin-bottom: 4px;

    color: #d4ae70;

    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;

    white-space: nowrap;
}


/* ---------------------------------------------------------
   Detail Values
   --------------------------------------------------------- */

.wayOutWest-hero-details strong {
    display: block;

    color: #eee2cf;

    font-size: 12px;
    font-weight: 400;

    line-height: 1.25;

    white-space: nowrap;

    text-shadow:
        0 1px 3px rgba(0, 0, 0, 0.9);
}


/* =========================================================
   HERO SCHEDULE BUTTON
   ========================================================= */

.wayOutWest-hero-content .button {
    display: block;

    width: fit-content;
    max-width: 100%;

    margin: 45px auto 0;

    box-sizing: border-box;
}


/* =========================================================
   SCHEDULE AVAILABILITY
   ========================================================= */

.schedule-availability {
    max-width: 100%;

    color: #b8aa97;

    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;

    letter-spacing: 0.04em;
    text-align: center;

    overflow-wrap: break-word;
}


.wayOutWest-hero-content > .schedule-availability {
    margin: 0.75rem 0 0;
}


/* =========================================================
   STORY SECTION
   ========================================================= */

.wayOutWest-story-section {
    position: relative;

    padding: 70px 8% 55px;

    background: #2d241a;
}


.wayOutWest-story-container {
    max-width: 800px;

    margin: auto;
}


.wayOutWest-story-text {
    max-width: 100%;

    text-align: center;
}


/* =========================================================
   STORY EYEBROW
   ========================================================= */

.wayOutWest-story-text .eyebrow {
    color: #c6a15b;
}


/* =========================================================
   STORY HEADING
   ========================================================= */

.wayOutWest-story-text h2 {
    max-width: 100%;

    margin-bottom: 30px;

    color: #eee2cf;

    font-family: 'Cinzel', serif;
    font-size: clamp(35px, 5vw, 55px);
    font-weight: 500;
    line-height: 1.2;

    overflow-wrap: break-word;
}


.wayOutWest-story-text h2 span {
    color: var(--gold);
}


/* ---------------------------------------------------------
   Western Divider
   --------------------------------------------------------- */

.wayOutWest-story-text h2::after {
    content: "";

    display: block;

    width: 70px;
    max-width: 100%;
    height: 1px;

    margin: 25px auto 0;

    background: var(--gold);
}


/* ---------------------------------------------------------
   Story Paragraphs
   --------------------------------------------------------- */

.wayOutWest-story-text p {
    margin-bottom: 20px;

    color: #d4c6b3;

    overflow-wrap: break-word;
}


/* =========================================================
   WHAT'S INCLUDED / BETA OFFER
   ========================================================= */

.wayOutWest-included {
    padding: 0 2rem 4rem;

    background: #2d241a;
}


.wayOutWest-included-container {
    max-width: 1100px;

    margin: 0 auto;
}


/* =========================================================
   BETA OFFER / PRICE BOX
   ========================================================= */

.wayOutWest-price {
    position: relative;

    width: 100%;
    max-width: 600px;

    margin: 0 auto;

    padding: 3.5rem 3rem;

    box-sizing: border-box;

    text-align: center;

    background: #241c15;

    border: 1px solid rgba(198, 161, 91, 0.7);

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.4);
}


/* ---------------------------------------------------------
   Inner Border
   --------------------------------------------------------- */

.wayOutWest-price::before {
    content: "";

    position: absolute;
    inset: 8px;

    border: 1px solid rgba(198, 161, 91, 0.18);

    pointer-events: none;
}


/* =========================================================
   BETA HEADING
   ========================================================= */

.wayOutWest-price-eyebrow {
    max-width: 100%;

    margin: 0 0 0.5rem;

    color: var(--gold);

    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;

    letter-spacing: 0.15em;
    text-transform: uppercase;

    overflow-wrap: break-word;
}


/* =========================================================
   REMAINING BETA SPOTS
   ========================================================= */

.wayOutWest-spots-remaining {
    max-width: 100%;

    margin: 0 0 1.75rem;

    color: #b7a995;

    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;

    letter-spacing: 0.08em;
    text-transform: uppercase;

    overflow-wrap: break-word;
}


/* =========================================================
   MAIN PRICE
   ========================================================= */

.wayOutWest-price-amount {
    max-width: 100%;

    margin: 0;

    color: #eadcc5;

    font-family: 'Cinzel', serif;
    font-size: 4.5rem;
    font-weight: 600;
    line-height: 1;

    overflow-wrap: break-word;

    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.45);
}


/* =========================================================
   SALES TAX
   ========================================================= */

.wayOutWest-tax-note {
    max-width: 100%;

    margin: 0.45rem 0 1.25rem;

    color: #9f9383;

    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    font-style: italic;

    overflow-wrap: break-word;
}


/* =========================================================
   DEPOSIT
   ========================================================= */

.wayOutWest-deposit-note {
    max-width: 100%;

    margin: 0 0 1.25rem;

    color: var(--gold);

    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;

    overflow-wrap: break-word;
}


/* =========================================================
   BETA EXPLANATION
   ========================================================= */

.wayOutWest-beta-note {
    width: 100%;
    max-width: 470px;

    margin: 0 auto 1.5rem;

    color: #b9ac9a;

    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    line-height: 1.6;

    overflow-wrap: break-word;
}


/* =========================================================
   PRICE DESCRIPTION
   ========================================================= */

.wayOutWest-price-description {
    max-width: 100%;

    margin: 0;

    color: #eadfce;

    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;

    overflow-wrap: break-word;
}


/* =========================================================
   PER PERSON NOTE
   ========================================================= */

.wayOutWest-price-per-person {
    max-width: 100%;

    margin: 1rem 0 0;

    color: #a69a89;

    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-style: italic;

    overflow-wrap: break-word;
}


/* =========================================================
   PRICE BOX SCHEDULE BUTTON
   ========================================================= */

.wayOutWest-price .schedule-button {
    display: inline-block;

    max-width: 100%;

    margin-top: 2rem;

    box-sizing: border-box;
}


.wayOutWest-price .schedule-availability {
    margin: 0.75rem 0 0;
}


/* =========================================================
   WESTERN ACCENTS
   ========================================================= */

.wayOutWest-story-text strong {
    color: var(--gold);
}


.wayOutWest-story-text a {
    color: var(--light-gold);

    text-decoration-color: rgba(226, 201, 137, 0.45);
    text-underline-offset: 3px;

    overflow-wrap: break-word;
}


.wayOutWest-story-text a:hover {
    color: #f0dfad;
}


/* =========================================================
   GAME CREDIT
   ========================================================= */

.game-credit {
    text-align: center;
}


.game-credit p,
.game-credit h2,
.game-credit a {
    max-width: 100%;

    overflow-wrap: break-word;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    /* -----------------------------------------------------
       PAGE OVERFLOW PROTECTION
       ----------------------------------------------------- */

    .wayOutWest-hero,
    .wayOutWest-story-section,
    .wayOutWest-included,
    .game-credit {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }


    /* -----------------------------------------------------
       Hero
       ----------------------------------------------------- */

    .wayOutWest-hero {
        min-height: 650px;
    }


    .wayOutWest-hero-content {
        width: 100%;
        max-width: 100%;

        padding: 90px 20px 40px;
    }


    .wayOutWest-hero .eyebrow {
        max-width: 100%;

        font-size: 0.62rem;
        letter-spacing: 0.13em;

        padding: 6px 12px;
    }


    .wayOutWest-hero h1 {
        font-size: clamp(38px, 12vw, 55px);

        letter-spacing: 1px;

        line-height: 1.05;

        white-space: nowrap;
    }


    .wayOutWest-subtitle {
        font-size: 13px;

        letter-spacing: 1.5px;

        line-height: 1.5;
    }


    /* -----------------------------------------------------
       Tagline
       ----------------------------------------------------- */

    .wayOutWest-hero .tagline {
        white-space: nowrap;

        font-size: 0.95rem;

        line-height: 1.5;
    }


    /* -----------------------------------------------------
       Hero Details
       ----------------------------------------------------- */

    .wayOutWest-hero-details {
        width: 100%;

        display: flex;
        flex-wrap: wrap;

        gap: 18px 12px;

        margin-top: 30px;
    }


    .wayOutWest-hero-details div {
        flex: 1 1 100px;

        min-width: 0;
        max-width: 150px;
    }


    /*
       Players remains wide enough for its requirement
       lines on normal phones.
    */

    .wayOutWest-hero-details div:first-child {
        flex: 1 1 100%;

        min-width: 0;
        max-width: 100%;
    }


    .wayOutWest-hero-details span {
        font-size: 8px;

        letter-spacing: 1.5px;
    }


    .wayOutWest-hero-details strong {
        font-size: 11px;

        white-space: normal;
    }


    /* -----------------------------------------------------
       Hero Button
       ----------------------------------------------------- */

    .wayOutWest-hero-content .button {
        max-width: 100%;

        white-space: normal;
    }


    /* -----------------------------------------------------
       Story
       ----------------------------------------------------- */

    .wayOutWest-story-section {
        padding: 75px 20px 45px;
    }


    .wayOutWest-story-container {
        width: 100%;
        max-width: 100%;
    }


    .wayOutWest-story-text h2 {
        font-size: clamp(32px, 10vw, 45px);

        line-height: 1.15;
    }


    /* -----------------------------------------------------
       Pricing
       ----------------------------------------------------- */

    .wayOutWest-included {
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 5rem;
    }


    .wayOutWest-price {
        width: 100%;
        max-width: 100%;

        padding: 3rem 1.5rem;
    }


    .wayOutWest-price-amount {
        font-size: clamp(3rem, 15vw, 3.75rem);
    }


    .wayOutWest-price-eyebrow {
        font-size: 0.72rem;

        letter-spacing: 0.12em;
    }


    .wayOutWest-spots-remaining {
        font-size: 0.68rem;

        letter-spacing: 0.06em;
    }


    .wayOutWest-price-description {
        font-size: 0.9rem;

        line-height: 1.65;
    }


    .wayOutWest-price .schedule-button {
        max-width: 100%;
    }

}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 380px) {

    .wayOutWest-hero-content {
        padding-left: 15px;
        padding-right: 15px;
    }


    .wayOutWest-hero h1 {
        font-size: 36px;

        letter-spacing: 0;
    }


    .wayOutWest-subtitle {
        font-size: 12px;

        letter-spacing: 1px;
    }


    /* -----------------------------------------------------
       Smaller Tagline
       ----------------------------------------------------- */

    .wayOutWest-hero .tagline {
        white-space: nowrap;

        font-size: 0.82rem;

        line-height: 1.5;

        letter-spacing: -0.01em;
    }


    .wayOutWest-hero-details {
        gap: 15px 8px;
    }


    .wayOutWest-hero-details div:first-child {
        flex-basis: 100%;
    }


    .wayOutWest-hero-details div:not(:first-child) {
        flex: 1 1 90px;

        min-width: 90px;
    }


    .wayOutWest-story-section {
        padding-left: 15px;
        padding-right: 15px;
    }


    .wayOutWest-included {
        padding-left: 15px;
        padding-right: 15px;
    }


    .wayOutWest-price {
        padding-left: 1.1rem;
        padding-right: 1.1rem;
    }


    .wayOutWest-price-amount {
        font-size: 3rem;
    }

}


/* =========================================================
   END
   ========================================================= */