:root{
    --primary-color: #353535;
    --secondary-color: #fff;
    --tertirary-color: #BE9772;
}

@font-face {
    font-family: 'Tahoma';
    src: url('./Tahoma-4styles-Font/Tahoma_Regular_font.ttf') format('truetype'),
         /*url('fonts/your-font.ttf') format('truetype');*/
    /* Add more formats if needed */
}

@font-face {
    font-family: 'Caveat';
    src: url('./Caveat/caveat.regular.ttf') format('truetype'),
}

/* width */
::-webkit-scrollbar {
    width: 5px;
    position: fixed;
}
  
  /* Track *
  /* Handle */
::-webkit-scrollbar-thumb {
    background: var(--tertirary-color);
    border-radius: 10px;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--secondary-color);
    color: #333;
    letter-spacing: 1.2px;
    overflow-x: hidden;
    font-family: 'Tahoma';
}


.logo{
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
}

.logoTop{
    font-size: 36px;
    margin-top: 0px;
    margin-bottom: 0px;
}

.logoBottom{
    margin-top: 0px;
    color: var(--secondary-color);
    letter-spacing: 15px;
    margin-bottom: 0px;
}

.logoText{
    height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo:active{
    opacity: 0.8;
}

header {
    color: #000;
    padding: 20px;
    display: flex;
    text-align: center;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-left: 5%;
    padding-right: 5%;
    background-color: #fff;
    height: 40px;
    position: sticky;
    top: 0;
    z-index: 3;
    
}

.grayHeader{
    animation: appear 0.4s ease-out forwards;
}

@keyframes appear {
  from {
    background-color: rgb(202, 16%, 33%, 0);
  }
  to {
    background-color: var(--primary-color);
  }
}


select{
    background-color: transparent;
    border: none;
    color: #000;
    font-family: 'Tahoma';
}

select:focus{
    outline: none;
}

select::backdrop{
    background-color: var(--secondary-color);
}

.reserveSelect{
    border: 1px solid var(--tertirary-color);
    height: 55px;
    font-size: 16px;
}

.reserveSelect::-ms-value{
    font-family: 'Tahoma';
}

input{
    border: 1px solid var(--tertirary-color);
    height: 50px;
    font-size: 16px;
}

input::-ms-value{
    font-family: 'Tahoma';
    
}

.heroSection{
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 750px;
    margin-top: -120px;
}

.reservation{
    position: fixed;
    z-index: 3;
    background-color: var(--secondary-color);
    width: 60%;
    height: 100%;
    right: 20%;
    top: 0;
    display: none;
    overflow-y: auto;
}

#reservationCloseButton{
    background-color: transparent;
    border: none;
    transition: 0.2s;
}

#reservationCloseButton:active{
    opacity: 0.8;
}


#closeButton:hover{
    opacity: 0.8;
}


#closeButton{
    background-color: transparent;
    border: none;
    transition: 0.2s;
}

#closeButton:active{
    opacity: 0.8;
}


#closeButton:hover{
    opacity: 0.8;
}

.reserveButton{
    margin-left: 10%;
    margin-top: 20px;
    width: 160px !important;
    margin-bottom: 50px;
}

.reservationOpen{
    display: block !important;
    animation: reservationOpen 0.4s ease-out forwards;
}

@keyframes reservationOpen {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}


.reservationBackgroundOpen{
    display: block !important;
    animation: reservationBackgroundOpen 0.4s ease-out forwards;
}

@keyframes reservationBackgroundOpen {
    from{
        opacity: 0;
    }
    to{
        opacity: 0.5;
    }
}


