/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: none;
}

:root {
  /* Color Palette - Updated Theme */
  --primary: #45533a;
  /* Main color - dark olive green */
  --secondary: #f9ebc8;
  /* Secondary color - cream */
  --white: #ffffff;
  /* Other color - white */
  --primary-light: #5a6b4a;
  /* Lighter shade of primary */
  --primary-dark: #3a4530;
  /* Darker shade of primary */
  --background: #ffffff;
  --foreground: #45533a;
  --muted: #6b7a5f;
  --border: #e8e0d6;

  /* Typography */
  --font-serif: "Playfair Display", serif;
  --font-sans: "Inter", sans-serif;


  /* Spacing */
  --container-max-width: 1200px;
  --section-padding: 5rem 1.5rem;
}



@font-face {
  font-family: 'MyCustomFont';
  src: url('/public/Fonts/Agraham.otf');
  font-size: small;
}

body {
  font-family: var(--font-sans);
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.property-details .container {
  margin: 0 auto !important;
  padding: 0 !important;
}

.property-details .container .section-title {
  padding: 1.5rem !important;
}

.neon-logo {
  margin: 50px 0px;
  width: 70%;
  height: auto;
  position: relative;
  animation: neonGlow 5s infinite alternate;
  filter: drop-shadow(0 0 20px #0000);
}

@keyframes neonGlow {
  0% {
    filter: drop-shadow(0 0 0px #0000);
  }

  100% {
    filter: drop-shadow(0 0 20px #000);
  }
}

.footer-logo {
  width: 250px;
  margin: 1rem 0;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: transparent;
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: background-color .3s ease;
}

.leftmarg {
  margin-left: -3.5rem;
}

#navimg {
  transition: opacity .3s ease-in;
}


.active {
  color: burlywood;
}

.nav.scrolled {
  background: var(--secondary);
  transition: background-color 1s ease;
}

.nav-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
}

/* Move logo to left side instead of center */
.nav-logo {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 4rem;
  text-decoration: none;
  transition: color 0.3s ease;
  z-index: 1001;
}

.nav.scrolled .nav-logo {
  color: var(--primary);
}

/* Update navigation layout for left-aligned logo */
.nav-left,
.nav-right {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-left {
  justify-content: flex-start;
}

.nav-right {
  justify-content: flex-end;
}

/* Update nav-content to use flexbox layout with logo on left */
.nav-content {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 3rem;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-left: auto;
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
}

.nav.scrolled .nav-link {
  color: var(--primary);
}

.nav-link:hover {
  color: var(--secondary);
}

.nav.scrolled .nav-link:hover {
  color: var(--primary-light);
}

/* Added dropdown navigation styles */
.nav-dropdown {
  position: relative;
  width: 100%;
}

.dropdown-toggle::after {
  content: "▼";
  font-size: 0.7rem;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-radius: 0.5rem;
  padding: 1rem 0;
  min-width: 200px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  margin-top: 1rem;
  width: 100%;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 0.5rem;
}

.dropdown-link {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.dropdown-link:hover,
.dropdown-link.active {
  background: var(--secondary);
  color: var(--primary-dark);
}

/* Improved mobile navigation toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1002;
  position: relative;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--white);
  margin: 2.5px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.nav.scrolled .nav-toggle span {
  background: var(--primary);
}

/* Completely redesigned mobile navigation */
@media (max-width: 1024px) {
  .nav-container {
    justify-content: space-between;
    padding: 1rem 1.5rem;
  }

  .nav-content {
    width: 100%;
    justify-content: space-between;
  }

  .nav-logo {
    font-size: 1.5rem;
    margin: 0;
    margin-top: 1rem;
  }

  .nav-toggle {
    display: flex;
  }

  /* Update mobile menu to work with new layout */
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
  }


  .nav-menu .nav-link {
    color: var(--primary);
    font-size: 1.2rem;
    padding: 1rem;
    border-bottom: 1px solid rgba(232, 224, 214, 0.3);
    width: 200px;
    text-align: center;
  }

  .nav-menu .nav-link:hover {
    color: var(--primary-light);
    background: var(--secondary);
  }

  /* Hide left and right nav sections on mobile */
  .nav-left,
  .nav-right {
    display: none;
  }

  /* Mobile dropdown styles */
  .nav-dropdown {
    position: static;
    width: 100%;
  }

  .leftmarg {
    margin-left: 0;
  }

  .dropdown-toggle {
    width: 200px;
    text-align: center;
    padding: 1rem;
    border-bottom: 1px solid rgba(232, 224, 214, 0.3);
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    margin-top: 0;
    background: rgba(249, 235, 200, 0.5);
    box-shadow: none;
    border-radius: 0;
    width: 100%;
    display: none;
  }

  .dropdown-menu.active {
    display: block;
  }

  .dropdown-link {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-bottom: 1px solid rgba(232, 224, 214, 0.2);
  }

  /* Hamburger animation */
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .page-hero {
    height: 50vh;
    background-attachment: scroll;
  }

  .page-hero-bg {
    background-attachment: scroll;
  }

  .page-hero-content {
    padding: 0 1rem;
  }

  .hero-slide {
    height: 60vh;
  }

  .hero-content {
    padding: 0 1rem;
  }

  .hero-label {
    font-size: 0.75rem;
  }

  .hero-title {
    font-size: clamp(2rem, 6vw, 5rem);
  }

  .hero-description {
    font-size: 1rem;
  }

  /* Mobile activities styles */
  .activities-grid {
    grid-template-columns: 1fr;
  }

}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-slide.static {
  background-size: cover;
  background-position: center;
  height: 100%;
  width: 100%;
  position: relative;
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
}

.hero-text-slider {
  position: relative;
  width: 80%;
  max-width: 800px;
}

.hero-text {
  opacity: 0;
  display: none;
  transform: translateX(100px);
  transition: all 0.1s ease-out;
  position: absolute;
  inset: 0;
}

.hero-text.active {
  opacity: 1;
  display: block;
  transform: translateX(0);
  position: relative;
}

.hero-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.5;
  cursor: pointer;
  transition: 0.3s;
}

.hero-dot.active {
  opacity: 1;
  background: #ffda79;
}


@media (max-width: 480px) {
  :root {
    --section-padding: 3rem 1rem;
  }

  .nav-left .nav-link,
  .nav-right .nav-link {
    font-size: 1.1rem;
    /* width: 180px; */
  }

  .leftmarg {
    margin-left: 0;
  }

  .hero-content {
    padding: 0 1rem;
  }

  .hero-slide {
    height: 50vh;
  }

  .hero-label {
    font-size: 0.75rem;
  }

  .hero-title {
    font-size: clamp(2rem, 6vw, 4rem);
  }

  .hero-description {
    font-size: 0.9rem;
  }

  .hero-buttons {
    gap: 0.5rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.8rem;
  }

  .page-hero {
    height: 40vh;
  }

  .page-hero-content {
    padding: 0 1rem;
  }

  .page-hero-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .page-hero-subtitle {
    font-size: 0.9rem;
  }

  .nav-menu .dropdown-menu.active {
    display: flex;
    position: sticky;
  }
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
  display: flex;
  transition: transform 0.8s ease-in-out;
}

.hero-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(69, 83, 58, 0.6), rgba(69, 83, 58, 0.8));
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 0 1.5rem;
}

