@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
}

p {
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.7;
}

body{
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    overflow-x: hidden !important;
    width: 100%;
    overscroll-behavior: contain;
}

:root{
    --defaultColor:#FF9500;
    --secondColor:#A76100;
    --primary_text_color:black;
    --second_text_color:white;
    --max-width:1250px;
}

.flex{
    display: flex;
    justify-content: center;
    align-items: center;
}

.highlight{
    color: var(--defaultColor);
}

.highlight-text{
    color: black;
    font-size: 16px;  
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
}

.active{
    color: var(--defaultColor);
}
/*Podnadpis*/
h2{
    font-weight: 600;
    font-size: 27px;
}

.terms{
    color: #FF9500;
    cursor: pointer;
}

#terms-p{
    display: none;
}

/*Navigace -----------------------------------------------------------*/
nav{
    width: var(--max-width);
    height: 85px;
    justify-content: space-between !important;

}
.logo{
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background-color: white;
    position: relative;
    top: 20px;
}

.logo img{
    height: 90%;
}

nav ul{
    list-style: none;
    gap: 25px;
    z-index: 998;
}

nav ul li a{
    color: var(--primary_text_color);
    font-weight: 600;
    text-transform: uppercase;
}

nav ul li a:hover{
    transition: 0.1s;
    color: var(--defaultColor);
}


.menu{
    width: 30px;
    height: 30px;
    flex-direction: column;
    gap: 3px;
    display: none;
    margin-right: 20px;
    float: right;
    z-index: 999 !important;
}

.closeMenu{
    position: fixed;
    right: 20px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
}
.closeMenu div:nth-child(1){
    transform: rotate(45deg);
}
.closeMenu div:nth-child(2){
display: none;
}

.closeMenu div:nth-child(3){
    transform: rotate(-45deg);
    position: relative;
    top: -6px;
}

.menu div{
    height: 3px;
    width: 100%;
    background-color: var(--defaultColor);
}

.language-dropdown {
  position: relative;
  display: inline-block;
  font-family: sans-serif;
}

.language-dropdown button {
  background: #fff;
  border: 1px solid #ccc;
  padding: 6px 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  color: black;
  font-size: 13px;
}

.language-dropdown img {
  width: 20px;
  height: 15px;
}

.language-options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
  background: white;
  border: 1px solid #ccc;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 4px 0 0 0;
}

.language-options li {
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 13px !important;
}

.language-options li:hover {
  background-color: #f0f0f0;
}



/*BUTTON -----------------------------------------------------------*/
.button{
    width: 150px;
    height: 50px;
    font-size: 14px ;
    color: var(--second_text_color);
    font-weight: 600;
    background: linear-gradient(80deg, var(--secondColor), var(--defaultColor));
    display: flex;
    justify-content: center;
    align-items: center;
}

.button:hover{
    transition: 0.3s;
    transform: translateY(-2px);
    color: black;
}
.buttons{
    gap: 15px;
}
.button-type2{
    width: 100px;
    height: 45px;
    font-size:20px;
    background-color: white;
    color: black;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
}

.button-type2 img{
    height: 20px !important;
    width: auto !important;
}

.button-type2:hover{
    background-color: black;
    transition: 0.3s;
    color: white;
}

.button-type2:hover > img{
    filter: invert(100%);
}

.button-type3{
   border: 2px solid var(--defaultColor);
   background: none;
   color: var(--defaultColor);
}

.button-type3:hover{
    background: var(--defaultColor);
    transition: 0.3s;
    color: white;
}

/*MAIN SECTION -----------------------------------------------------------*/
.main-section {
    background-image: linear-gradient(80deg, rgba(0,0,0,0.75), transparent), 
                      url('/Images/1000018028.jpg'); /* Gradient + obrázek */
    background-size: cover;  /* Roztáhne obrázek na celou sekci */
    background-position: center center; /* Zarovná obrázek na střed */
    background-repeat: no-repeat; /* Zabrání opakování obrázku */
    width: 100%;
    height: 92vh;
    flex-direction: column;
    align-items: start;
    justify-content: end;
}


