@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');



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

body, html {
    font-family: "Jost", sans-serif;
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden;
    background: url("intro-final.gif") no-repeat center;
    background-size: cover;
    backdrop-filter: blur(20px); /* Blur effect */
    height: 100vh;
}  






.header {
    background-color: black;
    color: white;
    opacity: 1;
    animation: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1vw 4vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.header .logo {
    font-size: 1.5em;
    
    font-weight: lighter;
    letter-spacing: 5px;
}

.header .logo a {
    text-decoration: none;
    color: white;
}



select {
    border: none;
    background-color: transparent; /* Makes the background transparent */
    text-align: right;
    color:  white; /* Adjust text color */
    font-size: 1.5vw;
    padding: 8px;
    appearance: none; /* Removes default browser styling */
    outline: none;
    transition: color 0.3s ease ;
    font-weight: bold;
}

select:hover {
    cursor: pointer;
    color: green;
}

.button{
    margin-left: 5vw;
}

.shadow {
    margin-left: 5vw;
}

.bbutton{
    margin-left: 5vw;
}

.nav .bbutton {
    padding: 8px 20px;
    background: #ABD7A2;
    color: white;
    border-radius: 20px;
    font-weight: bold;
}

.nav a{
    
    font-family: sans-serif;
    font-weight: bold;
    text-decoration: none;
    color: white;
    font-size: 1.5vw;

    transition: color 0.3s ease;

}

@keyframes fadeIn{
    0%{
        opacity: 0;
        transform: translateY(20px); /* Starts lower */
    }
    100%{
        opacity: 1;
        transform: translateY(0);
    }
}


#headline {
    transform: translateY(20px);
    animation: none;
    opacity: 1;
    
}


.nav a:hover {
    color: green;
}

.nav .button {
    padding: 8px 20px;
    background: #fff;
    color: #000;
    border-radius: 20px;
    font-weight: bold;
}

