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

main {
}

.hero-section {
  color: white;
  padding: 20px;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("/images/index/hero-section/hero.jpeg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

h1 {
  font-size: 32px;
  margin-bottom: 16px !important;
  line-height: 1.3;
  font-weight: 900;
}

h1 span {
  color: #904141;
  font-weight: bolder;
}

.hero-section p {
  font-weight: 400;
  margin-bottom: 38px;
  line-height: 1.8;
}

.hero-section .explore-btn {
  background-color: transparent;
  border: 2px solid white;
  padding: 6px 12px;
  border-radius: 6px;
  margin-bottom: 38px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.hero-section .explore-btn:hover {
  /* background-color: white; */
  color: #904141;
}

/* amenities section */

.amenities {
  margin-top: 46px;
}
.amenities-intro {
  text-align: center;
}

.amenities-intro h2 {
  margin-bottom: 16px;
  font-size: 24px;
}
.amenities-intro p {
  color: #5f5f5f;
  width: 90%;
  margin: 0 auto;
  font-weight: 500;
  line-height: 1.4;
  font-size: 14px;
}

.amenities-list {
  width: 90%;
  margin-top: 16px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 25px;
  row-gap: 20px;
}

.amenitie-item {
  background-color: white;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  padding: 8px 12px 16px 12px;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.05),
    0 4px 12px rgba(0, 0, 0, 0.08);
}

.amenitie-item .icon {
  width: 40px;
  height: 40px;
  background-color: #feebe7;
  border-radius: 50%;
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.amenitie-item h5 {
  font-size: 14px;
  font-weight: 600;
  margin-top: 4px;
}

.amenitie-item p {
  margin-top: 8px;
  font-size: 12px;
  color: #5f5f5f;
  line-height: 1.35;
}

.learn-more-align {
  width: 90%;
  margin-left: auto;
  margin-right: auto;

  margin-top: 18px;
}

.learn-more-btn {
  background-color: #904141;
  color: white;
  padding: 6px 12px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s;
}

.learn-more-btn:hover {
  background-color: #7a3636;
}

/* special room section */
.special-room {
  margin-top: 48px;

  padding: 0 20px;
}

.special-room h2 {
  font-size: 24px;
  color: red;
}

.standard-room-pic {
  height: 300px;
  margin-top: 18px;
  display: grid;
  grid-template: repeat(2, 1fr) / repeat(2, 1fr);
  gap: 16px;
}

.standard-room-pic .image1,
.standard-room-pic .image2,
.standard-room-pic .image3 {
  position: relative;
  overflow: visible;
}

.standard-room-pic .image2 img {
  max-width: 100%;
  height: auto;
}

.standard-room-pic .image1 {
  grid-column: 1 / span 1;
  grid-row: 1 / span 2;
  overflow: visible;
  border-radius: 8px;
  background-color: #f8f9fa;
}

.standard-room-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 8px;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

.standard-room-pic .image2 {
  overflow: hidden;

  border-radius: 8px;
  background-color: #f8f9fa;
}

.standard-room-pic .image3 {
  overflow: hidden;
  border-radius: 8px;
  background-color: #f8f9fa;
}

.standard-room-pic .image3 img {
  height: 100%;
}

/* Love emoji animation */
.love-emoji {
  position: absolute;
  font-size: 24px;
  pointer-events: none;
  z-index: 1000;
  animation: loveFloat 2s ease-out forwards;
  user-select: none;
}

@keyframes loveFloat {
  0% {
    opacity: 0;
    transform: scale(0) translateY(0);
  }
  15% {
    opacity: 1;
    transform: scale(1.2) translateY(-10px);
  }
  30% {
    transform: scale(1) translateY(-20px);
  }
  100% {
    opacity: 0;
    transform: scale(0.8) translateY(-80px);
  }
}

.standard-benefits {
  margin-top: 16px;
  background-color: white;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.05),
    0 4px 12px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 12px;
  position: relative;
}

.standard-benefits .phrase {
  color: #5f5f5f;
  font-size: 13px;
  margin-top: px;
}
.standard-benefits .benefits {
  display: flex;
  flex-direction: column;
  /* background-color: rebeccapurple; */
  gap: 3px;
  font-size: 12px;
  margin-top: 24px;
  color: #5f5f5f;
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 16px;
}
.standard-benefits h4 {
  font-size: 16px;
  font-weight: 500;
  color: black;
  margin-bottom: 4px;
}
.standard-benefits .icon_benefit {
  display: flex;
  gap: 12px;
  font-size: 14px;
  /* background-color: green; */
}

.standard-benefits .icon_benefit svg {
  width: 24px;
  height: 24px;
}

.book-now-btn {
  background-color: #904141;
  border: none;
  padding: 6px 12px;
  margin-top: 12px;
  color: white;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.book-now-btn:hover {
  background-color: #7a3636;
}

.location {
  margin-top: 24px;
}
.location .address_phoneNumber {
  padding: 24px;
  color: #5f5f5f;
  font-size: 14px;
  font-weight: 600;
}

h2 {
  font-weight: 600 !important;
  color: black !important;
}

.address {
  margin-top: 9px;
  margin-bottom: 3px;
}

.map {
  height: 400px;
  border-radius: 8px;
  /* overflow: hidden; */
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
}

.desktop-standard-special-room {
  display: none;
}

.price {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 12px;
  font-weight: 500;
  color: black;
}
/* responsive design - tablets 576-992 */

@media (min-width: 576px) and (max-width: 991px) {
  .hero-section {
    height: 400px;
  }
  h1 {
    font-size: 60px;
  }

  .hero-section p {
    font-size: 22px;
    margin-top: 20px;
  }

  .hero-section .explore-btn {
    padding: 8px 14px;
    font-size: 19px;
    margin-top: 60px;
  }

  /* amenities section */
  .amenities-list {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .amenities-intro p {
    font-size: 21px;
  }

  .amenitie-item p {
    font-size: 18px;
  }

  .amenitie-item h5 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 4px;
    /* background-color: rebeccapurple; */
  }

  .amenitie-item .icon {
    width: 45px;
    height: 45px;
  }
  .amenitie-item .icon svg {
    width: 30px;
    height: 30px;
  }

  .learn-more-btn {
    padding: 8px 14px;
    font-size: 19px;
    margin-top: 35px;
  }

  .standard-room-pic {
    display: grid;
    height: 600px;
    gap: 24px;
  }

  /* Larger love emojis for tablets */
  .love-emoji {
    font-size: 32px;
  }

  .standard-benefits .benefits svg {
    width: 30px;
    height: 30px;
  }

  .standard-benefits h4 {
    font-size: 26px;
  }

  .standard-benefits .icon_benefit {
    font-size: 18px;
  }
  .standard-benefits .phrase {
    font-size: 20px;
  }
  .book-now-btn {
    padding: 8px 14px;
    font-size: 19px;
  }

  .location .address_phoneNumber {
    font-size: 20px;
  }
  .price {
    top: 20px;
    right: 20px;
    font-size: 16px;
  }
}

/* responsive design - for desktop */
@media (min-width: 991px) {
  .hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 85vh;
    margin-bottom: 90px;
  }
  h1 {
    font-size: 50px !important;
    margin-bottom: 30px !important;
  }

  .hero-section p {
    font-size: 18px !important;
    margin-bottom: 90px;
  }
  .hero-section .explore-btn {
    padding: 8px 16px;
    font-size: 18px;
  }

  h2 {
    font-size: 30px !important;
  }
  .amenities-intro p {
    font-size: 18px !important;
    /* color: red; */
  }
  .amenitie-item .icon {
    width: 50px;
    height: 50px;
  }
  .amenitie-item .icon svg {
    height: 25px;
    width: 25px;
  }

  .amenities-list {
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 50px;
    gap: 30px;
    margin-bottom: 50px;
  }

  .amenitie-item h5 {
    font-size: 18px;
    margin-top: 6px;
  }
  .amenitie-item p {
    font-size: 14px !important;
  }
  .learn-more-btn {
    margin-top: 0px !important;
    padding: 6px 14px !important;
    font-size: 18px !important;
  }

  .special-room h2 {
    margin-bottom: 35px;
  }
  .special-room {
    margin-top: 75px;
    text-align: center;
  }

  .standard-room-pic {
    /* display: none; */
  }

  .standard-benefits {
    /* background-color: red; */
    padding: 12px;
  }

  .standard-benefits .benefits {
    /* background-color: red; */
  }
  .standard-benefits .icon_benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px !important;
  }
  .standard-benefits h4 {
    font-size: 22px;
  }

  .icon_benefit svg {
    width: 25px;
    height: 25px;
    display: block;
  }
  .icon_benefit p {
    font-size: 16px;
    /* color: red; */
  }
  .standard-benefits .phrase {
    font-size: 18px;
  }

  .book-now-btn {
    padding: 8px 16px;
    font-size: 19px;
    margin-top: 35px;
  }
  .learn-more-btn {
    padding: 8px 16px;
    font-size: 19px;
  }

  .address_phoneNumber {
    font-size: 24px !important;
  }

  .standard-benefits .benefits {
    display: flex;
    font-size: 14px;
  }
  .standard-benefits .icon_benefit {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .map {
    height: 400px;
  }

  .address_phoneNumber p {
    font-size: 17px;
  }

  .price {
    top: 10px;
    right: 10px;
    font-size: 16px;
  }

  .desktop-design {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .standard-room-pic {
    height: 570px;
  }
}

/* Map Loader */
.map {
  position: relative;
}

.map-loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f5f5f5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  z-index: 10;
}

.map-loader p {
  margin-top: 16px;
  color: #5f5f5f;
  font-size: 14px;
  font-weight: 500;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #e0e0e0;
  border-top: 4px solid #904141;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
