body {
  margin: 0;
  font-family: 'Lora', serif;
  position: relative;
  background-color: #f5e6df;
}

body::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/images/textures/texture-5.webp");
  background-repeat: repeat;
  background-size: auto;
  pointer-events: none;
  z-index: 0;
}

body > * {
  position: relative;
  z-index: 1;
}




/* ===== GLOBAL ===== */
* {
  -webkit-tap-highlight-color: transparent;
}




/* ====== HEADER ====== */
header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  margin-top: 1rem;
  margin-right: 4rem;
  margin-bottom: 0;
  margin-left: 4rem;
  display: flex;
  align-items: center;
}

/* --- Logo --- */
.header-logo img {
  height: 45px;
  width: auto;
  transform: translateY(3.3px);
  transition: transform 0.4s ease;
}

.header-logo img:hover {
  transform: translateY(2px) rotate(360deg) scale(1.2);
}

/* --- Navigation --- */
.header-nav {
  margin: 0 auto;
}

.header-nav ul {
  display: flex;
  gap: 5rem;
  padding: 0;
}

.header-nav li {
  list-style: none;
}

.header-nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  text-shadow: 1px 1px 5px black;
  position: relative;
}

.header-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: white;
  transition: width 0.5s ease;
}

.header-nav a:hover::after {
  width: 100%;
}

/* --- CTA --- */
.header-cta {
  background-color: #d56a3c;
  color: white;
  font-weight: 700;
  text-decoration: none;
  text-shadow: 1px 1px 5px black;
  padding: 8px 18px;
  border-radius: 6px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.header-cta:hover {
  transform: translateY(-2px) scale(1.05);
  filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.5));
}

.header-cta:active {
  transform: translateY(1px) scale(0.98);
  filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.4));
}

/* --- Mobile Menu Button --- */
header button {
  display: none;
}

/* --- 1400px - 1201px --- */
@media (min-width: 1201px) and (max-width: 1400px) {
  .header-logo img {
    transform: translateY(3.3px);
  }

  .header-nav ul {
    gap: 4rem;
  }

  header button {
    display: none;
  }
}

/* --- 1200px - 993px --- */
@media (min-width: 993px) and (max-width: 1200px) {
  .header-logo img {
    transform: translateY(3.3px);
  }

  .header-nav ul {
    gap: 3rem;
  }

  header button {
    display: none;
  }
}

/* --- 992px - 769px --- */
@media (min-width: 769px) and (max-width: 992px) {
  .header-nav,
  .header-cta {
    display: none;
  }

  header {
    justify-content: space-between;
    margin-left: 4rem;
    margin-right: 4rem;
  }

  .header-logo {
    -webkit-tap-highlight-color: transparent;
  }

  .header-logo img {
    transform: translateY(4px);
  }

  .header-nav {
    position: absolute;
    top: 55px;
    right: 0;
    width: 128px;
    background: transparent;
  }

  .header-nav ul {
    display: flex;
    flex-direction: column;
    padding-left: 4rem;
    gap: 1rem;
  }

  .header-nav.active {
    display: block;
  }

  header button {
    display: block;
    font-size: 2rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.1s ease;
  }

  header button:active {
    transform: scale(0.95);
  }
}

/* --- 768px - 577px --- */
@media (min-width: 577px) and (max-width: 768px) {
  .header-nav,
  .header-cta {
    display: none;
  }

  header {
    justify-content: space-between;
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .header-logo {
    -webkit-tap-highlight-color: transparent;
  }

  .header-logo img {
    transform: translateY(4px);
  }

  .header-nav {
    position: absolute;
    top: 55px;
    right: 0;
    width: 112px;
    background: transparent;
  }

  .header-nav ul {
    display: flex;
    flex-direction: column;
    padding-left: 3rem;
    gap: 1rem;
  }

  .header-nav.active {
    display: block;
  }

  header button {
    display: block;
    font-size: 2rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.1s ease;
  }

  header button:active {
    transform: scale(0.95);
  }
}

/* --- 576px - Below --- */
@media (max-width: 576px) {
  .header-nav,
  .header-cta {
    display: none;
  }

  header {
    justify-content: space-between;
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .header-logo {
    -webkit-tap-highlight-color: transparent;
  }

  .header-logo img {
    transform: translateY(4px);
  }

  .header-nav {
    position: absolute;
    top: 55px;
    right: 0;
    width: 100px;
    background: transparent;
  }

  .header-nav ul {
    display: flex;
    flex-direction: column;
    padding-left: 2rem;
    gap: 1rem;
  }

  .header-nav.active {
    display: block;
  }

  header button {
    display: block;
    font-size: 2rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.1s ease;
  }

  header button:active {
    transform: scale(0.95);
  }
}




/* ====== HERO ====== */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

/* --- Images --- */
.hero-images {
  position: absolute;
  inset: 0;
}

.hero-images img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.hero-images img.active {
  opacity: 1;
}

/* --- Content --- */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  color: white;
}

.hero-content h1 {
  font-size: 4rem;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.4),
    0 6px 12px rgba(0, 0, 0, 0.5),
    0 12px 24px rgba(0, 0, 0, 0.6);
  margin-bottom: 0;
}

