* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}


.banner {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(0,0,0,0.40),rgba(0,0,0,0.40));
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.navbar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    position: relative;

}


.hamburger {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: white;
    background: transparent;
    border: none;
    padding: 10px;
    margin: 20px;
}

.logo {
    width: 150px;
    height: auto;
    cursor: pointer;
    margin: 20px;
}

.navbar ul li {
    list-style: none;
    display: inline-block;
    margin: 20px;
}

.navbar ul li a {
    text-decoration: none;
    text-transform: uppercase;
    color: white;
    font-weight: 600;
    padding: 15px;
}

li a:hover {
    background: white;
    transition: 0.6s;
}

.navbar a:hover {
    color: black;
}
.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.content h1 {
    font-size: 3em;
    font-weight: 800;
}

.content p {
    margin: 20px 0;
    font-size: 1.2em;
}

.content button:hover {
    background: #2e4d32;
    color: white;
    transition: 0.3s ease;
}



#footer {
    background-color: white;
    color: black;
    text-align: center;
    padding: 20px 0;
    position: relative;
}

.bg-video {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bg-image {
    display: none;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Pro mobil – video se skryje, zobrazí se obrázek */
@media (max-width: 768px) {
    .bg-video {
        display: none;
    }
    .bg-image {
        display: block;
    }
}
#footer{
background-color: white;
color: black;
text-align: center;
padding: 20px 0;
}


.content button{
width: 200px;
padding: 15px;
margin: 20px 5px;
text-align: center;
border-radius: 25px;
color: black;
border: 2px;
font-size: 20px;
cursor: pointer;
font-weight: 600;
}
.content button:hover{
background: rgb(46, 77, 50);
transition: 0.5s;
}
.content button:hover{
color: white;
}

a {
color: #2e4d32;
text-decoration: none;
}