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

/* HEADER  */

body {
    background-color: #F4F2EE;
    margin: 0 auto;
}

#header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100vh;
    text-align: center; 
    overflow: hidden;
  }
  
  .header-bgc {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; 
  }
  
  .header-content {
    z-index: 1; 
    padding: 20px;
    margin-top: 200px;
  }
  
  .header-logo {
    position: absolute;
    top: 20px; 
    left: 20px;
    width: 200px;
    z-index: 1;
  }

  .contact {
    position: absolute;
    bottom: 20px; 
    right: 20px;
    width: 150px;
    padding: 10px 20px;
    z-index: 1;
  }
  

.header-title, .header-text {
    color: white;
    text-align: center;
}

.header-title {
    font-size: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.header-text {
    font-size: 20px;
    letter-spacing: 0.5px;
}

@media (min-width: 480px) {
   .contact {
display: none;
   }

  .header-content {
    z-index: 1; 
    padding: 20px;
    margin-top: 10px;
  }

  .header-title {
    font-size: 50px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.header-text {
    font-size: 20px;
    letter-spacing: 1px;
}
}


/* ACCOMODATION OVERLOOK */

#accomodation {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.accomodation-descr-txt {
    padding: 150px 30px 50px 30px;
    margin-bottom: 20px;
}

.accomodation-h2, .accomodation-p, .img-description  {
    text-transform: uppercase;
    letter-spacing: 2px;
}

.accomodation-p {
    position: relative;
    font-size: 20px; /* Adjust the font size as needed */
    padding-left: 10px;
    margin-left: 20px; /* Adjust the left margin to move the text if needed */
  }

  .accomodation-h2 {
    font-weight: 100;
    font-size: 30px;
    margin-top: 5px;
  }
  
  .accomodation-p::before {
    content: "—"; /* Add the dash before the text */
    position: absolute;
    left: -20px; 
    font-size: 20px; /* Match the font size of the text */
  }
  

.accomodation-photos-container {
    display: grid;
    grid-template-rows: 1fr;
    justify-content: space-around;
    align-items: center;
    gap:50px;
}

.img-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;   
}

.img-container p {
    text-transform: none;
}

.img-description {
    margin-top: 10px;
    padding: 0 30px 0 30px;
}

.accomodation-img {
    max-width: 300px;
    height: 250px;
    object-fit:cover;
}


.fontstyle {
    position: relative;
    font-size: 1rem;
    text-transform: uppercase;
    padding-left: 10px;
    margin-left: 20px;
  }
  
  .fontstyle::before {
    content: "—"; 
    position: absolute;
    left: -20px; 
    font-size: 1rem; 
  }


@media (min-width: 480px) {
    .accomodation-photos-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        justify-content: space-around;
        align-items: center;
        gap:30px;
        margin: 0 30px 0 30px;
    } 


    .accomodation-img {
        max-width: 400px;
        height: 350px;
        object-fit:cover;
    }

    .img-description {
        margin-top: 10px;
        padding: 0 40px 0 40px;
    }

    .accomodation-h2 {
        font-size: 30px;
    }
}


/* HOTEL DESCRIPTION  */

.hotel-description-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 120px 30px 50px 30px;
}

.description-img {
    max-width: 300px;
    height: auto;
    object-fit:cover;
    margin-bottom: 50px;
    padding: 20px;
    border: 1px solid black;
}

.h-description-p, .h-description-h2 {
    text-transform: uppercase;
    letter-spacing: 3px;
}

.h-description-p {
    position: relative;
    font-size: 18px;
    padding-left: 10px;
    margin-left: 20px;
    margin-bottom: 10px;
}

.h-description-p::before {
    content: "—"; /* Add the dash before the text */
    position: absolute;
    left: -20px; 
    font-size: 18px; /* Match the font size of the text */
  }

.h-description-h2 {
    font-size: 30px;
    font-weight: 100;
}

.h-text {
    margin-top: 20px;
    font-size: 16px;
    font-weight: 100;
    letter-spacing: 1px;
}

.description-contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    margin-top: 50px;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    color: white;
    text-transform: uppercase;
    background-color: rgb(164, 131, 69);
}

