/* -- BOOK THE CART -- */
@media only screen and (min-width: 0px) {
    .page-hero {
        min-height: 62svh;
        background: repeating-linear-gradient(
            90deg,
            var(--lightblue),
            var(--lightblue) 10%,
            var(--midblue) 10%,
            var(--midblue) 20%
        );
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    .page-hero::before,
    .page-hero::after {
        content: '';
        position: absolute;
        border: 4px solid white;
        border-radius: 50%;
        opacity: 0.65;
    }
    .page-hero::before {
        width: 180px;
        height: 180px;
        top: 8%;
        left: -70px;
    }
    .page-hero::after {
        width: 260px;
        height: 260px;
        right: -110px;
        bottom: -90px;
    }
    .hero-card {
        animation: bounceDown 1.5s forwards;
        background-color: white;
        border-radius: 50px;
        box-shadow: 0px 0px 20px 0px var(--darkblue);
        padding: 2rem;
        width: clamp(0px, 92%, 850px);
        position: relative;
        z-index: 1;
    }
    .hero-card img {
        width: clamp(0px, 40%, 200px);
        height: auto;
    }
    .eyebrow {
        color: var(--cherryred);
        font-weight: bold;
        letter-spacing: 1px;
        margin-bottom: 0;
        text-transform: uppercase;
    }
    .hero-card h1,
    #bookingOptions h2,
    .intro-card h2,
    .cta-card h2 {
        font-size: calc(2rem + 1vw);
        line-height: 1.1;
        margin: 0.5rem 0 1rem;
    }
    #bookingIntro {
        background-color: white;
    }
    .intro-card {
        text-align: center;
        max-width: 850px;
        margin: 0 auto;
    }
    #bookingOptions {
        background-color: var(--cherryred);
        text-align: center;
    }
    #bookingOptions h2 {
        background-color: white;
        border-radius: 50px;
        display: inline-block;
        padding: 0.5rem 1.5rem;
    }
    #optionsGrid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }
    .booking-card {
        background-color: white;
        border: 1px solid var(--darkblue);
        border-radius: 50px;
        box-shadow: 10px 10px 0px 0px var(--midblue);
        padding: 2rem;
        text-align: left;
        position: relative;
        overflow: hidden;
    }
    .booking-card::after {
        content: '';
        position: absolute;
        width: 120px;
        height: 120px;
        border: 3px dashed var(--midblue);
        border-radius: 50%;
        right: -45px;
        top: -45px;
    }
    .booking-card h3 {
        color: var(--cherryred);
        font-size: 2rem;
        margin: 0.5rem 0;
    }
    .card-number {
        display: flex;
        align-items: center;
        justify-content:space-between;
        max-width: 300px;
    }
    .card-number span {
        align-items: center;
        background-color: var(--darkblue);
        border-radius: 50%;
        color: white;
        display: flex;
        font-size: 1.3rem;
        font-weight: bold;
        height: 60px;
        justify-content: center;
        width: 60px;
    }
    .card-number img {
        width: clamp(0px, 40%, 100px);
        height: auto; 
    }
    .note {
        background-color: var(--lightblue);
        border-radius: 25px;
        font-weight: bold;
        padding: 1rem;
    }
    #bookingCta {
        background: repeating-linear-gradient(
            90deg,
            var(--lightblue),
            var(--lightblue) 10%,
            var(--midblue) 10%,
            var(--midblue) 20%
        );
    }
    .cta-card {
        background-color: white;
        border-radius: 50px;
        box-shadow: 0px 0px 20px 0px var(--darkblue);
        margin: 0 auto;
        max-width: 850px;
        padding: 2rem;
        text-align: center;
    }
        #whiteWave {
        position: absolute;
        bottom: 0;
        z-index: 0;
    }
    #contact {
        background-color: white;
    }
}
@media only screen and (min-width: 768px) {
    .hero-card {
        padding: 3rem;
    }
    #optionsGrid {
        grid-template-columns: 1fr 1fr;
    }
    .booking-card {
        padding: 2.5rem;
    }
}