.hero-content p {
  margin-top: 0;
  margin-bottom: 1.7rem;
  font-weight: 400;
}

.hero-content a {
  display: inline-block;
  background-color: #d56a3c;
  color: white;
  font-weight: 700;
  text-decoration: none;
  text-shadow: 1px 1px 5px black;
  padding: 8px 18px;
  border-radius: 6px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.hero-content a:hover {
  transform: translateY(-2px) scale(1.05);
  filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.5));
}

.hero-content a:active {
  transform: translateY(1px) scale(0.98);
  filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.4));
}

/* --- Dots --- */
.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.dot:hover {
  transform: scale(1.2);
  background-color: white;
}

.dot.active {
  background-color: white;
  transform: scale(1.3);
}

/* --- Breakpoints --- */
@media (min-width: 993px) and (max-width: 1400px) {
  .hero-content h1 {
    font-size: 3.2rem;
  }
}

@media (min-width: 577px) and (max-width: 992px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .guest-house {
    font-size: 1.9rem;
    display: block;
    margin-bottom: 0.5rem;
  }

  .hero-content p{
    margin-bottom: 0.8rem;
  }

}




/* ====== ABOUT ====== */
.about {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding: 3rem 3rem;
}

/* --- Text --- */
.about-text {
  flex: 1;
}

.about-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  color: #000;
}

/* --- Image --- */
.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

/* --- Breakpoints --- */
@media (max-width: 992px) {
  .about-text h1 {
    text-align: center;
  }

  .about-image {
    display: none;
  }
}




/* ===== APARTMENTS ===== */
.apartments {
  position: relative;
  background-color: #fff8f4;
  padding: 3rem 3rem;
  overflow: hidden;
  border-top-left-radius: 75px;
  border-top-right-radius: 75px;
}

.apartments::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/images/textures/texture-3.webp");
  background-repeat: repeat;
  background-size: auto;
  pointer-events: none;
  z-index: 0;
}

.apartments > * {
  position: relative;
  z-index: 1;
}

/* --- Title --- */
.apt-title {
  text-align: center;
  margin-bottom: 3rem;
}

.apt-title h1 {
  font-size: 3rem;
  margin-top: 0;
  margin-bottom: 0.3rem;
  color: #2b1e19;
}

.apt-title p {
  font-size: 1rem;
  color: #2a2a2a;
  margin: 0;
}


/* --- Apartment Cards --- */
.apt-cards {
  display: flex;
  justify-content: center;
  gap: 8rem;
  flex-wrap: wrap;
}

.apt {
  flex: 0 1 460px;
  position: relative;
  background-color: #fff7f3;
  border-radius: 24px;
  overflow: hidden;
  padding: 1.25rem;
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.08),
    0 30px 60px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.apt::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/images/textures/texture-1.webp");
  background-repeat: repeat;
  background-size: auto;
  pointer-events: none;
  z-index: 0;
}

.apt > * {
  position: relative;
  z-index: 1;
}

.apt-images {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 18px;
  position: relative;
}

.apt-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: none;
}

.apt-images img.active {
  display: block;
}

.apt-info,
.apt-features,
.apt-actions {
  margin-top: 1.25rem;
}

.apt-info h3 {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
  color: #2b1e19;
}

.apt-info p:first-of-type {
  font-size: 1.4rem;
  font-weight: 700;
  color: #d56a3c;
  margin-bottom: 1rem;
}

.apt-info p:last-of-type {
  color: #2a2a2a;
  line-height: 1.7;
}

.apt-features h4 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: #2b1e19;
}

.apt-features ul {
  padding-left: 1.25rem;
  margin: 0;
}

.apt-features li {
  margin-bottom: 0.5rem;
  color: #5f4a42;
  line-height: 1.4;
}

.apt-actions a {
  display: block;
  width: fit-content;
}

