
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    color: white;
    
    scroll-behavior: smooth;
    background-color: black;
}
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: url('vodka.jpg') no-repeat center center/cover;
    position: relative;
}
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
.hero h1 {
    font-size: clamp(2rem, 8vw, 6rem);
    font-size: 80px;
    font-weight: bold;
    letter-spacing: 5px;
    text-transform: uppercase;
    text-shadow: 3px 3px 10px rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
}

.hero p {
    font-size: 24px;
    font-weight: lighter;
    position: relative;
    z-index: 1;
}
.products {
    padding: 50px 20px;
    background: black;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.product {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
    backdrop-filter: blur(5px);
}

.product img {
    width: 200px;
    height: 250px;
    object-fit: cover; 
    transition: transform 0.3s ease-in-out;
}
.product img:hover {
    transform: scale(1.2);
}

.product h2 {
    margin-top: 10px;
    font-size: 24px;
}

.product p {
    font-size: 16px;
    color: #ddd;
}
.vodka {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    background: black; 
    color: white;
    padding: 40px;
    gap: 30px; 
}

.vodka-content {
    max-width: 40%;
}

.vodka h3 {
    font-size: 28px;
    margin-bottom: 15px;    
    text-align: center;
    color: white;
}

.vodka-text {
    font-size: 18px;
    line-height: 1.6;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.vodka-img {
    width: 250px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.footer{
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    color: white; 
}
.age-modal {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.age-modal-content {
    background: #333;
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 300px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.age-modal input {
    width: 80%;
    padding: 10px;
    margin-top: 10px;
    border: none;
    border-radius: 5px;
    background: #444;
    color: white;
    text-align: center;
}

.age-modal button {
    margin-top: 15px;
    padding: 10px 15px;
    border: none;
    background: #777;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.age-modal button:hover {
    background: #999;
}

.error-msg {
    display: none;
    color: red;
    margin-top: 10px;
}



@media (max-width: 768px) {
    .hero h1 {
        font-size: 4rem;
    }
    .vodka {
        flex-direction: column; 
        text-align: center;
    }
    
    .vodka-content {
        max-width: 90%; 
    }

    .vodka h3 {
        text-align: center; 
    }

    .vodka-img {
        margin-top: 20px;
    }

}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 3rem;
    }
    .vodka1 {
        max-width: 100%; 
        font-size: 18px;
        line-height: 1.6;
        background: rgba(255, 255, 255, 0.1);
        padding: 20px;
        border-radius: 10px;
        backdrop-filter: blur(5px);
    }
}


