@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Sriracha&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
}

p {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

body{
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

html{
    overflow-x: hidden !important;
}

:root{
    --defaultColor:#D4AF37;
    --lightBackground:#F5F5F5;
    --darkBackground:#151515;
    --primary_text_color:black;
    --second_text_color:white;
    --max-width:1350px;
}

.flex{
    display: flex;
    justify-content: center;
    align-items: center;
}

.highlight{
    color: var(--defaultColor);
}


.active{
    color: var(--defaultColor);
}

.mobile{
    display: none;
}
/*Podnadpis*/

.title-container{
    flex-direction: column;
    gap: 15px;
}

h2{
    font-weight: 600;
    font-size: 32px;
    font-family: "Josefin Sans", sans-serif;
    text-transform: uppercase;
    line-height: 1.2;
}

h3{
    font-family: "Sriracha", cursive;
    font-size: 18px;
    color: var(--defaultColor);
    font-weight: 500;
}

h4{
   font-family: "Josefin Sans", sans-serif; 
    line-height: 1.2;
     font-weight: 500;
}

.terms{
    color: var(--defaultColor);
    cursor: pointer;
    font-size: 14px;
}

#terms-p{
    display: none;
}

strong{
    font-weight: 600;
    font-size: 15px;
}

.row{
    gap: 10px;
    display: flex;
    justify-content: start;
    align-items: center;
}

.rows{
    gap: 15px;
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: start;
     flex-direction: column;
}

.row img{
    height: 23px;
}

.row p{
    font-weight: 400 !important;
    font-size: 15px;
}

/*Navigace -----------------------------------------------------------*/
.notification{
    width: 100%;
    background-color: red;
    padding: 15px 0px;
}

.notification p{
    color: white;
    max-width: var(--max-width);
    width: 100%;
    font-size: 15px;
    text-align: center;
    font-weight: 500;
}

nav{
    width: 100%;
    height: 85px;
    background-color: var(--darkBackground);
}

.nav-container{
    max-width: var(--max-width);
    width: 100%;
    justify-content: space-between !important;
    background-color: var(--darkBackground);
}
.logo{
    position: relative;
    height: 65px;
}

.logo img{
    height: 100%;
}

nav ul{
    list-style: none;
    gap: 25px;
    z-index: 998;
}

nav ul li a{
    color: var(--second_text_color);
    font-weight: 500;
    text-transform: uppercase;
    font-family: "Josefin Sans", sans-serif;
    font-size: 15px;
}

nav ul li a:hover{
    transition: 0.1s;
    color: var(--defaultColor);
}


  .menu {
    width: 30px;
    height: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    display: none;
    z-index: 9999;
}

.menu div {
    width: 100%;
    height: 2px;
    background-color: var(--defaultColor);
    transition: all 0.3s ease;
}

/* Aktivní stav - X */
.menu.closeMenu div:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu.closeMenu div:nth-child(2) {
    opacity: 0;
}

.menu.closeMenu div:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.menu.closeMenu{
    position: fixed;
    z-index: 10000;
    right: 25px;
}



/*BUTTON -----------------------------------------------------------*/
.button{
    padding: 20px 30px;
    font-size: 13px ;
    color: var(--primary_text_color) !important;
    font-weight: 600;
    background-color: var(--defaultColor);
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    font-family: "Josefin Sans", sans-serif;
    border: none;
}

.button:hover{
    transition: 0.2s;
    background-color: #E6C765;
    color: black;
}
.buttons{
    gap: 15px;
}

.button-type3{
   box-shadow: inset 0 0 0 2px #D4AF37;
   background: none;
   color: var(--defaultColor);
}






/*COMPONENTS - LAYOUT*/

/*SECTION --------------------*/
.section{
    width: var(--max-width);
    padding: 50px 0px 50px 0px;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 25px;
    flex-direction: column;
}

/*Text v levo obrázek v pravo*/
.row-container{
    gap: 100px;
    max-width: var(--max-width);
    width: 100%;
    flex-wrap: wrap;
}
.left-block{
    flex: 1 1 400px;
    flex-direction: column;
    align-items: start;
    gap: 35px;
}

.left-block p{
    font-weight: 400;
}
.left-block .about-us-point{
    gap: 15px;
}

.about-us-point img{
    height: 16px;
}


.row-container-img{
    flex: 1 1 400px;
    background-color: white;
}

.row-container-img img{
    width: 100%;
     background-color: white;
     object-fit: cover;
     aspect-ratio: 16/13;
    box-shadow: 2px 11px 10px rgba(0, 0, 0, 0.2);
}

.row-container .title-container{
    align-items: start;
}


.row-container-reverse{
    gap: 100px;
    max-width: var(--max-width);
    width: 100%;
    flex-wrap: wrap;
    flex-direction: row-reverse;
}


/*GALERIE*/
/*Gallery*/
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    width: var(--max-width);
    padding: 50px 0;
}