.reservationTop{
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.reservationForm{
    width: 90%;
    margin-left: 5%;
}

form{
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: space-between;
}

.formDescription{
    margin-left: 10%;
    width: 80%;
}

.row{
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 80%;
    margin-left: 10%;
}

.halfForm{
    width: 45%;
}

.reservationBackground{
    background-color: black;
    z-index: 3;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    opacity: 0.5;
    display: none;
}


.noneSwitch{
    display: none !important;
}



.none{
    display: none !important;
}

.reserveSelect{
    padding-left: 10px;
    padding-right: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: transparent;
    transition: 0.2s;
    width: 106%;
    color: var(--primary-color);
    font-family: 'Tahoma';
}

input{
    padding-left: 10px;
    padding-right: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: transparent;
    transition: 0.2s;
    width: 95%;
    color: var(--primary-color);
    font-family: 'Tahoma';
}

.floor-select{
    color: white;
    margin-left: -35px;
    margin-bottom: 20px;
    font-size: 16px;
}


.errorInput{
    animation: errorAnimation 0.5s ease-out 3;
}

#errorMessage{
    margin-top: 20px;
}

@keyframes errorAnimation {
    0%, 100% {
        border-color: red;
        transform: translateX(0);
    }
    25%, 75% {
        transform: translateX(-10px);
    }
    50% {
        transform: translateX(10px);
    }
}

.reserveSelect:hover{
    background-color: whitesmoke;
}

.reserveSelect:focus{
    outline:none!important;
    background-color: whitesmoke;
}



input:hover{
    background-color: whitesmoke;
}


input:focus {
    outline:none!important;
    background-color: whitesmoke;

}

.whiteP{
    font-size: 14px;
    color: var(--secondary-color);
}

.inputDate{
    width: 95% !important;
}


.inputTitle{
    margin-top: 4px;
    margin-bottom: 4px;
    font-size: 11px;
}


.scrollDisable{
    overflow-y: hidden;
}

