/* inder-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inder';
    font-style: normal;
    font-weight: 400;
    src: url(fonts/inder-v14-latin-regular.woff2) format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  
  /* bebas-neue-regular - latin */
  @font-face {
    font-display: swap; 
    font-family: 'Bebas Neue';
    font-style: normal;
    font-weight: 400;
    src: url(fonts/bebas-neue-v14-latin-regular.woff2) format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  
  /* inria-sans-regular - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inria Sans';
    font-style: normal;
    font-weight: 400;
    src: url(fonts/inria-sans-v14-latin-regular.woff2) format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* inria-sans-700 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inria Sans';
    font-style: normal;
    font-weight: 700;
    src: url(fonts/inria-sans-v14-latin-700.woff2) format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  
  /* CSS Variables */
  :root {
      --primary-color: #F9EAD3;
      --primaryalt-color: #FCF5EB;
      --secondary-color: #FAA913;
      --txtnormal-color: #000000;
    }  
  
  /* Smooth scroll effect */
  html {
      scroll-behavior: smooth;
    }  
  
  h1 {
      font-size: 46px;
      font-family: "Bebas Neue", sans-serif;
    }
  
  p {
      font-family: "Inria Sans", sans-serif;
      font-weight: 300;
      font-style: normal;
    }
  
  /*resets*/
  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
  a {
      text-decoration: none;
      color: var(--txtnormal-color);
    }
  
  a:hover {
      color: var(--secondary-color);
    }  
  
  /* banner discount */
  .booking-discount {
      background-color: var(--secondary-color);
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #000;
      padding: 2px 0px;
      top: 0;
  }
  
  .booking-discount p {
    font-size: 12px;
    font-family: "Inder", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  @media (max-width: 768px) {
  .booking-discount {
        max-width: 100%;
        padding: 2px 0px;
      }
  }
  
  /* NAV STUFF */
  .header {
      display: flex;
      background-color: #FAEEDD;
      justify-content: space-between;
      align-items: center;
      padding-left: 7px;
      width: 1600px;
      max-width: 100%;
      color: #000;
      overflow: hidden;
      position: sticky;
      top: 30px;
      left: 0;
      z-index: 1;
  }
  
  @media (max-width: 768px) {
  .header {
        flex-wrap: nowrap;
        margin-left: 0; 
        padding: 3px 5px;      
      }
    }
  
  .logo {
      letter-spacing: 1.4px;
      font: 11px "Bebas Neue", sans-serif;
  }
  
  .nav {
      display: flex;
      position: sticky;
      top: 0;
      left: 0;
      justify-content: space-between;
      align-items: center;
      gap: 60px;
      font-size: 13px;
      letter-spacing: 1.25;
      white-space: nowrap;
      margin: auto 0;
  }
  
  @media (max-width: 768px) {
    .nav {
      display: flex;
      background-color: #FAEEDD;
      flex-direction: column;
      position: fixed;
      justify-content: center;
      left: 100%;
      top: 4rem;
      gap: 6px;
      width: 100%;
      text-align: center;
      padding: 10px 0;
      flex-wrap: wrap;
      white-space: initial;
    }
  }
  
  nav.active {
      left: 0;
    }
    
    .nav-link {
        font-family: "Inria Sans", sans-serif;
        letter-spacing: 1.5px;
        margin: 1rem 0;
    }
  
    /* hamburger menu */
    .hamburger {
      visibility: hidden;
      width: 30px;
      height: 24px;
      cursor: pointer;
      position: relative;
    }
  
    @media screen and (max-width: 768px) {
      .hamburger {
        visibility: visible;
        display: block;
        cursor: pointer;
      }    
      }
  
  .hamburger.active .bar:nth-child(2) {
        opacity: 0;
      }
    
  .hamburger.active .bar:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
      }
    
  .hamburger.active .bar:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
      }
  
  .bar {
      display: block;
      width: 30px;
      height: 4px;
      background-color: #333;
      margin: 6px auto;
      transition: background-color 0.3s ease;
    }
  
