/* =====================
   GLOBAL RESET
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #222;
  background-color: #ffffff;
  line-height: 1.6;
}

/* =====================
   VARIABLES (easy reskin)
===================== */
:root {
  --primary: #3f6b4f;     /* muted forest green */
  --secondary: #f4f6f3;   /* warm off-white */
  --accent: #d6b36a;      /* earthy golden */
  --dark: #2b2b2b;
  --light: #ffffff;
  --muted: #6b6b6b;
  --max-width: 1180px;
}


/* =====================
   UTILITIES
===================== */
section {
  padding: 80px 20px;
}

h1, h2, h3 {
  color: var(--dark);
  line-height: 1.3;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

p {
  color: var(--muted);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  display: block;
  border-radius: 8px;
}

.container {
  max-width: var(--max-width);
  margin: auto;
}

/* =====================
   HEADER / NAVBAR
===================== */
header {
  position: sticky;
  top: 0;
  background: var(--light);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

nav {
  max-width: var(--max-width);
  margin: auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  font-weight: 500;
  color: #333;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-cta {
  background: var(--primary);
  color: var(--light);
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
}

.nav-cta:hover {
  background: #162f6d;
}
header {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(6px);
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-cta {
  background: var(--accent);
  color: var(--dark);
  border-radius: 999px; /* pill = softer */
  padding: 10px 20px;
}

.nav-cta:hover {
  background: #caa556;
}

/* =====================
   HERO SECTION (REFINED)
===================== */
#home {
  padding: 0; /* override section padding */
}

/* Fixed-ratio hero container */
.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Media layer */
.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
}

/* Overlay for readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.25),
    rgba(0,0,0,0.35)
  );
  z-index: 1;
}

/* Content layer */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 20px;
  color: var(--light);
  animation: fadeUp 0.9s ease forwards;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  color: var(--light);
}

.hero-content p {
  max-width: 520px;
  font-size: 1.15rem;
  margin-bottom: 36px;
  color: #eaeaea;
}

/* CTA refinement */
.hero-buttons a {
  display: inline-block;
  margin-right: 16px;
  padding: 14px 30px;
  font-size: 0.95rem;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.25s ease;
}

/* Primary CTA */
.hero-buttons a:first-child {
  background: var(--accent);
  color: var(--dark);
  box-shadow: 0 10px 30px rgba(244,180,0,0.35);
}

.hero-buttons a:first-child:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(244,180,0,0.45);
}

/* Secondary CTA */
.hero-buttons a:last-child {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.7);
  color: var(--light);
}

.hero-buttons a:last-child:hover {
  background: rgba(255,255,255,0.15);
}
/* =====================
   HERO – MOBILE
===================== */
@media (max-width: 768px) {
  .hero {
    aspect-ratio: 4 / 5;
    max-height: none;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-buttons a {
    display: block;
    width: 100%;
    margin-bottom: 14px;
    text-align: center;
  }
}

/* =====================
   ABOUT PREVIEW
===================== */
#about-preview {
  max-width: var(--max-width);
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

#about-preview a {
  display: inline-block;
  margin-top: 16px;
  color: var(--primary);
  font-weight: 600;
}
/* =====================
   ABOUT – ENHANCED
===================== */
.about {
  padding-top: 100px;
  padding-bottom: 100px;
}
.about {
  background: linear-gradient(
    to right,
    #f6f8f5 0%,
    #ffffff 60%
  );
}

.about-text {
  max-width: 520px;
}

.about-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.about h2 {
  margin-bottom: 18px;
}

.about-intro {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 16px;
}

/* Highlights list */
.about-highlights {
  list-style: none;
  margin-top: 24px;
}

.about-highlights li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: var(--muted);
}

.about-highlights i {
  color: var(--primary);
  font-size: 1rem;
  width: 20px; /* keeps alignment clean */
}

/* Image polish */
/* =====================
   ABOUT IMAGE – SUBTLE MOTION
===================== */

.about-image {
  position: relative;
  overflow: hidden;
}

.about-image img {
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);

  /* animation */
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  animation: aboutImageReveal 1.2s ease forwards;
}