.hero-text {
  max-width: 800px;
}

.S02 {
  max-width: 100% !important;
}

.hero-labels {
  margin-bottom: 2rem;
}

.hero-label {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--secondary);
}

.hero-title {
  /* font-family: "MyCustomFont" !important; */
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  margin-bottom: 2rem;
  /* font-size: 50px !important; */
  color: var(--white);
}

.hero-description {
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-nav {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 20;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.hero-dot.active {
  background: var(--white);
}

/* Parallax Effect Styles for Other Pages */
.page-hero {
  height: 60vh;
  position: relative;
  overflow: hidden;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50px);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.page-hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(69, 83, 58, 0.7), rgba(69, 83, 58, 0.5));
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(69, 83, 58, 0.7), rgba(69, 83, 58, 0.5));
}

.page-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: var(--white);
  max-width: 600px;
  padding: 0 1.5rem;

}

.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  margin-top: 6rem;
  line-height: 1.2;
  text-shadow: 0px 0px 30px rgba(0, 0, 0, 255);
  max-width: 100%;
}

.page-hero-subtitle {
  text-shadow: 0px 0px 30px rgba(0, 0, 0, 255);
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--secondary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Hide mobile menu by default */
.nav-menu {
  display: none;
}


@media (max-width: 963px) {
  .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    justify-items: center;
  }

  .feature-card:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
  }
}