.gallery-item {
    position: relative;
    display: inline-block;
    cursor: pointer;
    flex: 1 1 300px;
    height: 250px;
}

.gallery img {
    transition: 0.3s;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-gallery {
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.2s;
    pointer-events: none;
}

.overlay-gallery::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-gallery {
    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: var(--defaultColor);
    background: white;
    width: 50px;
    height: 50px;
    border: none;
    cursor: pointer;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}


/* --- LIGHTBOX POZADÍ --- */
.modal {
  display: none;
  position: fixed;
  z-index: 99990; /* Vysoké číslo */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0,0,0,0.95);
  justify-content: center;
  align-items: center;
}

/* --- KŘÍŽEK (ZAVŘÍT) - UPRAVENO --- */
.close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #f1f1f1;
  font-size: 50px; /* Velký křížek */
  font-weight: bold;
  cursor: pointer;
  z-index: 100000; /* Musí být úplně nahoře */
  transition: 0.3s;
  
  /* Zvětšení klikací plochy pro lepší ovládání */
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background: rgba(0, 0, 0, 0.5); /* Jemné podbarvení, aby byl vidět i na světlém obr. */
  border-radius: 50%; 
}

.close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
}

/* --- OBRÁZEK --- */
.modal-content {
  margin: auto;
  display: block;
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  user-select: none; /* Aby se neoznačoval při dvojkliku */
}

/* Animace */
/* Animace - přidat do tvého CSS */
.fade-anim {
  animation-name: fade;
  animation-duration: 0.4s;
}

@keyframes fade {
  from {opacity: 0.3} 
  to {opacity: 1}
}

/* --- ŠIPKY --- */
.prev-picture, .next-picture {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 20px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 40px;
  user-select: none;
  z-index: 99995;
  background-color: rgba(0,0,0,0.3); /* Aby byly lépe vidět */
  border-radius: 3px;
}

.next-picture { right: 10px; }
.prev-picture { left: 10px; }

.prev-picture:hover, .next-picture:hover {
  background-color: rgba(0,0,0,0.8);
}

















/*MAIN SECTION -----------------------------------------------------------*/
.main-section {
    background-image: 
        linear-gradient(
            to right,
            rgba(0, 0, 0, 0.8), 
            rgba(0, 0, 0, 0.4),/* Start: Černá s 60% průhledností */
            rgba(0, 0, 0, 0)  /* Konec: Ta samá černá */
        ),
        url('/Images/hero-img.webp');
    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: center;
    max-height: 900px;
    position: relative;
}


.main-content{
    width: var(--max-width);
    flex-direction: column;
    align-items: start;
    align-self: center;
    gap: 25px;
}
.main-content p{
    color: var(--second_text_color);
    width: 60%;
    font-weight: 400;
    font-size: 15px;
}
.main-content h1{
    color: white;
    font-size: 32px;
    width: 50%;
    text-transform: uppercase;
    font-family: "Josefin Sans", sans-serif;
    line-height: 1.2;
    font-weight: 500;
}

.main-content a{
    color: var(--second_text_color);
}

.mouse-scroll{
    position: absolute;
    bottom: 20px; /* Nebo jiná pozice na spodní části sekce */
    left: 50%;
    transform: translateX(-50%); /* Vycentrování */
    /* Aplikace animace: */
    animation: bounce-scroll 3s infinite; /* Název, doba trvání, nekonečná smyčka */
    cursor: pointer; /* Změna kurzoru */
}