.main-content{
    width: var(--max-width);
    flex-direction: column;
    align-items: start;
    align-self: center;
    gap: 25px;
    margin-bottom: 9%;
}
.main-content p{
    color: white;
    width: 60%;
    font-weight: 500;
    font-size: 16px;
}
.main-content h1{
    color: white;
    font-size: 40px;
    width: 50%;
    text-transform: uppercase;
}

.main-content a{
    color: var(--second_text_color);
}


.title-setion{
    background-image: linear-gradient(80deg, rgba(0,0,0,0.7), transparent), 
                      url('/Images/1000018033.jpg'); /* Gradient + obrázek */
    background-size: cover;  /* Roztáhne obrázek na celou sekci */
    background-position: center center; /* Zarovná obrázek na střed */
    background-repeat: no-repeat; /* Zabrání opakování obrázku */
    width: 100%;
    height: 50vh;
    flex-direction: column;
    align-items: start;
    justify-content: end;
}

.title-setion h1{
    font-size: 40px;
}

.title-setion .main-content{
    margin-bottom: 3%;
}
/*ELEMENTS*/
.element{
    width: 100%;
    height: 100px;
    background-image: url('/Images/element-wave.png');
    background-position: center center;
    background-position: bottom;
}

.water-element{
    width: 100%;
    position: relative;
    top: 10px;
    align-self: flex-end;
}

.water-element img{
    width: 100%;
}

/*SECTION --------------------*/
.section{
    width: var(--max-width);
    padding: 100px 0px 0px 0px;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 25px;
    flex-direction: column;
    overflow-x: hidden !important;
}

.section h2{
    width: var(--max-width);
}

.container{
    width: var(--max-width);
}
/*ABOUT US ---------------------------------------------------------*/
.about-us{
    gap: 100px;
    padding-top: 50px;
    display: flex !important;
    flex-direction: row;
}
.about-us-block{
    width: 100%;
    flex-direction: column;
    align-items: start;
    gap: 35px;
    margin-bottom: 15px;
}

.about-us-block p{
    font-weight: 400;
}
.about-us-point{
    gap: 15px;
}

.about-us-point img{
    height: 16px;
}

.strong-text{
    font-weight: 500 !important;
}

/*
.about-us-block img{
    width: 100%;
    height: 440px;
    box-shadow: 7px 7px 0px var(--defaultColor);
}*/

/*SERVICE*/
.services{
    width: 100%;
    overflow: hidden !important;
    padding-top: 100px;
}
.services-container{
    padding: 40px 0px;
    margin: 0 auto;
    flex-wrap: wrap;
    width: var(--max-width);
    background: linear-gradient(80deg, var(--secondColor), var(--defaultColor));
}
.service-block{
    flex: 1;
    min-width: 200px;
}
.service-text{
    flex-direction: column;
    gap: 5px;
    align-items: start;
    color: white;
    font-weight: 600;
}
.service-text span:first-child{
    font-size: 23px;
    font-weight: 600;
    color: white;
}
.service-block{
    gap: 15px;
}

.service-block img{
    height: 75px;
}

.service-block:nth-child(1) img{
    height: 60px; 
}

.service-block:nth-child(3) img{
    height: 60px; 
}



/*Accommodations----------------------------------*/
#accommodations{
    padding: 150px 0 50px 0px;
}
.accommodations-container{
    gap: 100px;
    align-items: start;
    overflow-x: hidden;
}

.accommodations-card{
    flex: 1;
    min-width: 300px;
}
.accommodations-card img{
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}
.accommodations-card h3{
    font-size: 16px;
}

.accommodations-card p{
    font-size: 15px;
}

.card{
    background: linear-gradient(var(--secondColor), var(--defaultColor));
    width: 80%;
    margin: 0 auto;
    position: relative;
    bottom: 80px;
    align-items: start;
    gap: 10px;
    flex-direction: column;
    padding: 0px 25px;
    padding-bottom: 50px;
}

.card p{
    color: white;
    font-size: 16px;
    font-weight: 400;
}

.card h3{
    color: white;
    font-size: 18px;
}

