@keyframes bearwalk {
    0% {left:10%}
    100% {left:90%}

}

.age-verification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:rgb(255 255 255 / 80%);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.age-verification__container {
    position: relative;
    max-width: 90%;
    width: 500px;
}

.age-verification__bear {
    position: absolute;
    top: -60px;
    animation:bearwalk 40s infinite linear;
    transform: translateX(-50%);
    z-index: 2;
    width: 120px;
}

.age-verification__bear img {
    width: 100%;
    height: auto;
}

.age-verification__content {
    background-color: white;
    border-radius: 12px;
    /* overflow: hidden; */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.age-verification__header {
    background-image: url(/wp-content/uploads/2025/01/menu-bg.png);
    background-color: #FFD700;
    padding: 1rem;
    text-align: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.age-verification__header h2 {
    margin: 0;
    font-size: 2rem;
  
    color: #000;
    text-transform: uppercase;
}

.age-verification__question {
    padding: 2rem 1rem;
    text-align: center;
    background-color: #fff;
}

.age-verification__question h3 {
    margin: 0;
    font-size: 3rem;

    line-height: 1.1;
    text-transform: uppercase;
    color: #000;
}

.age-verification__buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    /* padding: 2rem; */
    /* background-color: #fff; */
    margin-bottom: -35px;
}

.age-verification__button {
    padding: 0.75rem 3rem;
    border: none;
    background-color: #333;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
    text-transform: uppercase;
    clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
}

.age-verification__button:hover {
    transform: scale(1.05);
}

.age-verification__button--no {
    background-color: #333;
}

.age-verification__button--no:hover {
    background-color: #222;
}

.age-verification__button--yes {
    background-color: #333;
}

.age-verification__button--yes:hover {
    background-color: #222;
}

@media (max-width: 480px) {
    .age-verification__bear {
        width: 80px;
        top: -40px;
    }
    
    .age-verification__header h2 {
        font-size: 1.5rem;
    }
    
    .age-verification__question h3 {
        font-size: 2rem;
    }
    
    .age-verification__button {
        padding: 0.5rem 2rem;
        font-size: 1.2rem;
    }
}