.mouse-scroll img{
    height: 70px;
}

@keyframes bounce-scroll {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0); /* Zastavení na nule (výchozí pozice) */
    }
    40% {
        transform: translateY(-10px); /* Pohyb nahoru */
    }
    60% {
        transform: translateY(-5px);  /* Menší pohyb nahoru */
    }
}


.title-setion{
    /* 1. Definujeme defaultní obrázek (kdybychom zapomněli nastavit jiný) */
    --bg-img: url('/Images/hero-title.webp');

    /* 2. Zde složíme gradient + proměnnou */
    background-image: linear-gradient(80deg, rgba(0,0,0,0.7), transparent), 
                      var(--bg-img);
    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: 40vh;
    flex-direction: column;
    align-items: start;
    justify-content: end;
}



.title-setion h1{
    font-size: 40px;
}

.title-setion .main-content{
    margin-bottom: 5%;
}

.date-container{
    gap: 10px;
}

.date-container img{
    height: 23px;
}



/*ABOUT US ---------------------------------------------------------*/
.about-us{
    padding: 50px 0px;
    display: flex;
    background-color: var(--lightBackground);
    width: 100%;
}

.about-us-container{
    gap: 100px;
    max-width: var(--max-width);
    width: 100%;
    flex-wrap: wrap;
    align-items: center;
    justify-content: start;
}
.about-us-block{
    flex: 1 1 400px;
    flex-direction: column;
    align-items: start;
    gap: 35px;
}

.about-us-block p{
    font-weight: 400;
}
.about-us-point{
    gap: 15px;
}

.about-us-point img{
    height: 16px;
}


.about-us-img{
    flex: 1 1 400px;
    background-color: var(--lightBackground);
    align-items: start;
    justify-content: start;
    position: sticky;
     top: 5px;
    aspect-ratio: 16/13;
}

.about-us-img img{
     width: 100%;
     background-color: var(--lightBackground);
     object-fit: cover;
     height: 100%;
     box-shadow: 2px 11px 10px rgba(0, 0, 0, 0.2);

}

.about-us .title-container{
    align-items: start;
}


/*TODAY MENU*/
.today-menu-section{
    width: 100%;
    max-width: var(--max-width);
    padding: 50px 0px;
    flex-direction: column;
    gap: 75px;
}

.menu-days-container{
    gap: 25px;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.today-menu-container{
    flex: 1 1 400px;
    gap: 50px;
    align-items: start;
    width: 100%;
}

.today-menu{
    flex-direction: column;
    height: 100%;
    align-items: start;
    justify-content: start;
    gap: 50px;
    flex: 1 1 400px;
}

.today-menu h3{
    color: var(--primary_text_color);
    font-family:"Josefin Sans", sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
}

.first-block{
    width: 100%;
    flex-direction: column;
    gap: 30px;
    align-items: start;
    justify-content: start;
}

.menu-items{
    flex-direction: column;
    gap: 25px;
    width: 100%;
}

.menu-item{
    flex-direction: column;
    gap: 5px;
    border-left: 3px solid var(--defaultColor);
    padding-left: 15px;
    width: 100%;
    align-items: start;
}

.menu-item p{
    font-size: 14px;
}

.menu-item p span{
    color: var(--defaultColor);
}

.menu-item-content{
    width: 100%;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--defaultColor);
    justify-content: space-between;
    gap: 25px;
}

.menu-details-row{
    width: 100%;
    justify-content: space-between;
}

.menu-details-row span{
    font-size: 14px;
}

.menu-item-content span{
    color: var(--primary_text_color);
    font-family: "Josefin Sans", sans-serif;
    font-weight: 900; 
    white-space: nowrap;
}

.menu-item-name{
    gap: 5px;
    flex-wrap: wrap;
    align-items: start;
    justify-content: start;
}

.dots {
    flex-grow: 1; 
    border-bottom: 2px dotted #C5A059; 
    margin-bottom: 5px;
    opacity: 0.5;
    margin-left: 5px;
    margin-right: 5px;
}