/* Gentle hover (optional but nice) */
.about-image img:hover {
  transform: translateY(-4px) scale(1);
  box-shadow: 0 26px 55px rgba(0,0,0,0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Keyframes */
@keyframes aboutImageReveal {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}



/* Mobile */
@media (max-width: 768px) {
  #about-preview {
    grid-template-columns: 1fr;
  }

  .about-text {
    max-width: 100%;
  }

  .about-image {
    margin-top: 30px;
  }
}
/* =====================
   TEXT STAGGER – ABOUT
===================== */

.stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger.show > * {
  opacity: 1;
  transform: translateY(0);
}

/* Delay per element */
.stagger.show > *:nth-child(1) { transition-delay: 0.1s; }
.stagger.show > *:nth-child(2) { transition-delay: 0.2s; }
.stagger.show > *:nth-child(3) { transition-delay: 0.35s; }
.stagger.show > *:nth-child(4) { transition-delay: 0.5s; }
.stagger.show > *:nth-child(5) { transition-delay: 0.65s; }
/* SAFETY FALLBACK */
.no-js .stagger > * {
  opacity: 1;
  transform: none;
}

/* =====================
   ROOMS – HOMESTAY STYLE
===================== */

.rooms {
  background: var(--secondary);
}

.rooms-header {
  max-width: 620px;
  margin: 0 auto 50px;
  text-align: center;
}

.room-cards {
  max-width: var(--max-width);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.room-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(0,0,0,0.1);
}

.room-card img {
  height: 220px;
  object-fit: cover;
}

.room-info {
  padding: 22px;
}

.room-info h3 {
  margin-bottom: 8px;
}

.room-info p {
  margin-bottom: 14px;
  font-size: 0.95rem;
}

/* Features */
.room-features {
  list-style: none;
  margin-bottom: 18px;
  font-size: 0.9rem;
}

.room-features li {
  margin-bottom: 8px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.room-features i {
  color: var(--primary);
  font-size: 0.9rem;
}

/* CTA */
.room-cta {
  display: inline-block;
  font-weight: 600;
  color: var(--dark);
  background: var(--accent);
  padding: 10px 18px;
  border-radius: 999px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.room-cta:hover {
  background: #caa556;
  transform: translateY(-2px);
}
/* =====================
   AMENITIES – HOMESTAY STYLE
===================== */

.amenities {
  background: var(--secondary);
  padding-top: 100px;
  padding-bottom: 100px;
}

.amenities-header {
  max-width: 620px;
  margin: 0 auto 60px;
  text-align: center;
}

.amenities-grid {
  max-width: var(--max-width);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.amenity-card {
  background: var(--light);
  padding: 34px 28px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.amenity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(0,0,0,0.1);
}

.amenity-card i {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 14px;
}

.amenity-card h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.amenity-card p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Mobile */
@media (max-width: 768px) {
  .amenities-grid {
    gap: 20px;
  }
}

/* =====================
   CTA STRIP
===================== */
#cta {
  background: var(--primary);
  color: var(--light);
  text-align: center;
}

#cta h2 {
  color: var(--light);
}

#cta a {
  display: inline-block;
  margin-top: 20px;
  background: var(--accent);
  color: var(--dark);
  padding: 12px 26px;
  border-radius: 6px;
  font-weight: 700;
}

/* =====================
   CONTACT
===================== */
#contact {
  max-width: var(--max-width);
  margin: auto;
}

#contact ul {
  list-style: none;
  margin: 20px 0;
}

#contact li {
  margin-bottom: 8px;
}

#contact a {
  display: inline-block;
  margin-top: 12px;
  background: #25d366;
  color: var(--light);
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 600;
}

/* =====================
   FOOTER
===================== */
footer {
  background: #0d1b3d;
  color: #ccc;
  text-align: center;
  padding: 30px 20px;
}

footer p {
  color: #ccc;
  font-size: 0.9rem;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 768px) {
  #about-preview {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 2.3rem;
  }

  nav {
    flex-wrap: wrap;
    gap: 10px;
  }
}