.card a{
    margin-bottom: 20px;
    align-self: end;
    font-weight: 900;
    font-size: 20px;
}

.card a img{
    aspect-ratio: auto !important;
}
.card-image{
    width: 50px;
    height: 50px;
    background-color: white;
    align-self: end;
    position: relative;
    bottom: 20px;
}

.card-image img{
    height: 100%;
    padding: 10px;
}

/*ACTIVITIES*/
.activity{
    padding-top: 50px;
    width: 100%;
    padding-bottom: 50px;

    background-image: url('/Images/element-wave.png');
    background-repeat:no-repeat;
    background-position: bottom;
}
.activity_container{
    width: var(--max-width);
    gap: 100px;
    align-items: start;
}
.activity_image{
    width: 50%;
    aspect-ratio: 16/12;
    min-width: 350px;
}


.activity_image img{
    height: 100%;
    width: 100%;
    box-shadow: -7px 7px 0px var(--defaultColor);
}

.activity_block{
    width: 50%;
    align-items: start;
    justify-content: start;
    height: 100%;
    flex-direction: column;
    gap: 25px;
    min-width: 300px;
}

.activity_card{
    box-shadow: 0px 0px 15px rgba(0,0,0,0.1);
    background-color: white;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    padding: 20px;
    height: 90px;
    overflow: hidden;
    gap: 25px;
    transition: 0.5s !important;
    cursor: pointer;
}
.icon_edit img{
    height: 50px;
}
.icon_edit{
    gap: 25px;
}

.activity-card-gaps{
    justify-content: space-between;
    width: 100%;
}

.activity-card-gaps img:last-child{
    height: 20px;
}

.activity_card_pressed{
    background: linear-gradient(80deg, var(--secondColor), var(--defaultColor));
    height: 220px;
    flex-direction: column;
    color: white;
    transition: 0.3s;
}

.activity_card_pressed > .activity-card-gaps img {
    filter: brightness(0) saturate(100%) invert(100%);
}

.activity_card_pressed > .activity-card-gaps .icon_edit img {
    filter: brightness(0) saturate(100%) invert(100%);
}


/*NEWS ------------------------------------------------------*/

.news{
    width: 100%;
}

.news-section{
    width: 100%;
}
.news h2{
    width: var(--max-width);
}
.news-container{
    width: var(--max-width);
    gap: 50px;
    flex-wrap: wrap;
    justify-content: start;
}

.news-card{
    flex: 1;
    height: 480px;
    min-width: 300px;
    max-width: 400px;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 15px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
    background-color: white;
    border-bottom: 4px solid var(--defaultColor);
    overflow: hidden;
}

.news-card:hover{
    box-shadow: 5px 10px 15px rgba(0,0,0,0.2);
    transition: 0.2s;
    transform: translateY(-10px);
    cursor: pointer;
}


.news-card span{
    color: var(--defaultColor);
    font-size: 15px;
    font-weight: 600;
    padding: 0px 20px;
}

.news-card h3{
    font-size: 22px;
    color: var(--secondColor);
    padding: 0px 20px;
}

.news-card p{
    color: black;
    padding: 0px 20px;
    font-weight: 400;
    display: -webkit-box;
  -webkit-line-clamp: 5;         /* Zobrazí max. 5 řádků */
  -webkit-box-orient: vertical;  /* Směr textu */
  overflow: hidden;              /* Skryje přetečení */
  text-overflow: ellipsis; 
}

.news-card img{
    height: 40%;
    width: 100%;
}









/*FOOTER ------------------------------------------------------------------*/
footer{
    background: linear-gradient(80deg, var(--secondColor), var(--defaultColor));
    width: 100%;
    padding: 50px 0px;
}

.footer-container{
    width: var(--max-width);
    padding-bottom: 50px;
    border-bottom: 1px solid white;
}

.footer-left-block{
    flex-direction: column;
    gap: 20px;
    align-items: start;
    flex: 1;
}

.footer-logo{
    background-color: white;
    height: 100px;
    width: 100px;
    border-radius: 50%;
}

.footer-logo img{
    height: 95%;
}