/* popup booking */

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.popup {
    font-family: Inria Sans, sans-serif;
    font-weight: 300;
    font-size: 16px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #FFFFFF;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

.popup-content {
    text-align: center;
}

.popup .close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 12px;
    cursor: pointer;
    color: #333;
}

.popup table {
    margin-top: 10px;
    width: 100%;
    border-collapse: collapse;
    align-self: center;
}

.popup table th, .popup table td {
    border: 1px solid #000;
    padding: 8px;
}

.popup p {
    margin-top: 10px;
}

.popup h3 {
    margin: 5px;
}

.contact-info {
    font-size: 1em;
    font-weight: bold;
    color: #007BFF;
}

.contact-info a {
    color: #007BFF;
}

.contact-info:hover {
    text-decoration: underline;
}

.popup img {
    margin-top: 20px;
}


  /* UNWIND SECTION */
  #unwind-section {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bckgrnd-white, #f9ead3);
    font-weight: 700;
    text-align: center;
    padding: 0px 0px;
  }
  
  @media (max-width: 991px) {
    #unwind-section {
      padding: 40px 2px 20px;
    }
  }
  
  .unwind-inner {
    display: flex;
    margin: 30px 0px;
    width: 400px;
    max-width: 100%;
    flex-direction: column;
    align-items: center;
  }
  
  .hostel-title {
    border-radius: 50%;
    background: linear-gradient(180deg, #f48931 44.6%, #f9ead3 97%);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 400;
  }
  
  @media (max-width: 991px) {
    .hostel-title {
      max-width: 100%;
      padding: 0px 0px;
    }
  }
  
  .hostel-promo {
    color: #fff9ef;
    letter-spacing: 4.8px;
    margin-top: 30px;
    font: 60px Bebas Neue, sans-serif;
  }
  
  @media (max-width: 991px) {
    .hostel-promo {
      margin-top: 40px;
    }
  }
  
  .hostel-image {
    aspect-ratio: 2.7;
    object-fit: contain;
    object-position: center;
    width: 100%;
    align-self: stretch;
  }
  
  @media (max-width: 991px) {
    .hostel-image {
      max-width: 100%;
    }
  }
  
  .hostel-name {
    color: #704210;
    letter-spacing: 4px;
    font: 60px Bebas Neue, sans-serif;
  }
  
  @media (max-width: 991px) {
    .hostel-name {
      font-size: 60px;
    }
  }
  
  .unwind-divider {
    background-color: #7e460a;
    margin-top: 0px;
    width: 220px;
    max-width: 100%;
    height: 2px;
  }
  
  .hostel-description {
    font-family: Inria Sans, sans-serif;
    color: #000;
    margin-top: 40px;
    width: 400px;
    font-weight: 300;
    font-size: 16px;
  }
  
  @media (max-width: 991px) {
    .hostel-description {
      width: auto;
    }
  }
  
  .action-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    gap: 20px;
    font-size: 16px;
    letter-spacing: 1px;
  }
  
  .learn-more {
    color: #000;
    font-family: Inria Sans, sans-serif;
    display: flex;
    justify-content: center;
    border-radius: 20px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
    background-color: #faa913;
    padding: 13px 17px;
  }
  
  a.learn-more:hover {
    color: #fff9ef;
  }
  
  .book-now {
      color: #fff9ef;
    display: flex;
    justify-content: center;
    border-radius: 20px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
    background-color: var(--txt-blue, #04465a);
    flex-direction: column;
    padding: 8px 16px;
  }
  
  .book-now-inner {
    font-family: Inria Sans, sans-serif;
    display: flex;
    justify-content: center;
    padding: 5px 12px;
  }
  
  .rating-container {
    position: absolute;
    left: 0;
    top: 80px;
    justify-content: center;
    box-shadow: 2px 4px 4px 0px #000;
    border: 1px solid rgba(0, 0, 0, 1);
    background-color: #faeedd;
    display: flex;
    flex-direction: column;
    padding: 9px 12px;
  }
  
  .rating-wrapper {
    display: flex;
    justify-content: center;
    gap: 5px;
    font-size: 11px;
    letter-spacing: 0.7px;
  }
  
  .rating {
    font-family: Inria Sans, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px 10px 10px 0px;
    background-color: #003580;
    color: #fff9ef;
    white-space: nowrap;
    width: 35px;
    height: 35px;
    padding: 0 8px;
  }
  
  @media (max-width: 991px) {
    .rating {
      white-space: initial;
    }
  }
  
  .rating-source {
    font-family: Inria Sans, sans-serif;
    color: #000;
    margin: auto 0;
  }
  
  /* REVIEWS */
  
  #reviews-section {
      display: flex;
      justify-content: center;
      padding: 20px 0px;
      background-color: #FBF6ED;
  }
  
  .reviews-slideshow {
    height: 200px;
  }
  
  @media (max-width: 991px) {
    .reviews-slideshow {
      flex-direction: column; 
    }
  }
  
  .slide {
    position: relative;
    display: none;
  }
  
  .slide img {
    width: 350px;
    box-shadow: 0px 4px 4px 4px #000;
    border: 1px solid rgba(0, 0, 0, 1);
  }
  
  @media (max-width: 991px) {
      .slide img {
          width: 300px;
      }
    }
  
  .slide:first-child {
    display: block;
  }
  
  .prev, .next {
    position: absolute;
    top: 80%;
    transform: translateY(-50%);
    width:fit-content;
    margin-top: -22px;
    padding: 5px;
    color: #04465a;
    font-weight: bold;
    font-size: 24px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    cursor: pointer;
  }
  
  .prev {
    left: 0;
  }
  
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  /* ROOMS */
  
  #rooms-section {
    background-color: #f9ead3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 10px;
  }
  
  .content-wrapper {
    justify-content: center;
    border-radius: 50px;
    background-color: #82F6D3;
    /* 60c0e8 */
    display: flex;
    flex-direction: column;
    padding: 20px 25px;
  }
  
  @media (max-width: 991px) {
    .content-wrapper {
      max-width: 100%;
    }
  }
  
  .intro-text {
    color: #093513;
    /* color: var(--txt-blue, #04465a); */
    letter-spacing: 1.5px;
    font: 400 34px Bebas Neue, sans-serif;
  }
  
  @media (max-width: 991px) {
    .intro-text {
      max-width: 100%;
    }
  }
  
  .rooms-part {
    margin-top: 20px;
  }
  
  @media (max-width: 991px) {
    .rooms-part {
      max-width: 100%;
      margin-top: 0px;
    }
  }
  
  .rooms-container {
    gap: 25px;
    display: flex;
  }
  
  @media (max-width: 991px) {
    .rooms-container {
      flex-direction: column;
      align-items: stretch;
      gap: 30px;
    }
  }
  
  .room {
    display: flex;
    flex-direction: column;
    line-height: normal;
    width: 33%;
    margin-left: 0px;
  }
  
  @media (max-width: 991px) {
    .room {
      width: 100%;
    }
  }
  
  .room-content {
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    background-color: #fcf5eb;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    font-weight: 400;
    width: 100%;
    padding: 0px 20px;
  }
  
  @media (max-width: 991px) {
    .room-content {
      margin-top: 20px;
    }
  }
  
  .room-title {
    color: #065B3C;
    /* color: #56b5d1; */
    letter-spacing: 2px;
    font: 40px Bebas Neue, sans-serif;
  }
  
  .room-image {
    object-fit: auto;
    object-position: center;
    width: 100%;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    align-self: stretch;
    margin-top: 30px;
  }
  
  .room-details {
    color: var(--bckgrnd-footer, #0f7392);
    text-align: center;
    letter-spacing: 1.6px;
    margin-top: 30px;
    font: 16px Inria Sans, sans-serif;
  }
  
  .room.standard-room .room-content {
      padding: 20px 20px;
  }
  
  .room.standard-room .room-image {
    max-height: 500px;
  }
  
  .room.dorm-room .room-content {
    padding: 20px 20px;
  }
  
  .room.dorm-room .room-image {
    margin-top: 50px;
  }
  
  @media (max-width: 991px) {
    .room.dorm-room .room-image {
      margin-top: 40px;
    }
  }
  
  .room.dorm-room .room-details {
    width: 273px;
    margin-top: 60px;
  }
  
  @media (max-width: 991px) {
    .room.dorm-room .room-details {
      margin-top: 40px;
    }
  }
  
  .room.other-room .room-content {
    padding: 20px 20px;
  }
  
  .room.other-room .room-image {
    margin-top: 30px;
  }
  
  .room.other-room .room-details {
    margin-top: 30px;
  }
  
  .room-note {
    color: #093513;
    text-align: center;
    letter-spacing: 1.4px;
    margin-top: 40px;
    font: 400 14px Inder, sans-serif;
  }
  
  @media (max-width: 991px) {
    .room-note {
      max-width: 100%;
      margin-top: 40px;
    }
  }
  
  /* GALLERY */
  
  #gallery-section {
    background-color: #f9ead3;
    display: flex;
    flex-direction: column;
    padding: 20px 10px 40px;
  }
  
  @media (max-width: 991px) {
    #gallery-section {
        padding: 20px 20px;
    }
  }
  
  .content-wrapper-gallery {
    justify-content: center;
    border-radius: 50px;
    background-color: #60C0E8;
    /* #c6c949 */
    display: flex;
    flex-direction: column;
    padding: 20px 25px 20px;
  }
  
  .gallery-title {
    color: #000;
    text-align: center;
    letter-spacing: 4px;
    font: 400 40px Bebas Neue, sans-serif;
  }
  
  @media (max-width: 991px) {
    .title {
        max-width: 100%;
    }
  }
  
  .gallery-divider {
    background-color: #043342;
    margin-top: 26px;
    height: 3px;
  }
  
  @media (max-width: 991px) {
    .gallery-divider {
        max-width: 100%;
    }
  }
  
  .gallery-images {
    display: flex;
    margin: 0px 0px 0px;
    gap: 0px;
    justify-content: right;
  }
  
  @media (max-width: 991px) {
    .gallery-images {
        flex-wrap: wrap;
    }
  }
  
  @media (max-width: 991px) {
    .images-group {
        flex-wrap: wrap;
    }
  }
  
  .image {
    width: 94px;
    height: 75px;
  }
  
  .orange-image {
    background-color: #ffb342;
  }
  
  .green-image {
    background-color: #7b8e0a;
  }
  
  .lime-image {
    background-color: #c6c949;
  }
  
  .blue-image {
    background-color: #4890c0;
  }
  
  .light-blue-image {
    background-color: #61b9f5;
  }
  
  .navy-image {
    background-color: #132e41;
  }
  
  .gallery-description {
    color: #054810;
    letter-spacing: 1.5px;
    text-align: left;
    margin: auto 0;
    font: 400 34px Bebas Neue, sans-serif;
  }
  
  @media (max-width: 991px) {
    .gallery-description {
        max-width: 100%;
    }
  }
  
  .block-color {
    background: linear-gradient(56deg, #FFB342 0%, #C6C949 34%, #61B9F5 77.34%, #153348 100%);
    width: 470px;
    height: 50px;
    padding: 1px 1px;
    margin: 5px 0px 10px;
  }
  
  .shared-spaces {
    justify-content: space-between;
    display: flex;
    margin-top: 0px;
    gap: 40px;
    font-size: 40px;
    color: #000;
    font-weight: 400;
    text-align: center;
    letter-spacing: 3.4px;
    font-family: Bebas Neue, sans-serif;
  }
  
  @media (max-width: 991px) {
    .shared-spaces {
        max-width: 100%;
        flex-wrap: wrap;
    }
  }
  
  /* STARS */
  
  a.big {
      max-height: min-content;
      position: sticky;
  }
  
  .stars {
    /* background: linear-gradient(56deg, #FFB342 0%, #C6C949 34%, #61B9F5 77.34%, #153348 100%); */
    background-color: #000;
    text-align: center;
    margin: 30px 0px 30px;
    border-radius: 10px; 
  }
  
  .stars-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  grid-auto-rows: minmax(50px, auto);
  gap: 3px;
  margin: 7px;
  height: min-content;
  }
  
  .stars-gallery img {
  max-width: 100%;
  min-height: 100%;
  object-fit: cover;
  }
  
  /* FAQ SECTION */
  
  .faq-section {
      position: relative;
      width: 100%;
      margin: 0px auto;
      background-color: #FBF6ED;
      
      padding: 40px;
      overflow: hidden;
    }
    
    .faq-section::before {
      content: '';
      position: absolute;
      top: 0px;
      left: 0px;
      right: 0px;
      bottom: 0px;
      background-color: var(--primaryalt-color);
      z-index: -1;
      border-radius: 50px;
    }
  
  .faq-title {
      margin-top: 10px;
      text-align: center;
      font: 400 34px Bebas Neue, sans-serif;
  }
  
  @media (max-width: 991px) {
    .faq-title {
      max-width: 100%;
    }
  }
  
  .faq-subtitle {
    margin-top: 4px;
    font: 300 14px Inria Sans, sans-serif;
    text-align: center;
  }
  
  @media (max-width: 991px) {
    .faq-subtitle {
      max-width: 100%;
    }
  }
  
  #faq-margin {
    margin-bottom: 90px;
  }
  
  .toggle:last-child {
    border-bottom: 1px solid #dddddd;
  }
  
  .toggle .toggle-title {
    position: relative;
    display: block;
    border-top: 1px solid #dddddd;
    margin-bottom: 6px;
    cursor: pointer;
  }
  
  .toggle .toggle-title h3 {
    font-size: 20px;
    margin: 0px;
    line-height: 1;
    cursor: pointer;
    font: 700 20px Inria Sans, sans-serif;
  }
  
  .toggle .toggle-inner {
    padding: 7px 25px 10px 25px;
    display: none;
    margin: -7px 0 6px;
  }
  
  .toggle .toggle-title .title-name {
    display: block;
    padding: 25px 25px 14px;
  }
  
    
  /* FOOTER STUFF */
    
  #footer-section {
      background-color: #0f7392;
      display: flex;
      width: 100%;
      flex-direction: column;
      align-items: center;
      font-size: 16px;
      color: #000;
      font-weight: 400;
      padding: 0 20px 51px;
    }
  
    .footer-heading {
      background-color: #ffa500;
      border-radius: 0px 0px 20px 20px;
      align-self: stretch;
      width: 100%;
      text-align: center;
      letter-spacing: 1.6px;
      padding: 19px 60px;
      font: 28px Bebas Neue, sans-serif;
    }
  
    @media (max-width: 991px) {
      .footer-heading {
        max-width: 100%;
        padding: 0 20px;
      }
    }
  
    .footer-link {
      font-family: Inria Sans, sans-serif;
      margin-top: 23px;
      color: #f3f3f3;
    }
  
    .footer-contact {
      text-align: center;
      font-family: Inria Sans, sans-serif;
      font-weight: 300;
      margin-top: 23px;
      color: #fff;
    }
  
    .footer-address {
      text-align: center;
      font-family: Inria Sans, sans-serif;
      font-weight: 300;
      margin-top: 23px;
      color: #fff;
    }
  
    .footer-logo {
      color: #f3f3f3;
      margin-top: 34px;
      font: 8px Inder, sans-serif;
    }