/* =====================
   BURGER MENU
===================== */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.burger span {
  width: 25px;
  height: 3px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile nav base */
@media (max-width: 768px) {

  .desktop-only {
    display: none;
  }

  .burger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--light);
    flex-direction: column;
    gap: 0;
    overflow: hidden;

    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);

    transition:
      max-height 0.4s ease,
      opacity 0.3s ease,
      transform 0.3s ease;
  }

  .nav-links li {
    border-bottom: 1px solid #eee;
  }

  .nav-links a {
    padding: 16px 20px;
    display: block;
  }

  .nav-links.active {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-cta a {
    background: var(--primary);
    color: white;
    text-align: center;
    font-weight: 600;
  }

  /* Burger animation */
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .burger.active span:nth-child(2) {
    opacity: 0;
  }

  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}
/* =====================
   HERO – POLISH
===================== */
.hero-content {
  animation: fadeUp 0.9s ease forwards;
}

.hero-content h1 {
  font-size: 3.4rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.hero-content p {
  max-width: 520px;
  font-size: 1.15rem;
  margin-bottom: 36px;
}

/* CTA refinement */
.hero-buttons a {
  padding: 14px 30px;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}

/* Primary CTA */
.hero-buttons a:first-child {
  background: var(--accent);
  color: var(--dark);
  box-shadow: 0 10px 30px rgba(244,180,0,0.35);
}

.hero-buttons a:first-child:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(244,180,0,0.45);
}

/* Secondary CTA */
.hero-buttons a:last-child {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.7);
}

.hero-buttons a:last-child:hover {
  background: rgba(255,255,255,0.15);
}

/* Entrance animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
<!-- Moblie media Query Adjustment -->
@media (max-width: 768px) {
  #home {
    height: auto;
    padding: 120px 0 80px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-buttons a {
    display: block;
    width: 100%;
    margin-bottom: 14px;
    text-align: center;
  }
}
/* =====================
   ABOUT SECTION – POLISH
===================== */
.about {
  padding-top: 100px;
  padding-bottom: 100px;
}

.about-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.about-text p {
  margin-bottom: 14px;
}

.about-text a {
  margin-top: 20px;
  display: inline-block;
  font-weight: 600;
  color: var(--primary);
  position: relative;
}

/* Subtle underline animation */
.about-text a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.about-text a:hover::after {
  width: 100%;
}

.about-image img {
  border-radius: 12px;
}