.check-availability {
  background-color: #d56a3c;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 0.85rem 1.6rem;
  border-radius: 12px;
  display: block;
  margin: 1.8rem auto 1rem;
  box-shadow: 0 4px 10px rgba(213, 106, 60, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.check-availability:hover {
  transform: scale(1.04);
}

.check-availability:active {
  transform: scale(0.97);
}

.view-photos {
  display: block;
  text-align: center;
  margin: 0 auto;
  padding-bottom: 1rem;
  color: #b65a33;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s ease;
}

.view-photos:hover {
  color: #8f4324;
}

/* ===== Large Screens (Tightened Desktop Layout) ===== */
@media (min-width: 1201px) and (max-width: 1400px) {
  .apt-cards {
    gap: 4rem;
  }

  .apt {
    flex: 0 1 420px;
  }

  .apt-images {
    height: 280px;
  }
}

/* ===== Medium Screens (Compact Desktop / Tablet Landscape) ===== */
@media (min-width: 993px) and (max-width: 1200px) {
  .apt-cards {
    gap: 3rem;
  }

  .apt {
    flex: 0 1 380px;
    padding: 1.1rem;
  }

  .apt-images {
    height: 260px;
  }

  .apt-title h1 {
    font-size: 2.6rem;
  }
}

/* ===== Tablet Portrait (Stacked Layout - Fix Overflow) ===== */
@media (min-width: 769px) and (max-width: 992px) {
  .apt-cards {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }

  .apt {
    width: 100%;
    max-width: 600px;
    height: auto;
    overflow: visible;
    padding: 1.1rem;
  }

  .apt-images {
    height: 280px;
    overflow: hidden;
  }

  .apt-title h1 {
    font-size: 2.4rem;
  }
}

/* ===== Large Mobile / Small Tablet (Compact Stacked Cards) ===== */
@media (min-width: 577px) and (max-width: 768px) {
  .apartments {
    padding: 2.5rem 1.5rem;
  }

  .apt {
    padding: 1rem;
    height: auto;
    overflow: visible;
  }

  .apt-images {
    height: 240px;
    overflow: hidden;
  }

  .apt-info h3 {
    font-size: 1.6rem;
  }

  .apt-title h1 {
    font-size: 2.2rem;
  }

  .check-availability {
    padding: 0.75rem 1.4rem;
  }
}

/* ===== Mobile (Full Width, Touch-Friendly, Optimized Readability) ===== */
@media (max-width: 576px) {
  .apartments {
    padding: 2rem 1rem;
  }

  .apt-title h1 {
    font-size: 2rem;
  }

  .apt-title p {
    font-size: 0.95rem;
  }

  .apt {
    padding: 0.9rem;
    border-radius: 18px;
    height: auto;
    overflow: visible;
  }

  .apt-images {
    height: 200px;
    overflow: hidden;
  }

  .apt-info h3 {
    font-size: 1.4rem;
  }

  .apt-info p:first-of-type {
    font-size: 1.2rem;
  }

  .apt-info p:last-of-type {
    font-size: 0.95rem;
  }

  .apt-features li {
    font-size: 0.9rem;
  }

  .check-availability {
    width: 100%;
    text-align: center;
  }

  .view-photos {
    font-size: 0.95rem;
  }
}




/* ===== AMENITIES & BOOKING DETAILS ===== */
.amenities-details {
  display: flex;
  background:
    linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url("../images/1-bedroom/webpage/image14.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* --- Amenities --- */
.amenities {
  flex: 1;
  background-color: rgba(245, 230, 223, 0.9);
  border-radius: 5rem;
}

.amenities h2 {
  text-align: center;
  font-size: 2.3rem;
  padding-top: 3rem;
  position: relative;
  width: fit-content;
  margin: 0 auto;
}

.amenities h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background-color: black;
}

.amenities ul {
  margin-top: 4rem;
  margin-left: 6rem;
  line-height: 3rem;
  list-style: none;
}

.amenities li::before {
  content: "✅ ";
}

.amenities li {
  font-size: 1.1rem;
}

.amenities-container {
  padding-top: 8.5rem;
}

.amenities a {
  display: block;
  text-align: center;
  font-weight: 600;
  color: black;
  letter-spacing: 2px;
  text-decoration: none;
  position: relative;
  width: fit-content;
  margin: 0 auto;
  transition: color 0.3s ease;
}

.amenities a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background-color: black;
}

.amenities a:hover {
  color: #b65a33;
}

.amenities a:hover::after {
  background-color: #b65a33;
}

/* --- Booking Details --- */
.booking-details {
  flex: 1;
  background-color: rgba(255, 248, 244, 0.9);
  border-radius: 5rem;
  padding-bottom: 3rem;
}

.booking-details h2 {
  text-align: center;
  font-size: 2.3rem;
  padding-top: 3rem;
  position: relative;
  width: fit-content;
  margin: 0 auto;
}

.booking-details h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background-color: black;
}

.details-container {
  margin-top: 2.5rem;
  margin-left: 6rem;
}

.details ul {
  list-style: none;
}

.details li::before {
  content: "📌 ";
}

.booking-details a {
  display: block;
  text-align: center;
  padding-top: 1.3rem;
  font-weight: 600;
  color: black;
  letter-spacing: 2px;
  text-decoration: none;
  position: relative;
  width: fit-content;
  margin: 0 auto;
  transition: color 0.3s ease;
}

.booking-details a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background-color: black;
}

.booking-details a:hover {
  color: #b65a33;
}

.booking-details a:hover::after {
  background-color: #b65a33;
}

/* =============================== */
/* 1201px - 1400px */
/* =============================== */
@media (min-width: 1201px) and (max-width: 1400px) {
  .amenities ul {
    margin-left: 4.5rem;
  }

  .details-container {
    margin-left: 4.5rem;
  }
}