/* Mobile / tablet nav: ≤1024px */
@media (max-width: 1024px) {

  /* Hide desktop links */
  .nav-left,
  .nav-right {
    display: none;
  }

  /* Show hamburger toggle */
  .nav-toggle {
    display: flex;
  }

  /* Mobile nav menu */
  .nav-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
  }

  .nav-menu.active {
    transform: translateX(0);
    transition: all 0.5s ease-in;
  }

  /* Ensure mobile menu links are centered */
  .nav-menu .nav-left,
  .nav-menu .nav-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    align-items: center;
    /* CENTER CHILD LINKS */
    text-align: center;
    /* Center text inside links */
  }

  /* Dropdown toggle in mobile */
  .nav-menu .dropdown-toggle {
    width: 200px;
    /* optional: set fixed width */
    text-align: center;
  }

  .nav-menu .dropdown-menu {
    display: none;
    /* hidden by default */
    flex-direction: column;
    width: 100%;
    /* full width */
    max-width: 300px;
    /* optional: limit width */
    margin: 0 auto;
    /* center horizontally */
    text-align: center;
    /* center text */
    align-items: center;
    /* center links inside */
    padding: 0;
    right: 0;
    /* remove extra padding if any */
    gap: 0;
    /* remove gaps if needed */
  }

  .nav-menu .dropdown-menu.active {
    display: flex;
    position: sticky;
  }

  .nav-menu .dropdown-link {
    width: 100%;
    /* full width of dropdown */
    text-align: center;
    /* center the text */
    padding: 1rem 0;
    /* spacing between items */
    border-bottom: 1px solid rgba(232, 224, 214, 0.2);
  }


  .dropdown-toggle {
    width: 100%;
    text-align: center;
    padding: 1rem;
    border-bottom: 1px solid rgba(232, 224, 214, 0.3);
  }

  /* Hamburger animation */
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .nav-toggle.active span {
    background: var(--primary);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .page-hero {
    height: 50vh;
    background-attachment: scroll;
  }

  .page-hero-bg {
    background-attachment: scroll;
  }

  .page-hero-content {
    padding: 0 1rem;
  }

  .hero-slide {
    height: 60vh;
  }

  .hero-content {
    padding: 0 1rem;
  }

  .hero-label {
    font-size: 0.75rem;
  }

  .hero-title {
    font-size: clamp(2rem, 6vw, 5rem);
  }

  .hero-description {
    font-size: 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }



  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* Mobile room page styles */
  .room-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .room-specs {
    grid-template-columns: 1fr;
  }

  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .booking-card {
    position: static;
  }

  /* Mobile activities styles */
  .activities-grid {
    grid-template-columns: 1fr;
  }
}

.booking-buttons {
  flex-direction: column;
  align-items: center;
}

@media (max-width: 930px) {
  .intro-grid .section-title {
    text-align: center;
    /* font-size: 3rem; */
  }

  .intro-grid .intro-paragraph {
    text-align: justify;
  }

  .intro-grid img {
    display: none;
  }

  .intro-grid {
    display: grid;
    padding: 1rem;
    grid-template-columns: none !important;
    gap: 0 !important;
  }

  .intro-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .room-grid {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 4rem;
    align-items: start;
  }

  .room-details .container .room-grid {
    gap: 0 !important;
  }
}

@media (max-width: 513px) {
  .intro-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .btn-primary1 {
    width: 100%;
    text-align: center;
  }

  .btn-outline2 {
    width: 100%;
    text-align: center;
  }

  .activities .activities-grid{
    grid-template-columns: none !important;
  }
}


