@import url('https://cdn-uicons.flaticon.com/2.0.0/uicons-solid-straight/css/uicons-solid-straight.css');

@font-face {
    font-family: 'helvetica-neue';
    src: url("https://prod-bvr-static.s3.us-east-1.amazonaws.com/bvr-static/css/fonts/Roboto-VariableFont_wdth%2Cwght.ttf") format("truetype");
    font-display: swap;
}

:root {
    --primary: #606060;        /* Dark grey */
    --primaryLight: #A0A0A0;   /* Lighter grey */
    --secondary: #808080;      /* Medium grey */
    --secondaryLight: #C0C0C0;
    --headerColor: #1a1a1a;
    --bodyTextColor: #4e4b66;
    --bodyTextColorWhite: #fafbfc;
    /* Homepage coloring theme */
    --darkPanelText: var(--bodyTextColorWhite);
    --darkPanelMaskBlack: rgba(0, 0, 0, 0.6);
    --darkPanelMaskColor: #1c4171b0;
    --darkPanelBGColor: #1c4157;
    --lightPanelBGColor: #e9e9e9;
    /* 13px - 16px */
    --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
    /* 31px - 49px */
    --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
    --bodyFontSize: 1rem;
    /* 60px - 100px top and bottom */
    --sectionPadding: clamp(1rem, 5vw, 1rem) 0.5rem;

    /* Color Palette */
    --infogreen: #92BE77;
    --accentblue: #559FC9;
    --accentorange: #D9A37B;
    --accentorange-light: #f6b17d;
    --accentorange-dark: #ca946a;
    --accentplum: #6B6CA5;
    --warnyellow: #FFDE59;
    --softred: #FB6D6DFF;

    --font-family: helvetica-neue, Arial, Helvetica, sans-serif;
}

form button {
    background: var(--secondaryLight);
}

body {
    margin: 0;
    padding: 0;
    font-size: 1.25rem;
    font-family: var(--font-family);
}

*, *:before, *:after {
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
}
.cs-topper {
    font-size: var(--topperFontSize);
    line-height: 1.2em;
    text-transform: uppercase;
    text-align: inherit;
    letter-spacing: .1em;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
    display: inline-block;
}

.input-wrapper {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.multiple-fields {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 15px;
}

.cs-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2em;
    text-align: inherit;
    max-width: 50rem;
    margin: 0 0 1rem 0;
    color: var(--headerColor);
    position: relative;
}

.cs-text {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    text-align: inherit;
    width: 100%;
    max-width: 40.625rem;
    margin: 0;
    color: var(--bodyTextColor);
}

.dark-bg-text {
    color: rgb(255, 255, 255);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.title-bg {
    width: 100%;
    height: 60vh;
    background-image: url(https://prod-bvr-static.s3.amazonaws.com/bvr-static/images/site/home_banner_img_2.jpg);
    padding: 0;
    background-size: cover;
    align-content: center;
    background-position: center center;
    background-repeat: no-repeat;
}

.bg-overlay {
    width: 100%;
    height: 60vh;
    background-color: #0000006b;
    align-content: center;
    padding: 1rem 10px;

}

.title-underlay {
    border-radius: 10px;
    padding: 10px;
}

.calendar{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 50px;
}

.calendar-title{
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.2em;
    text-align: inherit;
    max-width: 50rem;
    margin: 0 0 1rem 0;
    color: var(--headerColor);
}

.infotainer-bg {
   
}

.infotainer {
    display: grid;
    padding-top: 40px;
    padding-bottom: 40px;
    justify-content: center;
    grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
}

@media screen and (orientation: portrait) {
    .infotainer {
        grid-template-columns: repeat(auto-fill, minmax(40rem, 1fr));
    }
    .calendar{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        padding: 20px;
    }
}

.cs-form > label {
    width: 100%;
}

@keyframes appear {
    from {
        opacity: 0;
        scale: 0.5;
    }
    to {
        opacity: 1;
        scale: 1;
    }
}

.info-card {
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0 cover 40%;
    background-color: white;
    border-radius: 15px;
    border-color: var(--accentblue);
    margin: 20px 10px;
    padding: 20px;
    max-width: 100%;
    min-width: 220px;
    border-width: 1px;
    border-style: Solid;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-family: Arial, Helvetica, sans-serif;
}

.info-card h2{
    font-size: 1.5rem;
    text-align: center;
    
}

.info-card > img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 15%;
    line-height: 2.5em;
    
}

select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 8px;
    background-color: #f1f3f5;
    font-size: 14px;
    outline: none;
    cursor: pointer;
    transition: 0.3s ease;
}