video{
    filter: brightness(0.8);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.section2{
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    height: 600px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.section2Img{
    width: 100%;

}

.imageList{
    width: 40%;
    margin: 5%;
}

.section2Title{
    color: var(--tertirary-color);
}

.halfsection2{
    margin-left: 10%;
    width: 45%;
}

.halfSection{
    width: 30vw;
    padding: 5%;
    margin: 5%;
    border: 1px solid var(--tertirary-color);
    background-color: hsl(47, 22%, 92%, 0.7);
}

.section3{
    display: flex;
    flex-direction: column;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    height: 500px;
}

.section3List{
    display: flex;
    flex-direction: row;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 10%;
}

.section3Title{
    margin-top: 100px !important;
    margin-bottom: 50px !important;
    text-align: center !important;
    width: 200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.section3Element{
    width: 120px;
    text-align: center;
}

.section3Half{
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-around;
    align-items: flex-start;
}

.section3Quater{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
}



.section4{
    background-color: var(--primary-color);
    height: 700px;
    padding-left: 5%;
    padding-right: 5%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.section4Half{
    width: 45%;
}

.switchText{
    color: var(--secondary-color) !important;
    opacity: 0.8;
}

.section4Title{
    margin-top: 0;
    margin-bottom: 20px;
}
    

.section4Switch{
    margin-left: 5px;
    display: flex;
    flex-direction: row;
    width: 200px;
    justify-content: space-between;
    cursor: pointer;
    position: relative;
    height: 70px;
}

.section4Switch::before {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    background-color: var(--secondary-color);
    bottom: -1px;
    left: 0;
    transition: width 0.2s ease; 
  }

.section4Switch:hover::before {
    width: 100%;
}


.floorList{
    margin-left: 0px;
    height: 300px;
}

.floorPoint{
    margin-left: -20px;
    margin-bottom: 12px;
}

.section4List{
    display: flex;
    flex-direction: row; 
}

.section4 li{
    color: var(--secondary-color);
}

.section4 p{
    color: var(--secondary-color);
}

.section4 b{
    color: var(--secondary-color);
}

ul{
    margin-left: -25px;
}


.cardSection{
    width: 90%;
    margin-left: 5%;
    height: fit-content;
}

.glider-prev{
    color: white;
}


#card-carousel{
    width: 80%;
    margin-left: 10%;
    height: 400px;
    margin-top: 50px;
}

.card{
    border: 1px solid var(--tertirary-color);
    height: 380px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.cardContent{
    width: 55%;
    margin-right: 20px;
}

.cardDescription{
    width: 100%;
}

.cardImage{
    width: 35% !important;
    height: 200px !important;
    margin-left: 20px;
    margin-top: 20px;
}


.section-gallery{
    width: 90%;
    margin-left: 5%;
}


.galeryImage{
    transition: 0.2s;
    height: 300px;
    object-fit: cover;
}

.galeryImage:hover{
    opacity: 0.8;
}


.galeryRow{
    width: 100%;    
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.galeryImage{
    width: 300px;
}

#gallery--getting-started{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.imageRow{
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    display: flex;
    flex-direction: row;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.img{
    background-color: var(--secondary-color);
    height: 200px;
    width: 30%;
}


.goldText{
    color: var(--tertirary-color);
}

.white{
    color: var(--secondary-color);
}

.contact{
    height: 500px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.contactLine{
    width: 220px;
}

.contactList{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    text-align: center;
    align-items: center;
    margin-top: 20px;
    width: 100%;
    height: fit-content;
}

.contactHalf{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 50%;
}

.contactElement{
    width: 140px;
    height: 200px;
    word-wrap: break-word;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contactDescription{
    margin-bottom: 0px;
    margin-top: 5px;
    width: 220px;
    font-size: 14px;
}

.socialButton{
    margin-top: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 40px;
    border-radius: 40px;
    transition: 0.2s;
    border: none;
    border: 1px solid var(--tertirary-color);
    background-color: var(--tertirary-color);
}

.socialButtonRow{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100px;
    margin-top: 30px;
}

.socialButton:hover{
    opacity: 0.8;
}

.socialButton:active{
    opacity: 1;
}


.icon{
    color: white;
    width: 26px;
    transition: 0.2s;
}

.section5{
    display: flex;
    flex-direction: row;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    justify-content: space-between;
    align-items: center;
    height: fit-content;
    height: 400px;
    margin-top: calc(100px - 10vw);

}  

.section5Title{
    margin-top: 0px;
}


.section5Half{
    height: fit-content;
    width: 45%;
}


.headerBackground{
    background-color: var(--primary-color);

}

.heroText{
    position: absolute;
    color: var(--tertirary-color);
    width: 80vw;
    margin-left: 10vw;
    margin-right: 10vw;
    text-align: center;
    background-color: white;

}

.headerLinks{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 500px;
}

main {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    
}


.button1{
    font-size: 14px;
    font-family: 'Tahoma';
    color: var(--secondary-color);
    width: 100px;
    height: 50px;
    background-color: var(--tertirary-color);
    border: 1px solid transparent;
    transition: 0.2s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.popupButton{
    margin-top: 0x;
}

.button1:hover{
    color: var(--tertirary-color);
    background-color: transparent;
    border: 1px solid var(--tertirary-color);
}



.headerLink{
    font-size: 14px;
    color: #000;
    text-decoration: none;
    height: 20px;
    transition: 0.2s;
    position: relative;
    display: inline-block;
}


.headerLink::before {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    background-color: #000;
    bottom: -1px;
    left: 0;
    transition: width 0.2s ease; 
  }

  .headerLink:hover::before {
    width: 100%;
  }


h1 {
    font-weight: 400;
    font-size: 60px;
    color: var(--tertirary-color)
}


h2{
    font-weight: 500;
    font-family: 'Tahoma';
    font-size: 42px;
    color: var(--secondary-color);
}

h3{
    font-weight: 500;
    font-family: 'Tahoma';
    font-size: 26px;
    color: var(--primary-color);
}

p {
    font-weight: 400;
    font-size: 16px;
    font-family: 'Tahoma';
    line-height: 1.6;
    letter-spacing: 1;
    color: var(--primary-color);
}

.specialText{
    font-family: 'Caveat';
    font-size: 32px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.mountain-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 20px;
    font-size: 16px;
    color: #fff;
    background-color: #4caf50;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #45a049;
}

footer {
    background-color: #fff;
    color: #000;
    padding: 10px;
    text-align: center;
}

.footerLogo{
    margin-left: auto;
    margin-right: auto;
}

.footerTitle{
    width: 100%;
}

.footerLinks{
    display: flex;
    flex-direction: row;
    margin-left: auto;
    margin-right: auto;
    width: 500px;
    text-align: center;
    justify-content: space-between;
    align-items: center;
}

#menuButton{
    display: none;
}

.marker {
    background-image: url('./images/pin.webp');
    background-size: cover;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
}

.mobile{
    display: none;
}

.menu{
    display: none;
}

.splide__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.splide__slide img{
    max-height: 500px;
}

#image-carousel{
    width: 55%;
}

#image-carousel2{
    width: 55%;
}



.image2{
    width: 45%;
    margin-right: 10%;
}


.conditionTitle{
    width: 90%;
    margin-left: 5%;
    margin-top: 100px;
    margin-bottom: 50px;
}

.conditionsSection{
    width: 60%;
    margin-left: 10%;
    margin-bottom: 100px;

}

.conditionsPoint{
    margin-bottom: 20px;
}


.bold{
    font-size: large;
    font-weight: 600;
}

li{
    margin-bottom: 5px;
    line-height: 160%;
}

.mobileMenuTitle{
    margin-left: 5%;
    margin-right: 5%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.margin0{
    margin-top: 0 !important;
}

.margintop0{
    margin-top: 0px;
}



.todoList{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 70%;
    margin-left: 15%;
    margin-top: 100px;
    margin-bottom: 100px;
    row-gap: 20px;
}

.todoText{
    font-family: 'Tahoma';
    font-weight: 600;
    color: whitesmoke;
    position: absolute;
    top: 50px;
    width: 100%;
    text-align: center;
    opacity: 0;
    transition: 0.2s;
    transform: translateY(30px);
}   

.todoElement:hover .higherTodoText{
    transform: translateY(-20px) !important;
}

.todoElement:hover .todoText{
    opacity: 1;
    transform: translateY(0px);
}

.todoElement{
    background-color: black;
    transition: 0.2s;
    width: 215px;
    height: 165px;
    position: relative;
    margin-right: 20px;
}

#gallery--getting-started{
    margin-top: 100px;
    margin-bottom: 100px;
}


.todoImage{
    background-color: black;
    transition: 0.2s;
}


.todoElement:hover .todoImage{
    opacity: 0.9;
}   


#todoPopup{
    position: fixed;
    top: 0;
    display: none;
    z-index: 3;
    background-color: var(--secondary-color);
    width: 70%;
    margin-left: 15%;
    margin-top: 120px;
    height: 550px;
    flex-direction: row;
    justify-content: space-between;
}

#popup{
    position: fixed;
    top: 0;
    z-index: 3;
    background-color: var(--secondary-color);
    width: 70%;
    margin-left: 15%;
    margin-top: 120px;
    height: 550px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}


.popupTopText{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}


.popupTop{
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0;
}

#popupTitle{
    margin-right: 30px;
    margin-top: 20px;
    margin-bottom: 20px
}

#popupDescription{
    margin-right: 30px;
    margin-bottom: 40px;
}

.popupContent{
    margin-top: auto;
    margin-bottom: auto;
    margin-right: 20px;
    width: 55%;
}

.startPopupTitle{
    margin-top: 0px;
    margin-bottom: 0px;
}

.startPopup{
    width: 700px;
    height: 250px;
    position: fixed;
    background-color: var(--secondary-color);
    top: 400px;
    left: -800px;
    z-index: 4;
    animation: goIn 0.4s ease-out forwards;
    animation-delay: 1s;
    display: flex;
    flex-direction: row;
    border: 1px solid var(--tertirary-color);
}

@keyframes goIn {
    from{
        left: -800px;
    }
    to{
        left: 0;
    }
}


.todoLink{
    color: var(--tertirary-color);
}

.startPopupContent{
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.startPopupMiddle{
    margin-top: -10px;
    margin-left: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.todoPopupContent{
    margin-top: 10px;
}

#popupImage{
   width: 35%;
   height: fit-content;
   margin-left: 30px;
   margin-top: 30px;
}

.popupImage{
    width: 100%;
    margin-bottom: 20px;
}

.popupImageList{
    height: fit-content;
    margin-left: 30px;
    margin-top: auto;
    margin-bottom: auto;
    width: 40%;
}

#todoCloseButton{
    background-color: transparent;
    border: none;
    transition: 0.2s;
    margin-top: 5px;
}

#todoCloseButton:active{
    opacity: 0.8;
}