/* =============================== */
/* 993px - 1200px */
/* =============================== */
@media (min-width: 993px) and (max-width: 1200px) {
  .amenities ul {
    margin-left: 3.5rem;
    margin-top: 3.5rem;
  }

  .details-container {
    margin-left: 3.5rem;
    margin-top: 2rem;
  }
}

/* =============================== */
/* 769px - 992px */
/* =============================== */
@media (min-width: 769px) and (max-width: 992px) {
  .amenities-details {
    flex-direction: column;
  }

  .amenities,
  .booking-details {
    width: 100%;
  }

  .amenities h2,
  .booking-details h2 {
    font-size: 1.9rem;
  }

  .amenities ul {
    margin-left: 3rem;
    margin-top: 3rem;
  }

  .details-container {
    margin-left: 3rem;
    margin-top: 3rem;
  }

  .details h3 {
    font-size: 1.4rem;
  }

  .amenities-container {
    padding-top: 4rem;
    padding-bottom: 2rem;
  }
}

/* =============================== */
/* 577px - 768px */
/* =============================== */
@media (min-width: 577px) and (max-width: 768px) {
  .amenities-details {
    flex-direction: column;
  }

  .amenities,
  .booking-details {
    width: 100%;
  }

  .amenities h2,
  .booking-details h2 {
    font-size: 1.9rem;
  }

  .amenities ul {
    margin-left: 3rem;
    margin-top: 3rem;
  }

  .details-container {
    margin-left: 3rem;
    margin-top: 3rem;
  }

  .details h3 {
    font-size: 1.4rem;
  }

  .amenities-container {
    padding-top: 4rem;
    padding-bottom: 2rem;
  }
}

/* =============================== */
/* max-width: 576px */
/* =============================== */
@media (max-width: 576px) {
  .amenities-details {
    flex-direction: column;
  }

  .amenities,
  .booking-details {
    width: 100%;
  }

  .amenities h2,
  .booking-details h2 {
    font-size: 1.5rem;
    padding-top: 2rem;
  }

  .amenities ul {
    margin-left: 1.5rem;
    margin-top: 2rem;
    line-height: 2rem;
  }

  .details-container {
    margin-left: 1.5rem;
    margin-top: 1.5rem;
  }

  .details h3 {
    font-size: 1.15rem;
  }

  .amenities li,
  .details li {
    font-size: 0.9rem;
  }

  .amenities-container {
    padding-top: 3rem;
    padding-bottom: 1.5rem;
  }

  .amenities a,
  .booking-details a {
    font-size: 0.85rem;
  }
}




/* ===== LOCATION ===== */
.location {
  position: relative;
  background-color: #fff8f4;
  padding-bottom: 4rem;
  overflow: hidden;
}

.location::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/images/textures/texture-3.webp");
  background-repeat: repeat;
  background-size: auto;
  pointer-events: none;
  z-index: 0;
}

.location > * {
  position: relative;
  z-index: 1;
}

.location h1 {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 3rem;
  text-align: center;
  font-size: 3rem;
}

.location p {
  text-align: center;
  margin-top: 0;
}

.location iframe {
  display: block;
  margin: 0 auto;
  margin-top: 2rem;
  border-radius: 16px;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.35),
    0 10px 25px rgba(0, 0, 0, 0.25),
    0 2px 8px rgba(0, 0, 0, 0.15);
}

/* =============================== */
/* 1201px - 1400px */
/* =============================== */
@media (min-width: 1201px) and (max-width: 1400px) {
  .location h1 {
    font-size: 2.7rem;
    padding-top: 2.8rem;
  }

  .location p {
    font-size: 1.1rem;
    padding: 0 2rem;
  }

  .location iframe {
    width: 90%;
    height: 430px;
    margin-top: 1.8rem;
  }
}

/* =============================== */
/* 993px - 1200px */
/* =============================== */
@media (min-width: 993px) and (max-width: 1200px) {
  .location {
    padding-bottom: 3.5rem;
  }

  .location h1 {
    font-size: 2.4rem;
    padding-top: 2.5rem;
  }

  .location p {
    font-size: 1.05rem;
    padding: 0 2rem;
  }

  .location iframe {
    width: 90%;
    height: 400px;
    margin-top: 1.8rem;
  }
}

/* =============================== */
/* 769px - 992px */
/* =============================== */
@media (min-width: 769px) and (max-width: 992px) {
  .location {
    padding-bottom: 3rem;
  }

  .location h1 {
    font-size: 2.1rem;
    padding-top: 2.3rem;
  }

  .location p {
    font-size: 1rem;
    padding: 0 1.5rem;
    line-height: 1.5;
  }

  .location iframe {
    width: 92%;
    height: 360px;
    margin-top: 1.6rem;
    border-radius: 14px;
  }
}