/* Mobile balance */
@media (max-width: 768px) {
  .about {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .about-image {
    margin-top: 30px;
  }
}
/* =====================
   ROOMS – POLISH
===================== */
.rooms {
  background: var(--secondary);
}

.rooms-header {
  max-width: 700px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.rooms-header p {
  color: var(--muted);
}

/* Room cards refinement */
.room-card {
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card img {
  transition: transform 0.4s ease;
}

.room-card:hover img {
  transform: scale(1.05);
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.room-info {
  padding-top: 14px;
}

.room-info p {
  margin-bottom: 14px;
}

/* Optional price style (future-ready) */
.room-price {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark);
}

/* CTA inside card */
.room-info a {
  display: inline-block;
  font-weight: 600;
  color: var(--primary);
  position: relative;
}

/* Subtle arrow hint */
.room-info a::after {
  content: " →";
  transition: transform 0.3s ease;
}

.room-info a:hover::after {
  transform: translateX(4px);
}
/* =====================
   AMENITIES – POLISH
===================== */
.amenities {
  padding-top: 100px;
  padding-bottom: 100px;
}

.amenities-header {
  max-width: 700px;
  margin: 0 auto 50px;
  text-align: center;
}

.amenities-header p {
  color: var(--muted);
}

/* Amenities grid refinement */
.amenities-list {
  margin-top: 40px;
}

.amenities-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.amenities-list li:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.amenity-icon {
  font-size: 1.3rem;
  line-height: 1;
}
/* =====================
   GALLERY – HOMEPAGE PREVIEW
===================== */

.gallery {
  padding-top: 100px;
  padding-bottom: 100px;
}

.gallery-header {
  max-width: 620px;
  margin: 0 auto 50px;
  text-align: center;
}

.gallery-preview {
  max-width: var(--max-width);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.gallery-item {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(0,0,0,0.1);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* CTA */
.gallery-cta {
  text-align: center;
  margin-top: 50px;
}

.gallery-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--dark);
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 600;
  transition: background 0.25s ease, transform 0.25s ease;
}

.gallery-btn:hover {
  background: #caa556;
  transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 768px) {
  .gallery-preview {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* =====================
   LIGHTBOX
===================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
}

.lightbox.active {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
}
/* =====================
   BOOKING CTA – HOMEPAGE
===================== */
.booking-cta {
  background: var(--primary);
  color: var(--light);
  text-align: center;
  padding: 80px 20px;
}

.booking-cta-content {
  max-width: 700px;
  margin: auto;
}

.booking-cta h2 {
  color: var(--light);
  margin-bottom: 12px;
}

.booking-cta p {
  color: #e0e0e0;
  margin-bottom: 24px;
}

.booking-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--dark);
  padding: 14px 30px;
  border-radius: 6px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.booking-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(244,180,0,0.45);
}
/* =====================
   CONTACT PAGE
===================== */
.contact-page {
  padding: 100px 20px;
}

.contact-header {
  max-width: 700px;
  margin: 0 auto 50px;
  text-align: center;
}

.contact-layout {
  max-width: var(--max-width);
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* Booking form */
.booking-form {
  background: var(--secondary);
  padding: 40px;
  border-radius: 12px;
}

.booking-form input {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 0.95rem;
}

.booking-form input:focus {
  outline: none;
  border-color: var(--primary);
}

.booking-form button {
  width: 100%;
  background: var(--accent);
  color: var(--dark);
  border: none;
  padding: 14px;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.booking-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(244,180,0,0.4);
}

/* Map */
.map-box {
  border-radius: 12px;
  overflow: hidden;
  min-height: 100%;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

/* Mobile */
@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .map-box iframe {
    min-height: 300px;
  }
}
/* =====================
   ROOMS PAGE
===================== */
.rooms-page {
  padding: 100px 20px;
}

.rooms-header {
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
}

.rooms-grid {
  max-width: var(--max-width);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* Room token */
.room-token {
  background: var(--light);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-token:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.1);
}

.room-token img {
  height: 220px;
  object-fit: cover;
  border-radius: 0;
}

.room-token-body {
  padding: 22px;
}

.room-desc {
  margin: 10px 0 14px;
}

.room-features {
  list-style: none;
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.room-features li {
  margin-bottom: 6px;
}

.room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.room-price {
  font-weight: 700;
  color: var(--dark);
}

.room-book-btn {
  background: var(--primary);
  color: var(--light);
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.room-book-btn:hover {
  background: #162f6d;
  transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 768px) {
  .room-token img {
    height: 200px;
  }

  .room-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .room-book-btn {
    width: 100%;
    text-align: center;
  }
}
/* =====================
   AMENITIES PAGE
===================== */
.amenities-page {
  padding: 100px 20px;
}

.amenities-header {
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
}

.amenities-grid {
  max-width: var(--max-width);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* Amenity card */
.amenity-card {
  background: var(--light);
  padding: 36px 28px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 14px 35px rgba(0,0,0,0.06);
  transform: translateY(20px);
  opacity: 0;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    opacity 0.4s ease;
}

.amenity-card.show {
  transform: translateY(0);
  opacity: 1;
}

.amenity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 45px rgba(0,0,0,0.12);
}

.amenity-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
}

.amenity-card h3 {
  margin-bottom: 10px;
}

.amenity-card p {
  font-size: 0.95rem;
  color: var(--muted);
}

/* Mobile */
@media (max-width: 768px) {
  .amenity-card {
    padding: 30px 22px;
  }
}
/* =====================
   FOOTER – HOMESTAY COLOR TONE
===================== */

.site-footer {
  background: #e7ece7; /* warm off-white */
  color: var(--dark);
  padding-top: 80px;
}

.footer-container {
  max-width: var(--max-width);
  margin: auto;
  padding: 0 20px 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

/* Brand */
.footer-logo {
  color: #2f4f3a; /* deep forest tone */
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.footer-col p {
  color: #4f5f55;
  font-size: 0.9rem;
}

/* Headings */
.footer-col h4 {
  color: #2b3a2f;
  margin-bottom: 14px;
  font-size: 1rem;
}

/* Links */
.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.footer-col ul li a {
  color: #4a5a50;
}

.footer-col ul li a:hover {
  color: #2f6b45;
}


/* Socials */
.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
 background: rgba(47,79,58,0.12);
   border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2f4f3a;
  transition: background 0.25s ease, transform 0.25s ease;
}

.footer-socials a:hover {
  background: var(--accent);
  color: var(--dark);
  transform: translateY(-2px);
}

/* Footer CTA */
.footer-cta p {
  margin-bottom: 16px;
  color: var(--muted);
}

.footer-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--dark);
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.footer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.08);
  text-align: center;
  padding: 20px;
  font-size: 0.85rem;
  color: var(--muted);
}
.footer-bottom p {
  margin: 6px 0;
  color: #2b3a2f;
}

.footer-credit {
  font-size: 0.8rem;
  color: #3f5f4a;
}

/* Mobile */
@media (max-width: 768px) {
  .site-footer {
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }
}

.logo img {
  max-height: 48px;      /* THIS is what makes it a logo */
  width: auto;
  object-fit: contain;
  display: block;
}
@media (max-width: 768px) {
  .logo img {
    max-height: 36px;
  }
}
/* =====================
   ROOMS PAGE – HERO
===================== */

.rp-hero {
  padding: 110px 20px 80px;
  text-align: center;
}

.rp-hero-inner {
  max-width: 720px;
  margin: auto;
}

.rp-hero h1 {
  font-size: 2.6rem;
  margin-bottom: 12px;
}

.rp-hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

/* =====================
   ROOMS PAGE – LIST
===================== */

.rp-section {
  padding: 80px 20px;
}

.rp-container {
  max-width: var(--max-width);
  margin: auto;
  display: grid;
  gap: 42px;
}

/* =====================
   ROOM CARD
===================== */

.rp-card {
  background: var(--light);
  border-radius: 22px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;

  /* animation base */
  opacity: 0;
  transform: translateY(40px);
}

.rp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.14);
}