.footer-left-block p{
    color: white;
}
.footer-info{
    gap: 15px;
}
.footer-info span{
    color: white;
}

.footer-info a{
    color: white;
}

.footer-info img{
    height: 25px;
}

.footer-blocks{
    flex: 2;
    align-items: start;
}

.footer-block{
    flex-direction: column;
    flex: 1;
    gap: 25px;
}

.footer-block h2{
    color: white;
    font-weight: 500;
    font-size: 23px;
}

.footer-block:last-child{
    align-items: start;
}

.footer-block ul{
    list-style: none;
    flex-direction: column;
    gap: 15px;
    align-items: start;
    justify-content: start;
}
.footer-block ul li{
    align-items: center;
    justify-content: start;
    gap: 15px;
}
.footer-block ul li a{
    color: white;
}
.footer-block ul li img{
    height: 15px;
}


/*PLACE ----------------------------------------------------*/
.place{
    width: 100%;
    flex-direction: column;
    gap: 25px;
}

.place iframe{
    width: 100%;
    height: 400px;
}

.place-info{
    width: var(--max-width);
}




/*ANIMATIONS*/
.scroll-animation-right,
.scroll-animation-left {
    opacity: 0;
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}

.scroll-animation-right {
    transform: translateX(100px);
}

.scroll-animation-left {
    transform: translateX(-100px);
}

/* Když se prvek zobrazí, posune se na místo a ukáže */
.show-right {
    opacity: 1;
    transform: translateX(0);
}

.show-left {
    opacity: 1;
    transform: translateX(0);
}



/*Prices*/
.price-section{
    padding-top: 0px;
    width: 100%;
}

.calculator-section{
    padding-bottom: 100px;
    width: 100%;
    overflow: visible !important;
}

.price-section h2{
    width: var(--max-width);
}

.calculator-section p{
    width: var(--max-width);
}
.price-container{
    width: var(--max-width);
}

.price-container table{
    width: 100%;
    border: 1px solid var(--defaultColor);
    border-collapse: collapse;
    z-index: 1;
}

.price-container table tr{
    height: 50px;
    font-weight: 600;
}

.price-container table tr th{
    text-align: left;
    padding-left: 20px;
}

.price-container table tr td{
    padding-left: 20px;
}
.price-container table tr:nth-child(even){
    background: linear-gradient(80deg, var(--secondColor), var(--defaultColor));
    color: white;
}

.price-container table tr:nth-child(odd){
    background-color: white;
}

.calculator-container{
    width: var(--max-width);
    gap: 25px;
    align-items: start;
    flex-wrap: wrap;
}

.calculator-container form{
    flex: 1;
    align-items: start;
    justify-content: start;
    padding: 25px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
    flex-direction: column;
    gap: 15px;
    min-width: 300px;
}

.input-container{
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 5px;
    width: 100%;
}

.calculator-buttons{
    width: 50px;
}

.input-flex{
    width: 100%;
}

.calculator-container form label{
    color: black;
    font-weight: 600;
}

.calculator-container form input{
    width: 100%;
    height: 45px;
    border: 2px solid var(--defaultColor);
    border-radius: 50px;
    padding-left: 15px;
}
.calculator-buttons{
    flex-direction: column; 
    gap: 10px;
}

.calculator-buttons button{
    width: 30px;
    height: 30px;
    background-color: var(--defaultColor);
    color: black;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-weight: 600;

}
.price-full-block{
    flex: 1;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 25px;
    min-width: 300px;
    position: sticky;
    top: 10px;
}

.price-block{
    height: 75%;
    width: 100%;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 15px;
    padding: 25px;
}

.price-block h3{
    font-size: 16px;
    font-weight: 600;
}

.price-info{
    width: 100%;
    border-bottom: 1px solid var(--defaultColor);
    padding-bottom: 10px;
    align-items: start;
    justify-content: space-between;
}

.full-price{
    height: 25%;
    width: 100%;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
    padding: 25px;
    justify-content: space-between;
}

.full-price span{
    font-size: 25px;
    font-weight: 600;
}

#full-price{
    color: var(--defaultColor);
}