/* =============================== */
/* 577px - 768px */
/* =============================== */
@media (min-width: 577px) and (max-width: 768px) {
  .location {
    padding-bottom: 2.8rem;
  }

  .location h1 {
    font-size: 1.8rem;
    padding-top: 2rem;
    line-height: 1.2;
  }

  .location p {
    font-size: 0.95rem;
    padding: 0 1.2rem;
    line-height: 1.5;
  }

  .location iframe {
    width: 92%;
    height: 300px;
    margin-top: 1.4rem;
    border-radius: 12px;
  }
}

/* =============================== */
/* 576px and below */
/* =============================== */
@media (max-width: 576px) {
  .location {
    padding-bottom: 2.5rem;
  }

  .location h1 {
    font-size: 1.5rem;
    padding-top: 1.8rem;
    line-height: 1.2;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .location p {
    font-size: 0.9rem;
    padding: 0 1rem;
    line-height: 1.5;
  }

  .location iframe {
    width: 94%;
    height: 240px;
    margin-top: 1.2rem;
    border-radius: 10px;
  }
}




/* ===== REVIEWS ===== */
.reviews {
  padding-top: 3rem;
  padding-left: 3rem;
  padding-right: 3rem;
  padding-bottom: 4rem;
}

/* --- Heading --- */
.reviews-heading h1 {
  text-align: center;
  font-size: 3rem;
  margin-top: 0;
  margin-bottom: 0;
}

.reviews-heading p {
  text-align: center;
  margin-top: 0;
}

/* --- Cards --- */
.review-cards-container {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.review-cards {
  flex: 1;
  position: relative;
  background-color: #fff7f3;
  padding-top: 1rem;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-bottom: 2rem;
  border-radius: 15px;
  box-shadow:
  0 30px 80px rgba(0, 0, 0, 0.25),
  0 15px 40px rgba(0, 0, 0, 0.18),
  0 5px 15px rgba(0, 0, 0, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}

.review-cards::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/images/textures/texture-1.webp");
  background-repeat: repeat;
  background-size: auto;
  pointer-events: none;
  z-index: 0;
}

.review-cards > * {
  position: relative;
  z-index: 1;
}

.review-cards:hover {
  transform: translateY(-6px);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.3),
    0 20px 50px rgba(0, 0, 0, 0.2),
    0 8px 20px rgba(0, 0, 0, 0.15);
}

.stars {
  font-size: 1.3rem;
  color: #E6A700;
}

.reviews-cards-content h4 {
  margin-bottom: 0;
}

.reviews-cards-content p {
  font-size: 0.9rem;
}

.google {
  position: relative;
  display: inline;
  text-decoration: none;
  font-size: 0.9rem;
  color: #1a73e8;
  transition: color 0.25s ease;
}

.google::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background-color: currentColor;
  transition: width 0.3s ease;
}

.google:hover {
  color: #0b3ea8;
}

.google:hover::after {
  width: 100%;
}

/* =============================== */
/* 1201px - 1400px */
/* =============================== */
@media (min-width: 1201px) and (max-width: 1400px) {
  .review-cards-container {
    gap: 2rem;
  }

  .review_cards {
    padding: 1.8rem;
  }

  .reviews-heading h1 {
    font-size: 2.7rem;
  }

  .reviews-heading p {
    font-size: 1.05rem;
  }
}

/* =============================== */
/* 993px - 1200px */
/* =============================== */
@media (min-width: 993px) and (max-width: 1200px) {
  .review-cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.8rem;
  }

  .review-cards {
    box-sizing: border-box;
    flex: 0 0 calc(50% - 0.9rem);
    padding: 1.6rem;
  }

  .reviews-heading h1 {
    font-size: 2.4rem;
  }

  .reviews-heading p {
    font-size: 1rem;
  }
}

