* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    text-align: center;
    background-size: cover;
    color: #d4a373;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -2;
}

header {
    background: rgba(42, 28, 19, 0.9);
    color: white;
    padding: 20px;
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 3px solid #a67c52;
}

main {
    flex: 1;
    padding: 20px;
    position: relative;
    z-index: 1;
}

h1 {
    font-size: 48px;
    color: #e2c799;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.7);
}

h2 {
    font-size: 32px;
    color: #e2c799;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.7);
}

img {
    width: 80%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(255, 215, 0, 0.3);
    margin-top: 20px;
}

#age-verification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.modal {
    background: #4e3629;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0px 0px 10px rgba(255, 215, 0, 0.4);
    color: #e2c799;
    font-weight: bold;
    width: 300px;
}

input {
    padding: 10px;
    font-size: 18px;
    width: 100px;
    text-align: center;
    border: 2px solid #a67c52;
    border-radius: 5px;
    background: #2d1e16;
    color: #e2c799;
}

button {
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    background: #a67c52;
    color: white;
    border: none;
    border-radius: 5px;
    transition: 0.3s;
}

button:hover {
    background: #d4a373;
}

footer {
    background: rgba(42, 28, 19, 0.9);
    color: white;
    padding: 15px;
    text-align: center;
    margin-top: auto;
    font-weight: bold;
}

#bottle-section {
    margin-top: 950px;
    padding: 20px;
    background: rgba(42, 28, 19, 0.8);
    border-radius: 10px;
    text-align: center;
}

#bottle-section a {
    display: inline-block;
    transition: transform 0.3s ease-in-out;
}

#bottle-section a:hover {
    transform: scale(1.1);
}

#bottle-section img {
    width: 90%;
    margin-bottom: 20px;
}

#orechovice-section {
    margin-top: 24px;
    padding: 20px;
    background: rgba(42, 28, 19, 0.8);
    border-radius: 10px;
}

#orechovice-section img {
    width: 30%;
    margin-bottom: 20px;
}

#výroba-section {
    margin-top: 24px;
    padding: 20px;
    background: rgba(42, 28, 19, 0.8);
    border-radius: 10px;
}

#výroba-section img {
    width: 38%;
    margin-bottom: 20px;
}

.contact-box {
    padding: 20px;
    display: inline-block;
}


@media (max-width: 768px) {
    header {
        font-size: 24px;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

    img {
        width: 90%;
        max-width: 400px;
    }

    #bottle-section img {
        width: 80%;
    }

    #orechovice-section img {
        width: 50%;
    }

    #výroba-section img {
        width: 60%;
    }

    .contact-box {
        width: 100%;
    }
}


@media (max-width: 480px) {
    header {
        font-size: 20px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 24px;
    }

    img {
        width: 100%;
        max-width: 350px;
    }

    #bottle-section img {
        width: 90%;
    }

    #orechovice-section img {
        width: 60%;
    }

    #výroba-section img {
        width: 70%;
    }

    .contact-box {
        width: 100%;
    }
}
