:root {
  --color-bg-light: #d3d6bf;
  --color-bg-dark: #4a5840;
  --color-accent: #c59b6c;
  --color-heading: #bb8827;
  --color-text: #333;
  --color-muted: #666;
  --font-main: "Poppins", sans-serif;
  --font-heading: "Merriweather", serif;
  --radius: 12px;
  --transition: all 0.3s ease-in-out;
  --nav-height: 100px;
  --dw: 1920;
  --spacing: 1 / var(--dw) * 100vw;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: var(--font-main);
  color: var(--color-text);
  background-color: var(--color-bg-light);
  line-height: 1.5;
}

/* ===== Header Base ===== */
.header {
  position: relative;
  background: var(--color-bg-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  padding: 5rem;
  z-index: 1000;
}

.logo img {
  height: auto;
  width: 360px;
}

/* ===== Navigation Links ===== */
.nav {
  display: flex;
  gap: 1.5rem;
}

.nav a {
  text-decoration: none;
  color: var(--color-text);
  font-size: 1.2rem;
  font-weight: 600;
  position: relative;
  display: block;
  transition: var(--transition);
}

.nav a:hover {
  color: var(--color-text);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(var(--underline, 0));
  transform-origin: left;
  transition: transform 0.25s ease;
}

/* ===== Hamburger Button ===== */
.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  transition: var(--transition);
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background: var(--color-bg-dark);
  border-radius: var(--radius);
  transition: var(--transition);
}

/* ===== Responsive Behavior ===== */
@media (max-width: 768px) {
  .header {
    padding: 4rem 1rem;
  }
  .logo img {
    width: 280px;
  }
  .nav {
    position: absolute;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background: var(--color-bg-light);
    flex-direction: column;
    align-items: center;
    gap: 0rem;
    padding: 1.5rem 0 0;
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .nav a {
    width: 100%;
    text-align: center;
    padding: 0.6rem;
    border-bottom: 1px solid #c0c0c0;
  }
  .nav a:last-child {
    border-bottom: 0;
  }

  /* Show the hamburger button */
  .nav-toggle-label {
    display: flex;
  }

  /* Toggle menu open */
  .nav-toggle:checked ~ .nav {
    transform: translateY(0);
    opacity: 1;
  }

  /* Animate hamburger into X */
  .nav-toggle:checked + .nav-toggle-label .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav-toggle:checked + .nav-toggle-label .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle:checked + .nav-toggle-label .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

/* Hero */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  background-color: #d3d6bf;
}

.hero-left {
  flex: 1;
  min-width: 200px;
  padding: 4rem;
}
.hero-right {
  flex: 1;
  min-width: 500px;
  padding: 0 3rem 0 0;
}

.hero-left h1 {
  color: var(--color-bg-dark);
  font-size: 3rem;
  line-height: 3.5rem;
  padding-bottom: 1rem;
}

.hero-left p {
  font-size: 1.6rem;
}

@media (max-width: 768px) {
  .hero-left {
    padding: 2rem;
  }
  .hero-right {
    padding: 0 1rem 0 1rem;
  }
}

.booking {
  background-color: #4c5847;
  display: grid;
  gap: 1rem;
  grid-template-columns: auto auto;
  /* flex-direction: column; */
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  /* min-height: 150px; /* adjust as needed */
  font-family: "Open Sans", sans-serif;
  color: #fff;
}

.booking-title {
  grid-column: 1/-1;
  font-weight: bold;
  font-size: 2rem;
}
.booking-details {
  font-size: 1.6rem;
  display: grid;
  grid-template-columns: max-content max-content max-content;
  gap: 1rem;
}
.contact-item {
  text-align: right;
}

/* Mobile layout */
@media (max-width: 767px) {
  .booking {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .booking-details {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  .separator {
    display: none;
  }
  .contact-item {
    text-align: center;
  }
}

.contact-item i,
.contact-item1 i {
  /* margin-right: 0.4rem; */
  color: #b5835a; /* accent color (adjust as per your palette) */
}

.separator {
  color: #aaa;
}

.about-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 2rem 0rem;
  /* max-width: 1200px; */
  margin: 0 auto;
  gap: 2rem;
  background-color: #fcf8ef;
}

.about-image {
  flex: 1 1 55%;
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 100%;
  max-width: 750px;
  object-fit: cover;
  /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
}

.about-content {
  flex: 1 1 40%;
  font-family: "Open Sans", sans-serif;
  color: #333;
  padding-right: 4rem;
}

.about-content h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--color-bg-dark); /* accent color */
}

.about-content p {
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
    text-align: center;
  }

  .about-content {
    flex: 1 1 100%;
  }

  .about-image img {
    max-width: 90%;
  }
}

.cta-btn {
  margin-top: 2rem;
  padding: 0.8rem 1.6rem;
  border: none;
  background: var(--color-heading);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
}

.cta-btn:hover {
  opacity: 0.9;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Amenities */
.amenities {
  text-align: center;
  padding: 3rem 2rem;
}

.amenities h2 {
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  background: var(--color-accent);
  padding: 1rem;
  border-radius: 10px;
}

/* Testimonials */
.testimonial-full {
  background-color: #d3d6bf;
  color: #4c5847;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50vh; /* full screen height */
  padding: 10px 20px;
  text-align: center;
}

.testimonial-content {
  max-width: 800px;
  padding: 10px 10px;
  position: relative;
}

.testimonial-content h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 700;
  color: #4c5847;
}

.testimonial-content .quote {
  font-size: 1.5rem;
  line-height: 1.7;
  font-style: italic;
  color: #333;
  position: relative;
  margin-bottom: 30px;
}

.testimonial-content .quote::before,
.testimonial-content .quote::after {
  content: '"';
  font-size: 4rem;
  color: #4c5847;
  opacity: 0.2;
  position: absolute;
}

.testimonial-content .quote::before {
  top: -30px;
  left: -10px;
}

.testimonial-content .quote::after {
  bottom: -40px;
  right: 10px;
}

.testimonial-content .guest {
  font-weight: 600;
  font-size: 1.5rem;
  color: #4c5847;
  text-align: right;
}

.footer {
  background-color: #4c5847;
  color: #d3d6bf;
  padding: 50px 20px 20px;
  font-family: "Poppins", sans-serif;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 30px;
  margin-left: 5rem;
}

.footer-column {
  flex: 1 1 250px;
}

.footer-links {
  padding-left: 3rem;
}

.footer-links h3,
.footer-social h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #fff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #d3d6bf;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-social .social-icons {
  display: flex;
  gap: 15px;
}

.footer-social a {
  color: #d3d6bf;
  font-size: 1.5rem;
  transition:
    color 0.3s,
    transform 0.3s;
}

.footer-social a:hover {
  color: #fff;
  transform: scale(1.2);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  padding-top: 15px;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* MOBILE NAV ANIMATION  */

/* Mobile nav initial state */
@media (max-width: 768px) {
  .nav {
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
  }

  .nav a {
    opacity: 0;
    transform: translateY(6px);
  }
}

.nav a {
  position: relative;
  display: inline-block;
  transition: color 0.2s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0.4;
}
