/* styles.css */
@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;
    font-family: "Jost", sans-serif;
   
}


.loading img {
    
    width: 70vh;
    height: 70vh;
}



.loading{
    opacity: 0.03;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    height: 100%;
    width: 100%;
}

body, html {
    font-family: sans-serif;
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden;
    background: white;
    
}

.header {
    color: #fff;
    opacity: 1;
    transform: translateY(20px);
    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;
}

.nav a{
    
    font-family: sans-serif;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    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: 0;
    display: flex;
    justify-content: center;
    height: 100%;
    
}


.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;
    filter: brightness(50%);
}


.hero .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0);

}

.hero .content .text{
    font-size: 1.5vw;
    margin-left: 10vw;
    float: left;
    width: 18vw;
    text-align: left;
}

.hero .content {
    position: relative;
    z-index: 2;
    top: 20vh;

    
    height:65vh;
}

.hero h1 {
    font-size: 3em;
    line-height: 1.2;
    position: fixed;
    top: 3vw;

}

.hero .highlight {
    color: #ABD7A2;
    font-size: 6vw;
}

.hero .scroll-down {
    opacity: 0;
    transform: translateY(20px);
    animation: none;
    padding: 1vh 2vh;
    border: 1px solid white;
    border-radius: 44px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    font-size: 1.5em;
    color: white;
    position: absolute; /* Change to absolute for precise positioning */
    left:49%; /* Center horizontally */
    transform: translateX(-50%); /* Adjust for element's own width */
    transition: color 0.3s ease ;
    
    bottom: 5%; /* Position it 10% from the bottom of the hero section */
}

.scroll-down:hover{
    animation: scale;
}

@keyframes scale {
    0%{
        transform: scale(1.0);
    }
    100%{
        transform: scale(1.2);
        color: #ABD7A2;
        border-color: #ABD7A2;
    }
}

.infoCon .centers img{
    width: 3vw;
    height: 3vw;
    display: inline-block;
}


.infoCon {

    font-size: 3vh;
    font-weight: bold;
    margin-top: 20vh;
    display: flex; /* Aktivuje flexbox */
    justify-content: space-between; /* Nastaví mezery mezi elementy */
    align-items: center; /* Zarovná všechny divy vertikálně na střed */
    gap: 0.1vw; /* Přidá mezery mezi divy (volitelné) */
}
.centers {
    border-right: 1px solid black;
    border-left: 1px solid black;
}
.info {
    display: flex; /* Aktivuje flexbox pro vnitřní zarovnání */
    flex-direction: column; /* Zarovná obsah vertikálně */
    justify-content: center; /* Vertikální zarovnání na střed */
    align-items: center;
    flex: 1; /* Volitelné: Každý div dostane stejnou šířku */
    text-align: center; /* Zarovná obsah uvnitř na střed */
    padding: 10px; /* Přidá vnitřní okraje */
    
    
   
}

.infotext {
    
    width: 10vw;
}


.bemsva {
    margin-left: 2vw;
}

.odpocinek {

    margin-top: 5vh;
    margin-right: 15vw;
    margin-left: 15vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    
    width: calc(100vw - 30vw);
}

.odpocinek p {
   
    display: flex;
   font-size: 2vw;
    
    width: 50%;
}

h2 {
    width: 100%;
    font-size: 5vh;
    text-align: center;
}

.odpocinek img {
    border-radius: 12px;
    margin-right: 5vw;
    height: auto;
    width: 25vw;
    display: flex;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.kouzlo {
    
    color: red;
}

.ANO {
    color: plum;
}


.yellow {
    color: darkorange;
}

.vzpomínky {
    color: pink;
}

.barevny-text {
    color: purple;
}


.flex {
    display: flex;
    
    justify-content: center;
    align-items: center;
    height: 60vh;
}



.border {
    padding: 5vh;
    border-radius: 30px;
    background-color: white; /* Bílé pozadí */
    box-shadow: 5px 5px 30px #bebebe, -5px -5px 30px #ffffff;
    opacity: 1;
    position: relative;
    z-index: 2;
}


#odsadit {
    height: 15vh;
    
    
}
#odsadit h2{

    color: green;
}

#odsadit p {
    text-align: center;
    margin-top: 2vh;
    width: 60vw;
    font-size: 3vh;
}

.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-color: pink;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.cast {
    margin-top: 15vh;
}

.star {
 width: 10vw;
}

.hidden {
    opacity: 0;
    transition: all 1s;
    filter: blur(5px);
    transform: translateX(-100%);
}

@media(prefers-reduced-motion){
    .hidden {
        transition: none;
    }   
}

.visible {
    opacity: 1;
    filter: blur(0px);
    transform: translateX(0);

}

/* Pro tablety a mobily */
@media (max-width: 768px) {
    @import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

    .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: 4vw;
        padding: 0;
        margin: 0 0 2vw 0;

    }

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

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


.loading img {
    
    width: 70vh;
    height: 70vh;
}



.loading{
    opacity: 0.03;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    height: 100%;
    width: 100%;
}