.menu-item-name span{
    color: var(--darkBackground);
    font-weight: 400;
    font-size: 13px
}

.menu-item-name span:first-child{
    font-size: 16px;
    color: var(--defaultColor);
    font-weight: 600;
    text-transform: uppercase;
}

.menu-item-name h4{
    text-transform: uppercase;
    font-size: 16px;
    color: var(--primary_text_color);
    font-family: "Josefin Sans", sans-serif;
    font-weight: 900;
}

.menu-images{
    flex: 0.5 1 250px;
    height: 100%;
    flex-direction: column;
    gap: 10px;
    align-items: start;
    justify-content: start;
}

.menu-images img{
    width: 100%;
    height: 100%;
    max-height: 400px;
    object-fit: cover;
    position: sticky;
    top: 10px;
}

.second-block{
    width: 100%;
    flex-direction: column;
    gap: 30px;
    align-items: start;
    justify-content: start;
}



/*WEEKLY MENU*/
.daily-block{
    width: 100%;
    margin: 0;
    flex-direction: column;
    gap: 25px;
    align-items: start;
    justify-content: start;
}


/**/
/* --- STYLOVÁNÍ NAVIGACE PPRO MENU */

  .den-polozka {
    cursor: pointer;
    text-transform: uppercase; /* Všechna písmena velká */
    font-size: 16px;
    font-family: "Josefin Sans", sans-serif;
    font-weight: 600;
    transition: color 0.3s ease;
  }

  /* Hover efekt (když na to najedete myší) */
  .den-polozka:hover {
    color: #c5a065;
  }

  .den-polozka.aktivni {
    color: #c5a065;
    font-weight: 700;
  }

 .menu-line{
    width: 3px;
    height: 100%;
    background-color: var(--defaultColor);
    color: var(--defaultColor);
 }



/*STÁLÉ MENU*/
.permanent-menu-section{
    width: 100%;
    max-width: var(--max-width);
    padding: 50px 0px;
    flex-direction: column;
    gap: 75px;
}

.permanent-menu-section-full {
 width: 100%;
    max-width: var(--max-width);
    padding: 50px 0px;
    flex-direction: column;
    gap: 25px;
}

.permanent-menu-container h3{
    color: var(--primary_text_color);
    font-family:"Josefin Sans", sans-serif;
    font-size: 20px;
    text-transform: uppercase;
}

.tab{
    padding: 20px 40px;
    border: none;
    border-bottom: 2px solid var(--defaultColor);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    background-color: var(--lightBackground);
    color: var(--primary_text_color) !important;
}

.active-tab{
    background-color: var(--defaultColor);
}

.permanent-menu-container{
    width: 100%;
    gap: 50px;
    align-items: start;
    justify-content: start;
    flex-wrap: wrap;
}

.permanent-menu-container-column{
    width: 100%;
    gap: 50px;
    align-items: start;
    justify-content: start;
    flex-direction: column;
}

.permanent-menu-container .first-block{
    flex: 1 1 400px;
}

.permanent-menu-container .second-block{
    flex: 1 1 400px;
}


.menu-category-block{
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
}

.menu-category-block h3{
    color: var(--primary_text_color);
    font-family: "Josefin Sans", sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
}

























/*SERVICE*/
.services{
    width: 100%;
    padding: 50px 0px;
    flex-direction: column;
    background-color: var(--lightBackground);
    gap: 50px;
}

.services-container{
    flex-wrap: wrap;
    width: 100%;
    max-width: var(--max-width);
    align-items: start;
    gap: 50px;
}

.service-block{
    flex-direction: column;
    gap: 25px;
    flex: 1 1 250px;
}

.service-block img{
    height: 64px;
}

.service-block h4{
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
}

.service-block p{
    font-size: 16px;
    color: var(--darkBackground);
    text-align: center;
}



/*NEWS ------------------------------------------------------*/

.news{
    width: 100%;
    gap: 50px;
}


.news-container{
    max-width: var(--max-width);
    width: 100%;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: start;
}

