/* Obecné nastavení */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
}

/* Overlay pro ověření věku */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal {
    background: #222;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.modal button {
    margin: 10px;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.modal button:first-child {
    background-color: green;
    color: white;
}

.modal button:last-child {
    background-color: red;
    color: white;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
}

.logo {
    height: 50px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin-right: 25px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s, transform 0.3s;
}

nav ul li a:hover {
    color: #c39b77;
    transform: scale(1.1);
}

nav ul li a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #c39b77;
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

nav ul li a:hover::before {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.shop-btn {
    background: #c39b77;
    color: white;
    padding: 10px 15px;
    margin-right: 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.hlavni {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.hlavni video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.products {
    position: relative;
    text-align: center;
    padding: 60px 10%;
}

.products h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 10px;
}

.products p {
    font-size: 1.1rem;
    color: #bbb;
    max-width: 700px;
    margin: 0 auto 40px;
}

.product-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.product {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 300px;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s;
}

.product:hover {
    transform: scale(1.05);
}

.product img {
    width: 100px;
    height: auto;
    margin-bottom: 15px;
}

.product h3 {
    font-size: 1.4rem;
    color: #fff;
}

.product p {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 15px;
}

.product button {
    background: #c39b77;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.product button:hover {
    background: #af8e53;
}

/* Burger menu pro mobilní zařízení */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    margin-right: 100px;
}

.burger-menu span {
    width: 100%;
    height: 3px;
    background: white;
    transition: all 0.3s;
}

/* Responzivní design */
@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        gap: 15px;
        position: absolute;
        top: 80px;
        right: 20px;
        background: rgba(0, 0, 0, 0.9);
        padding: 20px;
        width: 200px;
        border-radius: 10px;
    }

    nav ul.active {
        display: flex;
    }

    .burger-menu {
        display: flex;
    }

    nav ul li {
        display: block;
    }
}

footer {
    background-color: #222;
    padding: 20px;
    color: white;
    text-align: center;
    margin-top: 50px;
}

footer p {
    margin: 0;
    font-size: 1rem;
    color: #bbb;
}
