:root {
    --ff-body: "futura-pt", sans-serif; 
    --ff-heading: "Cyclone Background", sans-serif;
    --clr-white: #fff;
    --clr-black: #000;
    --clr-saranac-red: #D53934; 
    --clr-saranac-red-2: #EE3A42;
}

/* Overlay container */
#age-gate-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    --overlay-opacity: 0.8;
    opacity: 0;
    transform: translateY(-100%);
    visibility: hidden;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

#age-gate-overlay.show {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

#age-gate-overlay.hide {
    opacity: 0;
    transform: translateY(-100%);
    visibility: hidden;
}

#age-gate-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,var(--overlay-opacity));
    z-index: 0;
}

#age-gate-overlay .age-gate-content {
    position: relative;
    /* display: flex;
    flex-direction: column;
    align-items: center; */
    z-index: 1;
    background: rgba(0,0,0,0.7);
    color: var(--clr-white);
    padding: 2rem;
    text-align: center;
    border-radius: 6px;
    max-width: 500px;
    width: 90%;
    /* white-space: nowrap; */
}
.age-gate-content .age-gate-question {
    font-size: 3rem;
    font-weight: 400;
    text-transform: uppercase;
    font-family: var(--ff-heading);
	letter-spacing: 1px;
}
.age-gate-content p {
    margin: 0;
}
#age-gate-overlay > .age-gate-content > label {
    font-family: var(--ff-body);
    font-size: 1rem;
}
#age-gate-overlay button {
    display: inline-block; 
    /* margin: 0 0.5rem;   */
    padding: 0.25rem 2rem;
    cursor: pointer;
    background-color: var(--clr-saranac-red);
    color: var(--clr-white);
    font-family: var(--ff-heading);
    text-transform: uppercase;
    font-size: 2rem;
    letter-spacing: 2px;
    border: none;
    border-radius: 6px;
    margin: 0.5rem;
    transition: background-color 0.3s ease;
    min-width: 150px;
}

#age-gate-overlay button:hover {
    background-color: var(--clr-saranac-red-2);
}