body, html {
    font-family: sans-serif;
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden;
    background: white;
    
}

.header {
    color: #fff;
    opacity: 1;
    transform: translateY(20px);
    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: 1em;
    text-align: center;
    font-weight: lighter;
    letter-spacing: 5px;
    width: 20%;margin-top: 2vw; margin-left: 2vw;
}

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





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

.button{
    margin-left: 5vw;
}

.shadow {
    margin-left: 5vw;
}

.nav a{
    
    font-family: sans-serif;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    font-size: 4vw;

    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: 0;
    width: 100%;
    height: 50%;
    text-align: center;
    display: block;

}


.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: 55vw;
    
    display: block;



    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: 100%;
    
}

.bg img {
    width: 100%;
    height: auto;
}


.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero .content .text{
    font-size: 1.5vw;
    margin-left: 0;
    float: center;
    width: 100%;

}

.hero .content {

    position: relative;
    z-index: 2;
    top: 20vh;
    width: 100%;
    display: block;


    height:20vh;

}

.hero h1 {
    position: absolute;

    left: 50%; /* Horizontální střed */
    transform: translate(-50%, -50%); /* Přesné vycentrování */
    font-size: 6vw; /* Dynamická velikost pro lepší vzhled */
    text-align: center;
    width: 90%; /* Zajistí, že text nebude přetékat */

}

.hero .highlight {
    color: #ABD7A2;
    font-size: 6vw;
}

/*
.hero .scroll-down {
    opacity: 0;
    transform: translateY(20px);
    animation: none;
    padding: 1vh 2vh;
    border: 1px solid white;
    border-radius: 44px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    font-size: 1.5em;
    color: white;
    position: absolute; 
    left:49%; 
    transform: translateX(-50%); 
    transition: color 0.3s ease ;
    
    bottom: 5%; 
}
*/


.scroll-down:hover{
    animation: scale;
}

@keyframes scale {
    0%{
        transform: scale(1.0);
    }
    100%{
        transform: scale(1.2);
        color: #ABD7A2;
        border-color: #ABD7A2;
    }
}

.infoCon .centers img{
    width: 2vw;
    height: 3vw;
    display: inline-block;
}


.infoCon {
    width: 100%;
    font-size: 2.2vh;
    font-weight: bold;

    display: flex; /* Aktivuje flexbox */
    justify-content: space-between; /* Nastaví mezery mezi elementy */
    align-items: center; /* Zarovná všechny divy vertikálně na střed */
    gap: 0.1vw; /* Přidá mezery mezi divy (volitelné) */
}
.centers {
    border-right: 1px solid black;
    border-left: 1px solid black;
}
.info {
    display: flex; /* Aktivuje flexbox pro vnitřní zarovnání */
    flex-direction: column; /* Zarovná obsah vertikálně */
    justify-content: center; /* Vertikální zarovnání na střed */
    align-items: center;
    flex: 1; /* Volitelné: Každý div dostane stejnou šířku */
    text-align: center; /* Zarovná obsah uvnitř na střed */
    padding: 1vw; /* Přidá vnitřní okraje */
    
    
   
}

.infotext {
    
    width: 10vw;
}


.bemsva {
    margin-left: 2vw;
}

.odpocinek {
    display: block;
    margin-top: 5vh;
    margin-right: 15vw;
    margin-left: 15vw;




    
    
    width: 80%;
}

.odpocinek p {
   margin: 0;
    padding: 0;
   font-size: 4vw;
    text-align: center;
    width: 90%;
}

h2 {
    font-size: 4vw;
    text-align: center;
}

.odpocinek img {
    border-radius: 12px;
    margin-top: 5vh;
    margin-right: 5vw;
    height: auto;
    width: 85%;

    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.kouzlo {
    
    color: red;
}

.ANO {
    color: plum;
}


.yellow {
    color: darkorange;
}

.vzpomínky {
    color: pink;
}

.barevny-text {
    color: purple;
}


.flex {
    display: flex;
    
    justify-content: center;
    align-items: center;
    height: 60vh;
}



.border {
    padding: 5vh;
    border-radius: 30px;
    background-color: white; /* Bílé pozadí */
    box-shadow: 5px 5px 30px #bebebe, -5px -5px 30px #ffffff;
    opacity: 1;
    position: relative;
    z-index: 2;
}


#odsadit {
    margin-top: 20vh; 
    height: 100%;
    width: 80%;
    
    
}
#odsadit h2{
    font-size: 4vw;
    color: green;
}

#odsadit p {
    text-align: center;
    margin-top: 2vh;
    width: 60vw;
    font-size: 2vh;
}

.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-color: pink;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.cast {
    margin-top: 15vh;
}

.star {
 width: 10vw;
}

.hidden {
    opacity: 0;
    transition: all 1s;
    filter: blur(5px);
    transform: translateX(-100%);
}

@media(prefers-reduced-motion){
    .hidden {
        transition: none;
    }   
}

.visible {
    opacity: 1;
    filter: blur(0px);
    transform: translateX(0);

}

}