#todoBackground{    
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgb(0, 0, 0,0.2);
    width: 100vw;
    height: 100vh;
    z-index: 2;
    display: none;
}

#background{
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgb(0, 0, 0,0.2);
    width: 100vw;
    height: 100vh;
    z-index: 3;
    display: none;
}

.whiteP{
    border-bottom: 2px solid transparent;
}

.popinBackground{
    display: block !important;
    animation: popinBackground 0.4s ease-out forwards;
}

@keyframes popinBackground {
    from{
        opacity: 0;
    }
    to{
        opacity: 0.5;
    }
}

.popin{
    display: flex !important;
    animation: popin 0.5s ease-out forwards;
}

@keyframes popin {
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}
@media only screen and (max-width: 1200px) {
    #image-carousel2{
        width: 45%;
    }

    .section4Half{
        width: 55%;
    }
}

@media only screen and (max-width: 1100px) {
    .section3List{
        margin-top: auto;
        margin-bottom: auto;
        flex-direction: column;
        align-items: center;
        height: 400px;
        justify-content: space-around;
    }
}

@media only screen and (max-width: 900px) {

    #menuButton{
        display: block;
    }

    .headerLinks{
        display: none;
    }

    .bar {
        display: block;
        width: 40px; /* Increase the width */
        height: 2px; /* Decrease the height for thinner bars */
        background-color: #000;
        margin: 10px 0; /* Increase the margin */
        transition: 0.2s;
    }
    
    /* Additional styles for the "change" class */
    .change:nth-child(2) {
        opacity: 0;
    }
    
    .change:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 12px); /* Adjust the transform values */
    }
    
    .change:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -12px); /* Adjust the transform values */
    }

    .mobile{
        display: flex;
    }

    .mobileMenu{
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 160px;
    }

    .menu{
        height: 100vh;
        width: 100%;
        background-color: var(--secondary-color);
        display: none;
        position: fixed;
        z-index: 3;
    }

    .menuLinks{
        display: flex;
        flex-direction: column;
        width: 80%;
        margin-left: 10%;
        margin-top: 50px;
        height: 20%;
        justify-content: space-between;
        margin-bottom: 50px;
    }

    .menuOpen{
        display: block !important;
        animation: fadeIn 0.2s ease-out forwards;
      }
    
      @keyframes fadeIn {
        from {
          transform: translateX(100%); /* You can customize the initial state */
        }
        to {
          transform: translateX(0); /* You can customize the final state */
        }
      }

    .floorList{
        width: 90%;
        height: fit-content;
    }


    .contactList{
        flex-wrap: wrap;
        margin-bottom: 15%;
    }


    .startPopup{
        width: 100%;
        height: 250px;
        left: -110%;
        z-index: 4;
        animation: goIn 0.4s ease-out forwards;
        animation-delay: 1s;
    }
    
    @keyframes goIn {
        from{
            left: -110%;
        }
        to{
            left: 0;
        }
    }


    .section2{
        flex-direction: column;
        height: fit-content;
    }

    .section4{
        flex-direction: column;
        height: fit-content;
    }

    .halfsection2{
        margin-left: 0%;
        width: 90%;
        margin-bottom: 15%;
    }

    .section5{
        flex-direction: column;
        justify-content: center;
        height: fit-content;
    }

    .contact{
        height: fit-content;
    }


    .section5Half{
        margin-bottom: 20px;
        width: 100%;
    }


    .section4Half{
        height: fit-content;
        width: 90%;
        margin-top: 5%;
        margin-bottom: 50px;
    }

    .section4Title{
        margin-top: 50px;
    }
    
    .section2Img{
        width: 100%;
        max-height: 400px;
    }

    .imageList{
        width: 90%;
    }

    .section3Title{
        margin-top: 50px !important;
    }


    #image-carousel{
        margin-top: 50px;
        margin-bottom: 5%;
        width: 90%;
    }
    
    #image-carousel2{
        margin-top: 5%;
        margin-bottom: 15%;
        margin-left: 0;
        width: 90%;
    }
    

    .image2{
        width: 90%;
        margin-left: 10%;
        margin-top: 15%;
    }

    .section3title{
        margin-top: 20px;
    }

    .reservation{
        right: 10%;
        width: 80%;
    }
    
    .contactHalf{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 48%;
    }

    .row{
        margin-left: 0;
        width: 100%;
    }

    .reserveSelect{
        width: 94%;
    }

    input{
        width: 85%;
    }
    
    .inputDate{
        width: 80px;
    }

    .formDescription{
        margin-left: 0;
    }

    .reserveButton{
        margin-left: 0;
    }

    .imageDissapear{
        width: 0px;
        height: 0px;
        display: none;
    }
    
    .conditionsSection{
        width: 80%;
        margin-left: 10%;
        margin-bottom: 50px;
    
    }

    #card-carousel{
        margin-left: 0px;
        width: 100%;
        height: 400px;
    }

    #todoPopup{
        width: 100%;
        margin-left: 0px;
        height: fit-content;
        margin-top: 25%;
    }

    .todoPopupContent{
        margin-right: 0;
        width: 100%;
    }

    #popup{
        width: 100%;
        margin-left: 0px;
        height: fit-content;
        flex-direction: column-reverse;
    }

    .popupContent{
        margin-left: 10px !important;
    }

    #closeButton{
        
    }

    .popupImageList{
        display: flex;
        flex-direction: row;
        margin-left: 5%;
        width: 60%;
        margin-top: auto;
        margin-bottom: auto;
    }

    .startPopupContent{
        width: 90%;
        margin-left: 5%;
    }

    .startPopupMiddle{
        margin-left: 20px;
        margin-top: 0px;
        width: 100%;
    }

    #popupImage{
        display: none;
    }

}