@media (max-width: 480px) {
  :root {
    --section-padding: 3rem 1rem;
  }

  .nav-logo {
    font-size: 1.3rem;
  }

  .nav-left .nav-link,
  .nav-right .nav-link {
    font-size: 1.1rem;
    width: 180px;
  }

  .hero-content {
    padding: 0 1rem;
  }

  .hero-slide {
    height: 50vh;
  }

  .hero-label {
    font-size: 0.75rem;
  }

  .hero-title {
    font-size: clamp(2rem, 6vw, 4rem);
  }

  .hero-description {
    font-size: 0.9rem;
  }

  .hero-buttons {
    gap: 0.5rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.8rem;
  }

  .page-hero {
    height: 40vh;
  }

  .page-hero-content {
    padding: 0 1rem;
  }

  .page-hero-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .page-hero-subtitle {
    font-size: 0.9rem;
  }

  /* Small mobile adjustments */
  .activity-card {
    /* margin: 0 -1rem; */
    border-radius: 0;
  }

  .booking-card {
    margin: 0 -1rem;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .container .intro-grid .toline{
    grid-template-columns: none !important;
  }
}

@media (max-width: 425px) {
  .timeline-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    margin-bottom: 2rem !important;
  }

  .timeline-item .timeline-year {
    width: auto !important;
    margin: 0 0 1rem 0 !important;
  }

  .timeline-content {
    max-width: 90%;
  }

  .timeline-content h3 {
    text-align: center !important;
    margin-bottom: 0.5rem;
  }

  .timeline-content p {
    text-align: justify !important;
  }

  .room-booking .booking-card {
    margin: 0 !important;
  }

  .attractions .container .activities-grid{
    grid-template-columns: none !important;
  }
}

@media (max-width: 375px) {
  .mag-to {
    grid-template-columns: none !important;
  }
}

@media (max-width: 320px) {
  .feature-tag {
    width: 100% !important;
  }

  .btn {
    padding: 0.75rem 1.5rem !important
  }
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
  display: flex;
  transition: transform 0.8s ease-in-out;
}

.hero-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(69, 83, 58, 0.6), rgba(69, 83, 58, 0.8));
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 0 1.5rem;
}

.hero-text {
  max-width: 800px;
}

.S02 {
  max-width: 100% !important;
}

.hero-labels {
  margin-bottom: 2rem;
}

.hero-label {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--secondary);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.1;
  color: var(--white);
}

.hero-description {
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-nav {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 20;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.hero-dot.active {
  background: var(--white);
}

/* Introduction Section */
.intro {
  padding: var(--section-padding);
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--primary);
  line-height: 1.2;
}

.attractions .section-title {
  margin-top: 5rem;
  align-items: center;
  text-align: center;
}

.attractions-description {
  text-align: justify;
}

.attractions .activity-description {
  text-align: justify;
}

.intro-paragraph {
  font-size: 1.125rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.intro-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  padding: 1rem 2.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
}

.btn-primary {
  background: var(--secondary);
  color: var(--primary);
  border: 2px solid var(--secondary);
}

.btn-primary:hover {
  background: transparent;
  color: var(--secondary);
}

.btn-primary1 {
  background: var(--secondary);
  color: var(--primary);
  border: 2px solid var(--secondary);
}

.btn-primary1:hover {
  border: 2px solid var(--foreground);
  background: transparent;
  color: var(--primary);
}


.btn-primary3 {
  background: var(--secondary);
  color: var(--primary);
  border: 2px solid var(--secondary);
}

.btn-primary3:hover {
  border: 2px solid var(--foreground);
  color: var(--white);
  background: var(--foreground);
}

.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}


.btn-outline1 {
  border: 2px solid var(--foreground);
  background: var(--white);
  color: var(--primary);
  margin: 0 .5rem;
  margin-bottom: 1.5rem;
}

.btn-outline1:hover {
  color: var(--white);
  background: var(--foreground);
}

.btn-outline2 {
  border: 2px solid var(--foreground);
  color: var(--white);
  background: var(--foreground);
}


.btn-outline2:hover {
  background: var(--white);
  color: var(--primary);
}

/* Added full-width button style for room booking */
.btn-full {
  width: 100%;
  text-align: center;
}

.intro-image {
  border-radius: 0.5rem;
  overflow: hidden;
}

.intro-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Features Section */
.features {
  background: var(--secondary);
  padding-bottom: 5rem;
}

.features .container {
  padding: 0 !important;
  background: var(--secondary);
}

.features-header {
  padding: var(--section-padding);
  padding: 5rem 1.5rem 0 1.5rem;
  text-align: center;
  margin-bottom: 4rem;
}

.features-description {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  text-align: center;
  padding: 2rem;
  margin: auto 1.5rem !important;
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--white);
}

.feature-icon svg {
  width: 2rem;
  height: 2rem;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary);
}

.feature-description {
  color: var(--muted);
  line-height: 1.6;
}