.news-card{
    flex: 1;
    height: 480px;
    flex: 1 1 400px;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 25px;
    overflow: hidden;
    max-width: 430px;
}

.news-card span{
    color: var(--primary_text_color);
    font-size: 14px;
    font-weight: 400;
    font-family: "Josefin Sans", sans-serif;
}

.news-card h3{
    font-size: 20px;
    font-family: "Josefin Sans", sans-serif;
    text-transform: uppercase;
    color: var(--secondColor);
}

.news-card p{
    color: black;
    font-weight: 400;
    display: -webkit-box;
  -webkit-line-clamp: 3;         /* Zobrazí max. 3 řádků */
  -webkit-box-orient: vertical;  /* Směr textu */
  overflow: hidden;              /* Skryje přetečení */
  text-overflow: ellipsis; 
  font-size: 14px;
}

.news-card img{
    height: 50%;
    width: 100%;
    object-fit: cover;
}

.news-card a{
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--defaultColor);
    font-family: "Josefin Sans", sans-serif;
    color: var(--primary_text_color);
    transition: 0.2s;
}

.news-card:hover > a{
    padding-right: 25px;
}

.news-card:hover{
    cursor: pointer;
}

#description{
    white-space: pre-wrap;
}

/*GALERIE HOMEPAGE*/

.gallery-propagate{
    padding: 50px 0px;
    width: 100%;
    gap: 50px;
    flex-direction: column;
}

.gallery-container-propagate{
    width: 100%;
    gap: 10px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
}


.gallery-img-propagate{
    overflow: hidden;
}


.gallery-img-propagate img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
     aspect-ratio: 16/9;
}

.gallery-img-propagate:hover > img{
    transform: scale(1.1);
    cursor: pointer;
}


/*OPENING HOURS*/
.opening-hours{
    flex-direction: column;
    gap: 50px;
    width: 100%;
    background-color: var(--lightBackground);
    padding: 50px 0px;
}

.opening-hours-container{
    width: var(--max-width);
    gap: 0px;
    flex-wrap: wrap;
    justify-content: start;
    min-height: 400px;
}

.opening-hours-container iframe{
    flex: 2 1 400px;         /* Mapa zabere 2 díly šířky (je širší) */
    min-height: 475px;       /* Důležité: Mapa musí mít minimální výšku */
    height: 100%;            /* Natáhne se na výšku souseda, kdyby byl vyšší */
    border: none;            /* Odstraní rámeček */
    display: block;
}

.opening-hours-block{
    flex-direction: column;
    gap: 25px;
    background-color: white;
    height: 100%;
    flex: 0.5 1 300px;
    padding: 40px;
    min-height: 450px;
}