select:hover {
    background-color: #e9ecef;
}

.text-center {
    text-align: center;
}

.signup-box {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.phone-number {
    font-size: 2rem;
    font-weight: bold;
    color: #2c5282;
    margin: 1.5rem 0;
}

.availability {
    color: #4a5568;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.benefits-list {
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

.benefits-list p {
    margin: 0.75rem 0;
    color: #2d3748;
}

#signup-section {
    padding: 4rem 0;
}

/* Hero Sections - Merged from hero-82.css and hero-856.css */
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #hero-82 {
        /* Centers button */
        text-align: center;
        /* 144px - 300px - leaving extra space for the navigation */
        padding: clamp(9rem, 25.95vw, 18.75rem) 1rem 0;
        /* 130px - 200px */
        padding-bottom: clamp(8.125rem, 12.5vw, 25em);
        position: relative;
        z-index: 1;
    }
    #hero-82 .cs-background {
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -2;
    }
    #hero-82 .cs-background:before {
        /* Overlay */
        content: "";
        width: 100%;
        height: 100%;
        background: #000;
        opacity: 0.7;
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        z-index: 1;
        /* prevents the cursor from interacting with it */
        pointer-events: none;
    }
    #hero-82 .cs-background img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    #hero-82 .cs-container {
        width: 100%;
        max-width: 67.5rem;
        margin: auto;
    }
    #hero-82 .cs-title {
        /* 39px - 61px */
        font-size: clamp(2.4375rem, 6.4vw, 3.8125rem);
        font-weight: 700;
        line-height: 1.2em;
        text-align: center;
        max-width: 51.8125rem;
        /* 16px - 24px */
        margin: 0 auto clamp(1rem, 4vw, 1.5rem);
        color: #fff;
        position: relative;
    }
    #hero-82 .cs-title:after {
        /* Divider Line */
        content: "";
        width: 6.25rem;
        height: 0.5rem;
        /* 16px - 24px */
        margin: clamp(1rem, 4vw, 1.5rem) auto clamp(1rem, 4vw, 1.5rem);
        background: var(--primary);
        opacity: 1;
        position: relative;
        display: block;
    }
    #hero-82 .cs-text {
        /* 16px - 25px */
        font-size: clamp(1rem, 1.95vw, 1.5625rem);
        line-height: 1.5em;
        text-align: center;
        width: 100%;
        /* 464px - 800px */
        max-width: clamp(29rem, 60vw, 50rem);
        margin: 0 auto;
        /* 40px - 48px */
        margin-bottom: clamp(2.5rem, 4vw, 3rem);
        color: #fff;
    }
    #hero-82 .cs-button-solid {
        font-size: 1rem;
        line-height: 3.5rem;
        text-decoration: none;
        font-weight: 700;
        margin: auto;
        color: #fff;
        padding: 0 1.5rem;
        background-color: var(--primary);
        border-radius: 0.25rem;
        display: inline-block;
        position: relative;
        z-index: 1;
    }
    #hero-82 .cs-button-solid:before {
        content: "";
        position: absolute;
        display: block;
        height: 100%;
        width: 0%;
        background: #000;
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        border-radius: 0.25rem;
        transition: width 0.3s;
    }
    #hero-82 .cs-button-solid:hover:before {
        width: 100%;
    }

    #hero-856 {
        /* centers button */
        text-align: center;
        /* 116px - 164px top */
        /* 60px - 100px  bottom */
        padding: clamp(7.25rem, 16.82vw, 10.25rem) 1rem
            clamp(3.75rem, 7.82vw, 6.25rem);
        
        /* clips the svg wave from overflowing */
        overflow: hidden;
        position: relative;
        z-index: 1;
    }
    #hero-856 .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 3rem;
    }
    #hero-856 .cs-content {
        max-width: 39.375rem;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    #hero-856 .cs-title {
        /* 39px - 61px */
        font-size: clamp(2.4375rem, 5vw, 3.8125rem);
        font-weight: 900;
        line-height: 1.2em;
        text-align: center;
        /* 23 characters including spaces wide */
        max-width: 23ch;
        margin: 0 0 1rem 0;
        color: var(--headerColor);
        position: relative;
    }
    #hero-856 .cs-text {
        /* 16px - 20px */
        font-size: clamp(1rem, 1.5vw, 1.25rem);
        line-height: 1.5em;
        text-align: center;
        width: 100%;
        max-width: 33.1875rem;
        /* 28px - 40px */
        margin: 0 0 calc(clamp(1.75rem, 3.92vw, 2.5rem) * 0.50) 0;
        color: var(--bodyTextColor);
    }
    #hero-856 .cs-button-solid {
        font-size: 1rem;
        /* 46px - 56px */
        line-height: clamp(2.875rem, 5.5vw, 3.5rem);
        text-decoration: none;
        font-weight: 700;
        text-align: center;
        margin: 0;
        color: #fff;
        min-width: 9.375rem;
        padding: 0 1.5rem;
        background-color: var(--primary);
        border-radius: 0.25rem;
        display: inline-block;
        position: relative;
        z-index: 1;
        /* prevents padding from adding to the width */
        box-sizing: border-box;
    }
    #hero-856 .cs-button-solid:before {
        content: "";
        position: absolute;
        height: 100%;
        width: 0%;
        background: #000;
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        border-radius: 0.25rem;
        transition: width 0.3s;
    }
    #hero-856 .cs-button-solid:hover:before {
        width: 100%;
    }
    #hero-856 .cs-picture {
        width: 100%;
        max-width: 20vw;
        /* 400px - 712px */
        height: clamp(25rem, 95vw, 44.5rem);
        /* 100px - 200px */
        border-radius: 0 clamp(2rem, 6vw, 4rem) 0
            clamp(2rem, 6vw, 4rem);
        
        /* clips the img tag corners */
        overflow: hidden;
        display: block;
        position: relative;
        
    }
    #hero-856 .cs-picture img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        /* makes image act as a background image */
        object-fit: contain;

        /* ensures the top of the images is at the top of the container, no heads getting cut off */
        
    }
    #hero-856 .cs-wave {
        /* we're stretching the svg wider than the viewport so it's taller and has more of a presence */
        width: 320%;
        height: auto;
        display: block;
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        z-index: -1;
    }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #hero-856 {
        text-align: left;
    }
    #hero-856 .cs-container {
        flex-direction: row;
        justify-content: space-between;
    }
    #hero-856 .cs-content {
        width: 40vw;
        /* prevents flex-box from squishing it */
        flex: none;
        align-items: flex-start;
        /* sends it to the right in the 2nd position */
        order: 2;
    }
    #hero-856 .cs-title,
    #hero-856 .cs-text {
        text-align: left;
    }
    #hero-856 .cs-picture {
        /* 623px - 814px */
        height: clamp(38.9375rem, 60vw, 50.875rem);
    }
    #hero-856 .cs-wave {
        width: 100%;
        left: 0;
        /* flips it horizontally */
        transform: scaleX(-1);
    }
}

@media (max-width: 768px) {
    .infotainer {
        grid-template-columns: 1fr;
    }
}