/* =============================== */
/* 769px - 992px */
/* =============================== */
@media (min-width: 769px) and (max-width: 992px) {
  .review-cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .review-cards {
    box-sizing: border-box;
    flex: 0 0 calc(50% - 0.75rem);
    padding: 1.6rem;
  }

  .reviews {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .reviews-heading h1 {
    font-size: 2.1rem;
  }

  .reviews-heading p {
    font-size: 0.95rem;
  }
}

/* =============================== */
/* 577px - 768px */
/* =============================== */
@media (min-width: 577px) and (max-width: 768px) {
  .review-cards-container {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
  }

  .review-cards {
    box-sizing: border-box;
    flex: 0 0 100%;
    width: 100%;
  }

  .reviews {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .reviews-heading h1 {
    font-size: 2rem;
  }

  .reviews-heading p {
    font-size: 0.9rem;
  }

  .stars {
    font-size: 1.2rem;
  }
}

/* =============================== */
/* 576px and below */
/* =============================== */
@media (max-width: 576px) {
  .review-cards-container {
    flex-direction: column;
    gap: 1.2rem;
  }

  .review-cards {
    padding: 1.3rem;
  }

  .reviews {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 2.5rem;
    padding-bottom: 3rem;
  }

  .reviews-heading h1 {
    font-size: 1.9rem;
    line-height: 1.2;
  }

  .reviews-heading p {
    font-size: 0.85rem;
  }

  .stars {
    font-size: 1.1rem;
  }

  .google {
    font-size: 0.85rem;
  }
}




/* ===== CONTACT ===== */
.contact {
  display: flex;
  position: relative;
  background-color: #fff8f4;
  overflow: hidden;
  padding-top: 3rem;
  padding-left: 3rem;
  padding-bottom: 3rem;
  padding-right: 3rem;
  border-radius: 75px;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/images/textures/texture-3.webp");
  background-repeat: repeat;
  background-size: auto;
  pointer-events: none;
  z-index: 0;
}

.contact > * {
  position: relative;
  z-index: 1;
}

/* --- Image --- */
.contact-image {
  flex: 1;
}

.contact-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 100px;
  filter: sepia(20%) saturate(110%) hue-rotate(-10deg);
}

/* --- Text --- */
.contact-text {
  flex: 1;
}

.contact-heading h1 {
  text-align: center;
  font-size: 3.2rem;
  margin-bottom: 0;
}

.contact-heading p {
  text-align: center;
  margin-top: 0;
}

.contacts {
  margin-left: 2.5rem;
  margin-top: 2.5rem;
  line-height: 3.5rem;
  font-size: 1.2rem;
}

.contacts li {
  list-style: none;
}

.contacts span {
  font-weight: 600;
  font-size: 1.3rem;
}

.contacts a {
  text-decoration: none;
  color: black;
  transition: color 0.3s ease;
  position: relative;
}

.contacts a:hover {
  color: #1e3a8a;
}

.contacts a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}

.contacts a:hover::after {
  width: 100%;
}

/* =============================== */
/* 993px - 1200px */
/* =============================== */
@media (min-width: 993px) and (max-width: 1200px) {
.contacts span, .contacts a {
  font-size: 0.99rem;
}
}

/* =============================== */
/* 769px - 992px */
/* =============================== */
@media (min-width: 769px) and (max-width: 992px) {
  .contact-image {
    display: none;
  }
}

/* =============================== */
/* 577px - 768px */
/* =============================== */
@media (min-width: 577px) and (max-width: 768px) {
  .contact-image {
    display: none;
  }

  .contact-heading h1 {
    font-size: 3rem;
  }

  .contacts span, .contacts a {
    font-size: 0.99rem;
  }
}

/* =============================== */
/* 576px and below */
/* =============================== */
@media (max-width: 576px) {
  .contact-image {
    display: none;
  }

  .contact-heading h1 {
    font-size: 2.6rem;
  }

  .contacts {
    margin: 0 auto;
  }

  .contacts span, .contacts a {
    font-size: 0.90rem;
  }
}



/* ====== FOOTER ====== */
footer {
  padding-top: 2.5rem;
  padding-bottom: 0.2rem;
}

.footer-container {
  display: flex;
}

/* --- Logo --- */
.footer-logo {
  flex: 1;
}

.footer-logo img {
  width: 50px;
  height: auto;
  display: block;
  margin: 0 auto;
  transition: transform 0.4s ease;
}

.footer-logo img:hover {
  transform: translateY(2px) rotate(-360deg) scale(1.2);
}

.footer-logo h3 {
  text-align: center;
}

/* --- Address --- */
.footer-address {
  flex: 1;
}

.footer-address h3 {
  text-align: center;
}

.footer-address p {
  text-align: center;
}

/* --- Quick Links --- */
.quick-links {
  flex: 1;
}

.quick-links h3 {
  text-align: center;
}

.quick-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quick-links-list li {
  margin-left: 80px;
}

.quick-links-list a {
  text-decoration: none;
  color: black;
  transition: color 0.3s ease;
}

.quick-links-list a:hover {
  color: #d56a3c;
}

/* --- Contact --- */
.footer-contact {
  flex: 1;
}

.footer-contact h3 {
  text-align: center;
}

.contact-icons {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
  gap: 1rem;
}

.contact-icons svg {
  color: #b65a33;
  transition: color 0.3s ease;
}

.contact-icons svg:hover {
  color: #f7f3ef;
}

/* --- Credits --- */
.credits hr {
  margin-top: 2rem;
  height: 1px;
  background-color: black;
  border: none;
}

.credits p {
  text-align: center;
  transition: color 0.3s ease;
}

.credits p:hover {
  color: #b65a33;
}

/* --- 1400px - 1201px --- */
@media (min-width: 1201px) and (max-width: 1400px) {
  .quick-links-list li {
    margin-left: 65px;
  }

  .credits p {
    font-size: 0.95rem;
  }
}

/* --- 1200px - 993px --- */
@media (min-width: 993px) and (max-width: 1200px) {
  .quick-links-list li {
    margin-left: 50px;
  }

  .credits p {
    font-size: 0.95rem;
  }
}