@media (min-width: 480px)  {
    .hotel-description-container{
       display: grid;
       grid-template-columns: 1fr 1fr;
       justify-content: center;
       align-items: center;
    }

    .description-img {
        max-width: 500px;
        height: auto;
        object-fit:cover;
        margin: 0 auto;
        margin-bottom: 50px;
    }

    .h-description-txt {
        padding-right: 100px;
    }

    .h-description-p {
        font-size: 20px;
        margin-bottom: 10px;
        font-weight: 100;
    }

    .h-description-h2 {
        font-size: 60px;
        margin-bottom: 30px;
        font-weight: 100;
    }
    
    .h-text {
        margin-top: 20px;
        font-size: 22px;
        letter-spacing: 1px;
        margin-right: 20px;
    }

    .description-contact {
        margin-top: 100px;
        padding: 15px 25px;
        border-radius: 5px;
        border: none;
        color: white;
        font-size: 18px;
        background-color: rgb(164, 131, 69);
    }

   
}

/* REVIEWS  */

#reviews {
    background-color: #EFECE6;
    margin: 100px 30px 50px 30px;
}

.reviews-container {
    max-width: 100vw;
    height: auto;
    padding: 50px 25px 50px 20px;
}

.reviews-h3 {
    font-size: 16px;
    text-align: center;
    letter-spacing: 1px;
    line-height: 25px;
    text-transform: uppercase;
    font-weight: 100;
}

@media (min-width: 480px) {
    #reviews {
        margin: 50px 40px 50px 40px;
    }
    .reviews-h3 {
        font-size: 20px;
        letter-spacing: 1px;
        line-height: 35px;
    }
    .reviews-container {
        max-width: 100vw;
        height: auto;
        padding: 50px;
    }
    
}

/* FOOTER_PHOTO  */

#panorama-photo {
    max-width: 100vw;
    height: auto;
}

.panorama-img {
    max-width: 100vw;
    height: auto;
    display: none;
}

.panorama-img-mobile {
    display: block;
    max-width: 100vw;
    height: auto;
}


@media (min-width: 780px) {
    .panorama-img-mobile {
        display: none;
    }
    .panorama-img {
        display: block;
    }
}


/* FOOTER  */

.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 50px 0 0 0;
    padding: 30px 0 30px 0;
    background-color: #EEEBE5;
}

.footer-logo {
    max-width: 150px;
    height: auto;
    margin: 0 auto
}

.hotel-info {
    text-align: center;
    justify-content: center;
}

.hotel-info h2 {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 100;
}

.hotel-info p {
    font-size: 16px;
    font-weight: 100;
    text-transform: uppercase;
    line-height: 25px;
    letter-spacing: 1px;
}

.hotel-info a {
    text-decoration: none;
    text-transform: uppercase;
    color: black;
    font-size: 16px;
    cursor: pointer;
    letter-spacing: 1px;
}

.madeby {
    text-align: center;
}
.madeby a {
    text-decoration: none;
    color: black;
    cursor: pointer;
}

@media (min-width: 480px) {
    .footer-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        justify-content: center;
        align-items: center;
        margin: 30px 0 0 0;
    }

    .footer-logo {
        max-width: 250px;
        height: auto;
        margin: 0 auto
    }

    .hotel-info {
        text-align: left;
        justify-content: center;
    }
    
}



@media (min-width: 540px) and (max-width: 1024px) {
   
    .accomodation-img {
        max-width: 200px;
        height: 170px;
        object-fit:cover;
    }

    .accomodation-photos-container {
        margin: 0 30px 0 30px;
    }

    .description-img {
        max-width: 300px;
        height: auto;
        object-fit:cover;
        margin-bottom: 50px;
        margin-left: 5px;
        padding: 20px;
        border: 1px solid black;
    }

    .img-description {
        padding-left: 10px;
        padding-right: 10px;
    }

    .h-description-txt {
        padding-right: 5px;
        padding-top: 50px;
    }

    .h-description-p {
        font-size: 18px;
        margin-bottom: 10px;
        font-weight: 100;
    }

    .h-description-h2 {
        font-size: 40px;
        margin-bottom: 30px;
        font-weight: 100;
    }
    
    .h-text {
        margin-top: 20px;
        font-size: 20px;
        letter-spacing: 1px;
        margin-right: 10px;
    }
}