@media only screen and (max-width: 700px) {
    .todoList{
        width: 90%;
        margin-left: 5%;
    }
    .todoElement{
        width: 100%;
        height: 300px;
        margin-right: 0px;
    }
    .todoImage{
        width: 100%;
        height: 300px;
    }
    .todoText{
        margin-top: 70px;
    }

    .todoElement:active .todoText{
        opacity: 1;
        transform: translateY(0px);
    }

    .todoElement:active .todoImage{
        opacity: 0.9;
    }   

    header{
        height: 70px;
    }

    video{
        margin-top: -40px;
    }

    .logo{
        width: 180px;
    }

    .footerLogo{
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }

    .footerLinks{
        margin-left: 5%;
        width: 90%;
        flex-wrap: wrap;
        margin-bottom: 20px;
    }

    .galeryImage{
        transition: 0.2s;
        width: 100%;
        object-fit: cover;
        height: 400px;
    }

    .section3Half{
        display: flex;
        flex-direction: column;
    }

    .section3Quater{
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .section3List{
        height: fit-content;
    }
    
    .section3{
        margin-top: 50px;
        height: fit-content;
    }

    header{
        height: 100px;
    }
    
    
}


@media only screen and (max-width: 550px) {
   .startPopup{
    flex-direction: column-reverse;
    height: 480px;
    top: 150px;
   }
   .popupImageList{
    max-height: 200px;
    margin-top: 20px;
    margin-bottom: 20px;
   }

   #todoPopup{
    margin-top: 35%;
   }
   
}



@media only screen and (max-width: 450px) {
    .whiteP{
        width: 100%;
    }
}

.logo img {
    max-height: 60px;  /* Dopasuj do poprzedniej wysokości */
    width: auto;  /* Zachowanie proporcji */
    object-fit: contain; /* Zapobiega rozciąganiu */
}