/* =====================
   ROOM MEDIA
===================== */

.rp-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(0.95);
}

/* =====================
   ROOM CONTENT
===================== */

.rp-content {
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rp-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.rp-header h2 {
  font-size: 1.45rem;
}

.rp-price {
  font-weight: 700;
  color: var(--primary);
}

.rp-desc {
  color: var(--muted);
  margin-bottom: 18px;
  font-size: 0.95rem;
}

/* =====================
   ROOM FEATURES
===================== */

.rp-features {
  list-style: none;
  margin-bottom: 24px;
}

.rp-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.rp-features i {
  color: var(--primary);
}

/* =====================
   ROOM ACTIONS
===================== */

.rp-actions {
  margin-top: auto;
}

.rp-book-btn {
  background: var(--accent);
  color: var(--dark);
  border: none;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rp-book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

/* =====================
   CTA
===================== */

.rp-cta {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(to bottom, #f2f5f1, #ffffff);
}

.rp-cta-inner {
  max-width: 620px;
  margin: auto;
}

.rp-cta h2 {
  margin-bottom: 10px;
}

.rp-cta p {
  color: var(--muted);
  margin-bottom: 26px;
}

/* =====================
   REVEAL (JS WILL ADD .animate)
===================== */

.rp-card.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

/* =====================
   MOBILE
===================== */

@media (max-width: 900px) {
  .rp-card {
    grid-template-columns: 1fr;
  }

  .rp-media img {
    height: 240px;
  }
}

@media (max-width: 768px) {
  .rp-hero h1 {
    font-size: 2.1rem;
  }

  .rp-content {
    padding: 26px;
  }
}
/* =====================
   AMENITIES PAGE – HERO
===================== */

.ap-hero {
  padding: 110px 20px 80px;
  text-align: center;
}

.ap-hero-inner {
  max-width: 720px;
  margin: auto;
}

.ap-hero h1 {
  font-size: 2.6rem;
  margin-bottom: 12px;
}

.ap-hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

/* =====================
   AMENITIES PAGE – SECTION
===================== */

.ap-section {
  padding: 80px 20px;
}

.ap-container {
  max-width: var(--max-width);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 34px;
}

/* =====================
   AMENITY CARD
===================== */

.ap-card {
  background: var(--light);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;

  /* animation base */
  opacity: 0;
  transform: translateY(40px);
}

.ap-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(0,0,0,0.14);
}

.ap-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.ap-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.ap-card p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* =====================
   CTA
===================== */

.ap-cta {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(to bottom, #f2f5f1, #ffffff);
}

.ap-cta-inner {
  max-width: 620px;
  margin: auto;
}

.ap-cta h2 {
  margin-bottom: 10px;
}

.ap-cta p {
  color: var(--muted);
  margin-bottom: 26px;
}

/* =====================
   REVEAL (JS WILL ADD .animate)
===================== */

.ap-card.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

/* =====================
   MOBILE
===================== */

@media (max-width: 768px) {
  .ap-hero h1 {
    font-size: 2.1rem;
  }

  .ap-container {
    gap: 26px;
  }

  .ap-card {
    padding: 30px 22px;
  }
}
/* =====================
   GALLERY PAGE – HERO
===================== */

.gp-hero {
  padding: 110px 20px 80px;
  text-align: center;
}

.gp-hero-inner {
  max-width: 720px;
  margin: auto;
}

.gp-hero h1 {
  font-size: 2.6rem;
  margin-bottom: 12px;
}

.gp-hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

/* =====================
   GALLERY SECTION
===================== */

.gp-section {
  padding: 80px 20px;
}

.gp-container {
  max-width: var(--max-width);
  margin: auto;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

/* =====================
   GALLERY ITEM
===================== */

.gp-item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: var(--light);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  cursor: pointer;

  /* animation base */
  opacity: 0;
  transform: translateY(40px);
}

.gp-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: saturate(0.95) contrast(0.95);
}

/* =====================
   CAPTION OVERLAY
===================== */

.gp-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px 18px;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0)
  );

  color: #fff;
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* =====================
   HOVER EFFECTS