.hero {
    
    color: #fff;
    font-family: serif;
    position: relative;
    height: 120vh;
    
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
    
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.bg{
    position: fixed;
    height: 120vh;
    
}

.bg img {
    width: 100vw;
}


.header-container {

    margin-top: 6%;
    height: 80vh;
 


}

.header-container p {
    font-size: clamp(14px, 2vw, 20px);
    
}

.kontakty-container {
    width: 40%;
    margin-left: 30%;
    margin-top: 5%;
    padding: 2vh 2vw;
    background-color: white;
    border-radius: 8px;
}

.mapa-container {
    margin-top: 15vh;
    margin-left: 20%;
    width: 60%;
    padding: 5vh 5vw;
    background-color: white;
    border-radius: 8px;
}

.kontakty-container h2{
    text-align: center;
    font-size: 3vw;
    margin-bottom: 2vh;
}

.kontakty-container img {

    width: 2.5vw;
    height: 2.5vw;

    min-height: 20px;
    min-width: 20px;
}

.mapa-container h2 {
    text-align: center;
    font-size: 4vw;
    margin-bottom: 2vh;
}

.mapa {
    width: 20vw;
    height: 20vh;
}

.container-adresa-mapa {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.sledujte {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2vh;
}

.sledujte a {
    margin: 0.3vw;
}

.kon {
    text-align: center;
}



.footer {
    margin-top: 15vh; /* Pushes the footer to the bottom */
    clip-path: polygon(0 0, 100% 30%, 100% 100%, 0% 100%);
    height: 20vh;
    width: 100%;
    background: #ABD7A2;

    display: flex;
    justify-content: center;
    align-items: center;
}

.footer p {
    margin-top: 3vh;
   color: white;
   font-size: 20px;
   font-weight: bold;
}


@media (max-width: 768px) {

    @import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');



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

body, html {
    font-family: "Jost", sans-serif;
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden;
    background: url("intro-final.gif") no-repeat center;
    background-size: cover;
    backdrop-filter: blur(20px); /* Blur effect */
    height: 100vh;
}  






.header {
    color: white;
    opacity: 1;
    animation: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1vw 4vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.header .logo {
    font-size: 1.5em;
    
    font-weight: lighter;
    letter-spacing: 5px;
}

.header .logo a {
    text-decoration: none;
    color: white;
}



select {
    border: none;
    background-color: transparent; /* Makes the background transparent */
    text-align: right;
    color:  white; /* Adjust text color */
    font-size: 1.5vw;
    padding: 8px;
    appearance: none; /* Removes default browser styling */
    outline: none;
    transition: color 0.3s ease ;
    font-weight: bold;
}

select:hover {
    cursor: pointer;
    color: green;
}

.button{
    margin-left: 5vw;
}

.shadow {
    margin-left: 5vw;
}

.bbutton{
    margin-left: 5vw;
}

.nav .bbutton {
    padding: 8px 20px;
    background: #ABD7A2;
    color: white;
    border-radius: 20px;
    font-weight: bold;
}

.nav a{
    
    font-family: sans-serif;
    font-weight: bold;
    text-decoration: none;
    color: white;
    font-size: 5vw;

    transition: color 0.3s ease;

}

@keyframes fadeIn{
    0%{
        opacity: 0;
        transform: translateY(20px); /* Starts lower */
    }
    100%{
        opacity: 1;
        transform: translateY(0);
    }
}


#headline {
    transform: translateY(20px);
    animation: none;
    opacity: 1;
    
}


.nav a:hover {
    color: green;
}

.nav .button {
    padding: 8px 20px;
    background: #fff;
    color: #000;
    border-radius: 20px;
    font-weight: bold;
}

.hero {
    
    color: #fff;
    font-family: serif;
    position: relative;
    height: 120vh;
    
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
    
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.bg{
    position: fixed;
    height: 120vh;
    
}

.bg img {
    width: 100vw;
}


.header-container {

    margin-top: 6%;
    height: 80vh;
 


}

.header-container p {
    font-size: clamp(14px, 2vw, 20px);
    
}

.kontakty-container {
    width: 80%;
    margin-left: 10%;
    margin-top: 5%;
    margin-bottom: 20vh;
    padding: 2vh 2vw;
    background-color: white;
    border-radius: 8px;
}

.mapa-container {
    margin-top: 15vh;
    margin-left: 10%;
    width: 80%;
    padding: 5vh 5vw;
    background-color: white;
    border-radius: 8px;
}

.kontakty-container h2{
    text-align: center;
    font-size: 8vw;
    margin-bottom: 2vh;
}

.kontakty-container img {

    width: 2.5vw;
    height: 2.5vw;

    min-height: 20px;
    min-width: 20px;
}

.mapa-container h2 {
    text-align: center;
    font-size: 8vw;
    margin-bottom: 2vh;
}

.mapa {
    width: 20vw;
    height: 20vh;
}

.container-adresa-mapa {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.sledujte {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2vh;
}

.sledujte a {
    margin: 0.3vw;
}

.kon {
    text-align: center;
}

.footer {
    margin-top: 15vh; /* Pushes the footer to the bottom */
    clip-path: polygon(0 0, 100% 30%, 100% 100%, 0% 100%);
    height: 20vh;
    width: 100%;
    background: #ABD7A2;

    display: flex;
    justify-content: center;
    align-items: center;
}

.footer p {
    margin-top: 3vh;
   color: white;
   font-size: 20px;
   font-weight: bold;
}


.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background-color: transparent;
    border: none;
}

.hamburger span {

    width: 25px;
    height: 3px;
    background: white;
    border-radius: 5px;
}

.hamburger {
    display: flex;
}

.nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 10px;
    width: 95%;
    background: rgba(0, 0, 0, 0.9);
    padding: 20px;
    border-radius: 10px;
    animation: none;
}

.nav.active {
    display: flex;
}

.nav a, .nav select {
    width: 100%;
    text-align: center;
    color: white;
    margin:0 0 2vw 0;

}

.nav select {
    font-size: 5vw;
    padding: 0;
    margin: 0 0 2vw 0;

}

.button {
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: center;
}



}