/*
* Bryce Resort branding styles
*/

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

body {
    background-image: linear-gradient(to bottom, #000000, #FFFFFF);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* ============================= Header ============================= */

.branding-top {
    margin: 0;
}

.branding-top .branding-inner {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    padding: 30px 20px;
}

.bce-logo {
    width: 220px;
    height: auto;
}

/* ============================= Footer ============================= */

.branding-bottom {
    margin: 0;
}

.branding-bottom .branding-inner {
    background-image: linear-gradient(rgb(44 44 44 / 0.4), rgb(44 44 44 / 0.4)), url(../images/BCE_Footer_Background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 200px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    padding: 32px 20px;
    color: #fff;
}

.bce-footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.bce-footer-logo {
    width: 160px;
    height: auto;
}

.bce-footer-resort {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: -8px;
    margin-left: 36px;
}

.bce-social {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 18px;
}

.bce-social a {
    color: #fff;
    font-size: 20px;
}

.bce-social a:hover {
    color: #b94b32;
}

.bce-footer-contact {
    text-align: right;
}

.bce-footer-contact h4 {
    font-family: 'Tinos', serif;
    font-weight: 700;
    font-size: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 30px;
    color: #fff;
}

.bce-footer-contact p {
    font-family: 'Lato', sans-serif;
    font-size: 30px;
    letter-spacing: 1px;
    margin: 4px 0;
    color: #fff;
}

/* ============================= Installment plan ============================= */

/* MTNOS-17801: "Pay by installments" is required for Bryce, so call it out in red. */
.installment-plan-form__checkbox-field label {
    color: #b94a48;
}

/* ============================= Mobile ============================= */

@media (max-width: 767px) {
    .branding-top .branding-inner {
        min-height: 160px;
        padding: 20px 16px;
    }

    .bce-logo {
        width: 150px;
    }

    .branding-bottom .branding-inner {
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 24px 20px;
    }

    .bce-footer-brand {
        align-items: center;
    }

    .bce-footer-contact {
        text-align: center;
    }

    .bce-footer-contact p {
        font-size: 14px;
    }

    .bce-footer-contact h4 {
        font-size: 22px;
    }

    .bce-footer-resort {
        margin-left: 0;
    }
}