.open-hours-col{
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.oh-row{
    display: flex;
    justify-content: end;
    align-items: end;
    width: 100%;
}

.oh-day{
    font-family: "Josefin Sans", sans-serif;
    text-transform: uppercase;
     font-size: 18px;
    font-weight: 600;
}

.oh-time{
    font-family: "Josefin Sans", sans-serif;
    text-transform: uppercase;
     font-size: 18px;
    font-weight: 600;
}

.oh-dots{
    flex: 1 1 20px;
    border-bottom: 1px dotted var(--defaultColor);
    position: relative;
    bottom: 5px;
    margin: 0 5px;
}

.hours{
    flex-direction: column;
    gap: 15px;
}

.hours h4{
    font-family: "Josefin Sans", sans-serif;
    text-transform: uppercase;
     font-size: 18px;
    font-weight: 600;
}

.hours span{
     font-family: "Josefin Sans", sans-serif;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
}

.line{
    width: 100%;
    height: 1px;
    background-color: var(--defaultColor);
}

.contact-info-card{
    padding: 15px 25px;
    background-color: var(--defaultColor);
    color: var(--primary_text_color);
    background-color: var(--defaultColor);
    width: 100%;
    gap: 15px;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    justify-content: start;
}

.contact-info-card img{
    height: 23px;
}




/*FOOTER ------------------------------------------------------------------*/
footer{
    background-color: var(--darkBackground);
    width: 100%;
    padding: 50px 0px 0px 0px;
    flex-direction: column;
}



.footer-container{
    width: var(--max-width);
    padding-bottom: 50px;
    align-items: start;
    justify-content: space-between;
}

.footer-left-block{
    flex-direction: column;
    gap: 20px;
    align-items: start;
    flex: 1 1 300px;
    max-width: 300px;
}

.footer-logo{
    height: 100px;
    width: 100px;
}

.footer-logo img{
    height: 95%;
}

.footer-left-block p{
    color: white;
    font-size: 15px;
}
.footer-hours-container{
    gap: 15px;
    border-top: 1px solid white;
    padding-top: 15px;
}
.footer-hours{
    flex-direction: column;
}

.footer-hours span{
    color: white;
}

.footer-info{
    gap: 10px;
}
.footer-info span{
    color: white;
}

.footer-info a{
    color: white;
}

.footer-info img{
    height: 20px;
}

.footer-blocks{
    flex: 2;
    align-items: start;
}

.footer-block{
    flex-direction: column;
    gap: 25px;
    max-width: 300px;
    justify-content: start;
    align-items: start;
    flex: 1 1 300px;
}

.footer-block:nth-child(2){
    max-width: 200px;
}


.footer-block h2{
    color: white;
    font-weight: 500;
    font-size: 18px;
}

.footer-block:last-child{
    align-items: start;
}

.footer-block ul{
    list-style: none;
    flex-direction: column;
    gap: 25px;
    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;
}

.footer-bottom-line{
    width: 100%;
    padding: 20px 0px;
    background-color: #222222;
}

.footer-bottom-line p{
    color: var(--second_text_color);
}

.footer-socials{
    max-width: var(--max-width);
    width: 100%;
    gap: 25px;
    margin-bottom: 25px;
}

/*PLACE ----------------------------------------------------*/
.place{
    width: 100%;
    flex-direction: column;
    gap: 25px;
}

.place iframe{
    width: 100%;
    height: 400px;
}

.place-info{
    width: var(--max-width);
}




/*ANIMATIONS*/
.fade-in, 
.fade-left, 
.fade-right {
    opacity: 0;
    transition: all 0.5s ease-out; 
    will-change: opacity, transform;
}


.fade-in {
    transform: translateY(30px);
}

.fade-left {
    transform: translateX(-50px); 
}

.fade-right {
    transform: translateX(50px);
}


.fade-in.is-visible,
.fade-left.is-visible,
.fade-right.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}


/*ContactPage*/
.contact{
    padding: 50px 0;
    width: 100%;
}

.contact-container{
    gap: 50px;
    align-items: start;
    width: var(--max-width);
}

.contact-block .row{
    background-color: var(--lightBackground);
    padding: 20px;
    width: 100%;
}

.contact-block{
    flex-direction: column;
    gap: 30px;
    justify-content: start;
    align-items: start;
    width: 50%;
}

.contact-block .title-container h3{
    align-self: start;
}

.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{
    width: 50%;
    padding: 30px;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 25px;
    min-width: 300px;
    margin-bottom: 10px;
    background-color: var(--lightBackground);
}

.contact-container form h3{
    text-transform: uppercase;
    color: black;
    font-size: 18px;
    font-family: "Josefin Sans", sans-serif;
}

.contact-container form input{
    width: 100%;
    border: none;
    height: 45px;
    padding-left: 15px;
}

.contact-container label{
    font-size: 14px;
    font-weight: 400;
}

.contact-container form textarea{
    width: 100%;
    height: 100px;
    padding: 15px;
    border: none;
}

.contact-container form input[type='checkbox']{
    height: 15px;
    width: 15px;
    margin-right: 10px;
}

.input-container{
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 10px;
    width: 100%;
}


/*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%;
}



/*NEWS PAGE*/
.news-section{
    padding-top: 50px;
    padding-bottom: 100px;
}

/*ACTION*/
.action-container{
    max-width: var(--max-width);
    width: 100%;
    gap: 50px;
    min-height: 50vh;
    align-items: start;
    justify-content: start;
}
.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;
}