/* --- 992px - 769px --- */
@media (min-width: 769px) and (max-width: 992px) {
  .footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .quick-links-list li {
    margin-left: 100px;
  }

  .credits p {
    font-size: 0.95rem;
  }
}

/* --- 768px - 577px --- */
@media (min-width: 577px) and (max-width: 768px)
{
  .footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .quick-links-list li {
    margin-left: 60px;
  }

  .credits p {
    font-size: 0.9rem;
  }
}

/* --- 576px - Below --- */
@media (max-width: 576px) {
  .footer-container {
    display: grid;
    grid-template-columns: 1fr;
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .footer-address h3 {
    text-align: left;
    margin-bottom: 0;
  }

    .footer-address p {
    text-align: left;
    margin-top: 0.2rem;
  }

  .quick-links h3 {
    text-align: left;
    margin-bottom: 0;
  }

  .quick-links-list li {
    padding: 0;
    margin: 0;
    text-align: left;
  }

  .footer-contact h3 {
    text-align: left;
  }

  .credits p {
    font-size: 0.9rem;
  }
}




/* ====== STANDARD SUITE GALLERY WEBPAGE ====== */
/* --- Hero --- */
.hero-1br {
  height: 70vh;
  background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url("/images/1-bedroom/webpage/image15.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  border-bottom-left-radius: 75px;
  border-bottom-right-radius: 75px;
}

.hero-1br h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3rem;
}

.hero-1br-subtext {
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.return-to-homepage {
  position: absolute;
  bottom: 35px;
  color: white;
  text-decoration: none;
  text-shadow:
  0 4px 10px rgba(0, 0, 0, 0.6),
  0 10px 25px rgba(0, 0, 0, 0.5);
}

.return-to-homepage p {
  margin: 0;
  padding: 0;
  position: relative;
  transition: transform 0.5s ease;
}

.return-to-homepage p:hover {
  transform: scale(1.05);
}

.return-to-homepage p::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}

.return-to-homepage p:hover::after {
  width: 100%;
}

/* --- Gallery --- */
.gallery-1br {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1rem;
}

.gallery-1br img {
  display: block;
  width: 100%;
  border-radius: 75px;
  filter: sepia(0.15) saturate(1.1) brightness(1.03);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-1br img:hover {
  transform: scale(1.05);
  filter: sepia(0.3) saturate(1.25) brightness(0.9) contrast(1.05);
}


/* --- 992px - 769px --- */
@media (min-width: 769px) and (max-width: 992px) {
  .hero-1br h1 {
    font-size: 2.9rem;
  }

  .gallery-1br {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- 768px - 577px --- */
@media (min-width: 577px) and (max-width: 768px) {
  .hero-1br h1 {
    font-size: 2.3rem;
  }

  .hero-1br-subtext {
    font-size: 0.9rem;
  }

  .return-to-homepage p {
    font-size: 0.9rem;
  }

  .gallery-1br {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- 576px - Below --- */
@media (max-width: 576px) {
  .hero-1br h1 {
    font-size: 1.6rem;
  }

  .hero-1br-subtext {
    font-size: 0.9rem;
  }

  .return-to-homepage p {
    font-size: 0.9rem;
  }

  .gallery-1br {
    grid-template-columns: repeat(1, 1fr);
  }
}




/* ====== FAMILY SUITE GALLERY WEBPAGE ====== */
/* --- Hero --- */
.hero-2br {
  height: 70vh;
  background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url("/images/2-bedroom/webpage/image17.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  border-bottom-left-radius: 75px;
  border-bottom-right-radius: 75px;
}

.hero-2br h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3rem;
}

.hero-2br-subtext {
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.return-to-homepage-2 {
  position: absolute;
  bottom: 35px;
  color: white;
  text-decoration: none;
  text-shadow:
  0 4px 10px rgba(0, 0, 0, 0.6),
  0 10px 25px rgba(0, 0, 0, 0.5);
}

.return-to-homepage-2 p {
  margin: 0;
  padding: 0;
  position: relative;
  transition: transform 0.5s ease;
}

.return-to-homepage-2 p:hover {
  transform: scale(1.05);
}

.return-to-homepage-2 p::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}

.return-to-homepage-2 p:hover::after {
  width: 100%;
}

/* --- Gallery --- */
.gallery-2br {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1rem;
}

.gallery-2br img {
  display: block;
  width: 100%;
  border-radius: 75px;
  filter: sepia(0.15) saturate(1.1) brightness(1.03);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-2br img:hover {
  transform: scale(1.05);
  filter: sepia(0.3) saturate(1.25) brightness(0.9) contrast(1.05);
}

/* --- 992px - 769px --- */
@media (min-width: 769px) and (max-width: 992px) {
  .hero-2br h1 {
    font-size: 2.9rem;
  }

  .gallery-2br {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- 768px - 577px --- */
@media (min-width: 577px) and (max-width: 768px) {
  .hero-2br h1 {
    font-size: 2.3rem;
  }

  .hero-2br-subtext {
    font-size: 0.9rem;
  }

  .return-to-homepage-2 p {
    font-size: 0.9rem;
  }

  .gallery-2br {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- 576px - Below --- */
@media (max-width: 576px) {
  .hero-2br h1 {
    font-size: 1.6rem;
  }

  .hero-2br-subtext {
    font-size: 0.9rem;
  }

  .return-to-homepage-2 p {
    font-size: 0.9rem;
  }

  .gallery-2br {
    grid-template-columns: repeat(1, 1fr);
  }
}




/* ====== AMENITIES WEBPAGE ====== */
/* --- Hero --- */
.hero-amenities {
  height: 70vh;
  background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url("/images/1-bedroom/webpage/image3.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  border-bottom-left-radius: 75px;
  border-bottom-right-radius: 75px;
  position: relative;
}

.hero-amenities h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3rem;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.hero-amenities-subtext {
  margin-top: 0.5rem;
  margin-bottom: 0;
  text-shadow:
  0 1px 2px rgba(0, 0, 0, 0.3),
  0 3px 6px rgba(0, 0, 0, 0.2);
}

.return-to-homepage-3 {
  position: absolute;
  bottom: 35px;
  color: white;
  text-decoration: none;
  text-shadow:
  0 4px 10px rgba(0, 0, 0, 0.6),
  0 10px 25px rgba(0, 0, 0, 0.5);
}

.return-to-homepage-3 p {
  margin: 0;
  padding: 0;
  position: relative;
  transition: transform 0.5s ease;
}

.return-to-homepage-3 p:hover {
  transform: scale(1.05);
}

.return-to-homepage-3 p::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}

.return-to-homepage-3 p:hover::after {
  width: 100%;
}

/* --- Amenities --- */
.amenities-container-2 {
  width: fit-content;
  margin: 3rem auto 0;
}

.amenities-container-2 h1 {
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

.view-amenities-photos {
  display: block;
  margin: 1.5rem auto 0;
  text-decoration: none;
  color: black;
  font-weight: 600;
  position: relative;
  width: fit-content;
  transition: color 0.3s ease;
}

.view-amenities-photos:hover {
  color: #b65a33;
}

.view-amenities-photos::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}

.view-amenities-photos:hover::after {
  width: 100%;
}

.amenities-container-2 hr {
  margin-top: 2rem;
  border: none;
  height: 3px;
  background-color: #b65a33;
  width: 100%;
}

/* --- 768px - 577px --- */
@media (min-width: 577px) and (max-width: 768px) {
  .amenities-container-2 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .amenities-container-2 h1 {
    font-size: 2.1rem;
  }
}

/* --- 576px - Below --- */
@media (max-width: 576px) {
  .amenities-container-2 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .amenities-container-2 h1 {
    font-size: 2.1rem;
  }
}




/* ====== BOOKING DETAILS WEBPAGE ====== */
/* --- Hero --- */
.hero-details {
  height: 70vh;
  background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url("/images/2-bedroom/webpage/image9.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  border-bottom-left-radius: 75px;
  border-bottom-right-radius: 75px;
  position: relative;
}

.hero-details h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3rem;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.hero-details-subtext {
  margin-top: 0.5rem;
  margin-bottom: 0;
  text-shadow:
  0 1px 2px rgba(0, 0, 0, 0.3),
  0 3px 6px rgba(0, 0, 0, 0.2);
}

.return-to-homepage-4 {
  position: absolute;
  bottom: 35px;
  color: white;
  text-decoration: none;
  text-shadow:
  0 4px 10px rgba(0, 0, 0, 0.6),
  0 10px 25px rgba(0, 0, 0, 0.5);
}

.return-to-homepage-4 p {
  margin: 0;
  padding: 0;
  position: relative;
  transition: transform 0.5s ease;
}

.return-to-homepage-4 p:hover {
  transform: scale(1.05);
}

.return-to-homepage-4 p::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}

.return-to-homepage-4 p:hover::after {
  width: 100%;
}

/* --- Booking Rules & Details --- */
.details-rules-section {
  padding-top: 3rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

.details-rules {
  padding-bottom: 1.5rem;
}

.details-rules h2 {
  font-size: 1.7rem;
}

.important li {
  font-size: 0.9rem;
}

.details-rules-section hr {
  border: none;
  height: 3px;
  background-color: #b65a33;
  width: 100%;
}

/* --- 768px - 577px --- */
@media (min-width: 577px) and (max-width: 768px) {
  .hero-details h1 {
    font-size: 2.9rem;
  }
}

/* --- 576px - Below --- */
@media (max-width: 576px) {
  .hero-details h1 {
    font-size: 1.9rem;
  }

  .hero-details-subtext {
    font-size: 0.9rem;
  }

  .details-rules h2 {
    font-size: 1.5rem;
  }

  .details-rules-list li {
    font-size: 0.9rem;
  }

  .important li {
    font-size: 0.8rem;
  }
}