/* Footer */
.footer {
  background: var(--primary);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-subtitle {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--secondary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-text,
.footer-contact {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  text-decoration: none;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--secondary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

/* Parallax Effect Styles for Other Pages */
.page-hero {
  height: 60vh;
  position: relative;
  overflow: hidden;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50px);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.page-hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(69, 83, 58, 0.7), rgba(69, 83, 58, 0.5));
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(69, 83, 58, 0.7), rgba(69, 83, 58, 0.5));
}

.page-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: var(--white);
  max-width: 600px;
  padding: 0 1.5rem;

}

.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  margin-top: 6rem;
  line-height: 1.2;
  text-shadow: 0px 0px 30px rgba(0, 0, 0, 255);
  max-width: 100%;
}

.page-hero-subtitle {
  text-shadow: 0px 0px 30px rgba(0, 0, 0, 255);
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--secondary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Added room page styles */
.room-details {
  padding: var(--section-padding);
  background: var(--white);
}

.room-details .container {
  padding: 0 !important;
}

.room-details .container .room-booking {
  margin-bottom: 2rem !important;
}


.room-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.room-header {
  margin-bottom: 2rem;
}

.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.feature-tag {
  background: var(--secondary);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
}

.room-description {
  font-size: 1.125rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.room-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
  padding: 2rem;
  background: var(--secondary);
  border-radius: 0.5rem;
}

.spec-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.spec-item p {
  color: var(--muted);
  font-size: 0.95rem;
}

.room-amenities,
.bathroom-amenities {
  margin-bottom: 3rem;
}

.room-amenities h3,
.bathroom-amenities h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(249, 235, 200, 0.3);
  border-radius: 0.5rem;
  font-size: 0.9rem;
  color: var(--primary);
}

.amenity-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.amenities-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.75rem;
}

.amenities-list .amenity-item {
  background: rgba(249, 235, 200, 0.2);
  padding: 0.75rem;
  font-size: 0.85rem;
}

.booking-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  position: sticky;
  top: 2rem;
}

.price-section {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.currency {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
}

.amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
}

.period {
  font-size: 1rem;
  color: var(--muted);
}

.taxes {
  font-size: 0.9rem;
  color: var(--muted);
}

.booking-details {
  margin-bottom: 2rem;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(232, 224, 214, 0.5);
}

.detail-item:last-child {
  border-bottom: none;
}

.label {
  font-weight: 500;
  color: var(--primary);
}

.value {
  font-size: 0.9rem;
  color: var(--muted);
  text-align: right;
}

.availability {
  text-align: center;
  margin-bottom: 1.5rem;
}

.availability-text {
  background: var(--secondary);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: 500;
}

.booking-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 1rem;
}

/* Added things-to-do page styles */
.activities {
  padding: var(--section-padding);
  background: var(--white);
}

.activities .container {
  padding: 0 0.5rem !important;
}

.activities-header {
  text-align: center;
  margin-bottom: 4rem;
}

.activities-description {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.activity-card {
  background: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}

.activity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.activity-image {
  height: 250px;
  overflow: hidden;
}

.activity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.activity-card:hover .activity-image img {
  transform: scale(1.05);
}

.activity-content {
  padding: 2rem;
}

.activity-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
}

.activity-description {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.activity-content .activity-description {
  text-align: justify;
}

.activity-details {
  margin-bottom: 1.5rem;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(232, 224, 214, 0.3);
}

.detail-item:last-child {
  border-bottom: none;
}

.detail-label {
  font-weight: 500;
  color: var(--primary);
  font-size: 0.9rem;
}

.detail-value {
  color: var(--muted);
  font-size: 0.9rem;
  text-align: right;
}

.activity-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.booking-section {
  padding: var(--section-padding);
  background: var(--secondary);
  text-align: center;
  /* margin-top: 3rem; */
}

.booking-content {
  max-width: 600px;
  margin: 0 auto;
}

.booking-description {
  font-size: 1.125rem;
}


/* Lightbox styles */
.lightbox {
  display: none;
  /* hidden by default */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: var(--secondary);
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}


@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 8px;
}

/* Overlay */
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Room Overlay */
.room-gallery .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.zoom-icon {
  font-size: 2rem;
  color: var(--secondary);
  /* normal icon */
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

/* Hover effect */
.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .zoom-icon {
  transform: scale(1);
}

/* Room gallery grid */
.room-gallery h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.gallery-grid .gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}