===================== */

.gp-item:hover img {
  transform: scale(1.08);
  filter: saturate(1) contrast(1);
}

.gp-item:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

/* =====================
   CTA
===================== */

.gp-cta {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(to bottom, #f2f5f1, #ffffff);
}

.gp-cta-inner {
  max-width: 620px;
  margin: auto;
}

.gp-cta h2 {
  margin-bottom: 10px;
}

.gp-cta p {
  color: var(--muted);
  margin-bottom: 26px;
}

/* =====================
   REVEAL (JS WILL ADD .animate)
===================== */

.gp-item.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

/* =====================
   MOBILE
===================== */

@media (max-width: 768px) {
  .gp-hero h1 {
    font-size: 2.1rem;
  }

  .gp-container {
    gap: 22px;
  }

  .gp-item figcaption {
    font-size: 0.85rem;
    padding: 12px 14px;
  }
}
/* =====================
   CONTACT PAGE – HERO
===================== */

.cp-hero {
  padding: 110px 20px 80px;
  text-align: center;
}

.cp-hero-inner {
  max-width: 720px;
  margin: auto;
}

.cp-hero h1 {
  font-size: 2.6rem;
  margin-bottom: 12px;
}

.cp-hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

/* =====================
   CONTACT PAGE – SECTION
===================== */

.cp-section {
  padding: 80px 20px;
}

.cp-container {
  max-width: var(--max-width);
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* =====================
   CONTACT INFO
===================== */

.cp-info h2 {
  margin-bottom: 10px;
}

.cp-info p {
  color: var(--muted);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.cp-details {
  list-style: none;
  margin-bottom: 26px;
}

.cp-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.cp-details i {
  color: var(--primary);
  font-size: 1rem;
}

.cp-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cp-whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

/* =====================
   CONTACT FORM
===================== */

.cp-form {
  background: var(--light);
  padding: 36px;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

.cp-form h2 {
  margin-bottom: 22px;
}

.cp-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.cp-field label {
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: var(--muted);
}

.cp-field input,
.cp-field textarea {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #dcdcdc;
  font-size: 0.9rem;
  font-family: inherit;
}

.cp-field input:focus,
.cp-field textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.cp-submit-btn {
  background: var(--accent);
  color: var(--dark);
  border: none;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cp-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

/* =====================
   MAP
===================== */

.cp-map iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
}

/* =====================
   MOBILE
===================== */

@media (max-width: 900px) {
  .cp-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cp-form {
    padding: 30px 24px;
  }
}

@media (max-width: 768px) {
  .cp-hero h1 {
    font-size: 2.1rem;
  }
}