/*ContactPage*/
.contact{
    padding-top: 15px;
    width: 100%;
}


.contact h3{
    font-size: 20px;
    font-weight: 600;
}

.contact-container{
    gap: 50px;
    align-items: start;
    width: var(--max-width);
}

.contact-block{
    flex-direction: column;
    gap: 30px;
    justify-content: start;
    align-items: start;
    width: 50%;
}

.contact-block a{
    color: black;
    font-weight: 600;
    font-size: 16px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contact-info{
    flex-direction: column;
    gap: 5px; 
    justify-content: start;
    align-items: start;
}

.contact-container form{
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
    width: 50%;
    padding: 30px;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 25px;
    min-width: 300px;
    margin-bottom: 10px;
}

.contact-block span,.contact-block a{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contact-container form input{
    width: 100%;
    border: 2px solid var(--defaultColor);
    height: 45px;
    border-radius: 50px;
    padding-left: 15px;
}

.contact-container label{
    font-size: 15px;
    font-weight: 400;
}

.contact-container form textarea{
    width: 100%;
    border: 2px solid var(--defaultColor);
    height: 100px;
    border-radius: 20px;
    padding: 15px;
}

.contact-container form input[type='checkbox']{
    height: 15px;
    width: 15px;
    margin-right: 10px;
}

.contact-container form button{
    border-radius: 50px;
    border: none;
}

/*Gallery*/
.gallery {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: var(--max-width);
    padding-bottom: 100px;
    flex-wrap: wrap;

}

.gallery-item {
    position: relative;
    display: inline-block;
    cursor: pointer;
    flex: 1;
    max-width: 500px;
}

.gallery img {
    transition: 0.3s;
    width: 100%;
    aspect-ratio: 16/9;
    max-height: 300px;
}

.overlay {
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.2s;
    pointer-events: none;
}

.overlay::after {
    content: "+";
    font-size: 14px;
    font-weight: 400;
    color: white;
    font-weight: bold;
    background-color: var(--defaultColor);
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lightbox img {
    max-width: 90%;
    max-height: 80%;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

.prev, .next {
    position: absolute;
    top: 50%;
    font-size: 30px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}


/*accommodations-container*/
.accommodations-section {
    width: var(--max-width);
    flex-direction: column;
    gap: 50px;

}

.accommodation-block{
    height: 350px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
}

.accommodation-info{
    padding: 25px;
    gap: 15px;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

.accommodation-info h3{
    font-size: 22px;
}

.accommodation-block:nth-child(2){
    flex-direction: row-reverse;
}

.accommodation-block img{
    width: 40%;
    height: 100%;
}

/*Equipment*/
.equipment-container{
    width: var(--max-width);
    gap: 20px;
}

.equipment-card{
    width: 300px;
    height: 70px;
    border: 2px solid var(--defaultColor);
    border-radius: 50px;
    padding: 7px;
    overflow: hidden;
    gap: 15px;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}
.equipment-card h3{
    font-size: 14px;
    color: var(--defaultColor);
}

.equipment-card-info{
    width: 100%;
    justify-content: space-between;
   
}

.equipment-name{
    gap: 10px;
}

.equipment-card img:last-child{
    height: 20px;
}
.equipment-card-icon{
    height: 55px;
    width: 55px;
    border-radius: 50%;
    background-color: var(--defaultColor);
}

.equipment-card-icon img{
    height: 35px !important;
}


/*NEWS PAGE*/
.news-section{
    padding-top: 0px;
    padding-bottom: 100px;
}

/*ACTION*/
.action-container{
    width: var(--max-width);
    gap: 50px;
}
.action-img{
    width: 50%;
    aspect-ratio: 16/12;
    min-width: 300px;
}

.action-img img{
    width: 100%;
    height: 100%;
    box-shadow: -7px 7px 0px var(--defaultColor);
}

.action-block{
    width: 50%;
    flex-direction: column;
    gap: 20px;
    align-items: start;
    justify-content: start;
}

.action-block h3{
    font-size: 25px;
}

.date{
    color: var(--defaultColor);
    font-weight: 700;
    font-size: 18px;
}