/* ===== Base Styles & Variables ===== */
@import url('https://fonts.googleapis.com/css2?family=Tomorrow:wght@400;500;600;700&display=swap');

:root {
  /* Nature-Inspired Core Palette */
  --primary-dark: #1E3F2D;       /* Deep forest green */
  --primary-light: #4A7C59;      /* Fresh foliage */
  --secondary-teal: #3A9E9D;     /* River teal */
  --accent-gold: #D4AF37;        /* Warm gold */
  --warm-neutral: #F0E6D2;       /* Cream */
  --deep-rust: #B85C38;          /* Rust orange */
  --shadow-brown: #5C4D3D;       /* Earth brown */
  --pure-white: #FFFFFF;         
  --true-black: #1a1a1a;         /* Darker black for better contrast */

  /* Font sizes */
  --font-size-s: 0.9rem;
  --font-size-n: 1rem;
  --font-size-m: 1.12rem;
  --font-size-l: 1.5rem;
  --font-size-xl: 1.8rem;
  --font-size-xxl: 2rem;

  /* Font weights */
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* Border radius */
  --border-radius-s: 8px;
  --border-radius-m: 30px;
  --border-radius-circle: 50%;

  /* Site max width */
  --site-max-width: 100%;
}

/* ===== Reset & Base Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Tomorrow", sans-serif;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--warm-neutral);
  color: var(--true-black);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ===== Utility Classes ===== */
.section-content {
  width: var(--site-max-width);
  margin: 0 auto;
}

/* ===== Header & Navigation ===== */
header {
  width: 100%;
  position: fixed;
  z-index: 100;
  background-color: var(--primary-dark);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 45px;
}

.nav-logo .logo {
  height: 60px;
  width: auto;
  transition: transform 0.3s ease;
}

.nav-logo:hover .logo {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  gap: 10px;
}

.nav-link {
  padding: 10px 20px;
  color: var(--warm-neutral);
  font-size: var(--font-size-m);
  font-weight: var(--font-weight-medium);
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.nav-link:hover {
  font-weight: var(--font-weight-semibold);
  color: var(--accent-gold);
}

.nav-link:hover::after {
  width: calc(100% - 40px);
}

/* ===== Hero Section ===== */
.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
}

.hero-section video {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

main {
  padding-top: 90px;
}

.hero-section .section-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  color: var(--pure-white);
  padding-bottom: 60px;
}

.hero-section .title {
  font-size: var(--font-size-xxl);
  font-weight: var(--font-weight-bold);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  margin-bottom: 15px;
}

.hero-section .subtitle {
  font-size: var(--font-size-l);
  font-weight: var(--font-weight-semibold);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
}

.hero-section .description {
  font-size: var(--font-size-m);
  font-weight: var(--font-weight-medium);
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  max-width: 600px;
  padding: 0 20px;
}

.booking {
  background-color: var(--accent-gold);
  color: var(--true-black);
  padding: 12px 30px;
  border-radius: var(--border-radius-m);
  font-size: var(--font-size-m);
  font-weight: var(--font-weight-semibold);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  border: none;
}

.booking:hover {
  background-color: var(--deep-rust);
  color: var(--pure-white);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.booking:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.3);
}

/* Trust badges styling */
.trust-badges {
    background: #f8f9fa;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
}

.badges-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.badge {
    text-align: center;
    padding: 15px;
    min-width: 180px;
}

.badge i {
    font-size: 2rem;
    color: #c19a6b;
    margin-bottom: 10px;
}

.stars {
    color: #ffc107;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

/* Navigation booking buttons */
.nav-booking {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-booking-btn {
    padding: 8px 15px;
    background: #c19a6b;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.nav-booking-btn:hover {
    background: #a5825d;
    transform: translateY(-2px);
}

.nav-booking-btn.phone {
    background: #28a745;
}

.nav-booking-btn.phone:hover {
    background: #218838;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .nav-booking {
        display: none;
    }
    
    .badges-container {
        flex-direction: column;
        align-items: center;
    }
    
    .badge {
        margin-bottom: 15px;
    }
}

/* ===== About Section ===== */
.about-section {
  background-color: var(--warm-neutral);
  padding-top: 100px;
}

.about-section-content {
  padding-bottom: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.about-image-wrapper {
  flex: 1;
  min-width: 45%;
  position: relative;
  padding: 8px;
}

.about-image-wrapper img {
  border-radius: var(--border-radius-s);
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
}

.about-section-content:not(.reverse-layout) .about-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--accent-gold);
  border-radius: var(--border-radius-s);
  z-index: 0;
  filter: blur(8px);
  opacity: 0.5;
  animation: glow-pulse 3s ease-in-out infinite alternate;
}

.reverse-layout .about-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--secondary-teal);
  border-radius: var(--border-radius-s);
  z-index: 0;
  filter: blur(8px);
  opacity: 0.5;
  animation: glow-pulse 3s ease-in-out infinite alternate;
}

.about-image-wrapper::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  background: var(--pure-white);
  border-radius: calc(var(--border-radius-s) - 2px);
  z-index: 1;
}

@keyframes glow-pulse {
  0% { opacity: 0.7; }
  100% { opacity: 1; }
}

.about-section-details {
  flex: 1;
  min-width: 55%;
  padding: 30px;
}

.about-title {
  font-size: var(--font-size-xxl);
  color: var(--primary-dark);
  margin-bottom: 25px;
  text-transform: uppercase;
  font-weight: var(--font-weight-bold);
  letter-spacing: 1px;
  line-height: 1.2;
}

.about-description {
  font-size: var(--font-size-m);
  font-weight: var(--font-weight-medium);
  color: var(--true-black);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Dark Theme About Section */
.reverse-layout {
  flex-direction: row-reverse;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-teal) 100%);
  color: var(--warm-neutral);
  padding: 130px 0 100px;
  margin-top: -30px;
}

.dark-theme {
  background: linear-gradient(to right, var(--primary-dark), #2D5E4A);
  padding-top: 130px;
  position: relative;
}

.dark-theme::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 50px;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%231E3F2D" opacity=".25"/></svg>');
  background-size: cover;
}

.title2 {
  color: var(--accent-gold);
}

.description2 {
  color: var(--warm-neutral);
  font-size: var(--font-size-m);
  line-height: 1.8;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  position: relative;
  padding-left: 20px;
  border-left: 3px solid var(--accent-gold);
}

.second-image {
  box-shadow: 0 0 20px rgba(76, 163, 175, 0.5);
}

/* ===== Activities Carousel ===== */
.activities-section {
  background: linear-gradient(to bottom, var(--warm-neutral) 60%, var(--primary-light) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.section-title {
  font-size: var(--font-size-xxl);
  color: var(--primary-dark);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-subtitle {
  font-size: var(--font-size-m);
  color: var(--deep-rust);
  margin-bottom: 50px;
  font-weight: var(--font-weight-medium);
}

.carousel-container {
  position: relative;
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 60px;
  overflow: hidden;
}

.carousel {
  display: flex;
  gap: 30px;
  padding: 30px 0;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: max-content;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
}

.activity-card {
  display: flex;
  flex-direction: column;
  flex: 0 0 300px;
  background: var(--pure-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(30, 63, 45, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  scroll-snap-align: start;
}

.activity-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(30, 63, 45, 0.2);
}

.card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  will-change: transform;
  backface-visibility: hidden;
}

.activity-card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.card-content h3 {
  font-size: var(--font-size-l);
  color: var(--primary-dark);
  margin-bottom: 12px;
  font-weight: var(--font-weight-semibold);
}

.card-content p {
  font-size: var(--font-size-s);
  color: var(--shadow-brown);
  line-height: 1.6;
  margin-bottom: 15px;
  flex-grow: 1;
}

.activity-btn {
  display: inline-block;
  background-color: var(--accent-gold);
  color: var(--true-black);
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-s);
  text-align: center;
  white-space: nowrap;
  min-width: 120px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  border: none;
  cursor: pointer;
  margin-top: auto;
  margin-bottom: 20px;
}

.activity-btn:hover {
  background: var(--deep-rust);
  color: var(--pure-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.activity-btn:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.3);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.carousel-dots span {
  width: 14px;
  height: 14px;
  background: rgba(30, 63, 45, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dots span.active {
  background: var(--accent-gold);
  transform: scale(1.3);
}

/* Navigation Arrows */
.carousel-nav {
  display: flex;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  left: 0px;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}

.carousel-nav button {
  pointer-events: all;
  background: rgba(255, 255, 255, 0.9);
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.carousel-nav button:hover {
  background: var(--accent-gold);
  transform: scale(1.1);
}

.carousel-nav button svg {
  width: 20px;
  height: 20px;
  fill: var(--primary-dark);
}

/* ===== Why Choose Us Section ===== */
.why-choose-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-teal) 100%);
  padding: 100px 0;
  position: relative;
  color: var(--warm-neutral);
}

.why-choose-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background: linear-gradient(to right, var(--accent-gold), var(--deep-rust));
  opacity: 0.15;
}

.why-choose-section .section-title {
  font-size: var(--font-size-xxl);
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  color: var(--accent-gold);
}

.why-choose-section .section-subtitle {
  font-size: var(--font-size-l);
  color: var(--warm-neutral);
}

.featured-testimonial {
  max-width: 600px;
  margin: 30px auto 50px;
  padding: 30px;
  position: relative;
  background: rgba(30,63,45,0.3);
  color: var(--warm-neutral);
  border-radius: var(--border-radius-s);
  box-shadow: 0 5px 15px rgba(30, 63, 45, 0.1);
  border-left: 4px solid var(--accent-gold);
}

.featured-testimonial::before,
.featured-testimonial::after {
  content: '"';
  font-family: serif;
  font-size: 4rem;
  color: var(--accent-gold);
  position: absolute;
  opacity: 0.2;
}

.featured-testimonial::before {
  top: 0px;
  left: 8px;
}

.featured-testimonial::after {
  bottom: -20px;
  right: 0px;
}

.featured-testimonial blockquote {
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.6;
  /* color: var(--shadow-brown); */
  position: relative;
  z-index: 1;
}

.featured-testimonial footer {
  text-align: right;
  font-weight: var(--font-weight-semibold);
  margin-top: 15px;
  color: var(--deep-rust);
}

.choose-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.choose-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--border-radius-s);
  padding: 30px 20px;
  box-shadow: 0 5px 15px rgba(30, 63, 45, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.choose-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-gold), var(--deep-rust));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.choose-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(30, 63, 45, 0.25);
}

.choose-card:hover::before {
  transform: scaleX(1);
}

.card-badge {
  position: absolute;
  top: -9px;
  right: -9px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent-gold), var(--deep-rust));
  color: var(--pure-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-m);
  box-shadow: 0 3px 6px rgba(0,0,0,0.16);
  transition: all 0.3s ease;
  z-index: 2;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.choose-card:hover .card-badge {
  transform: scale(1.1) rotate(15deg);
  background: var(--deep-rust);
}

.choose-icon {
  margin-bottom: 20px;
  transition: transform 0.5s ease;
  position: relative;
  display: inline-block;
}

.choose-icon svg {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1)); */
}

.choose-card:nth-child(1) .choose-icon svg {
  fill: var(--secondary-teal);
}

.choose-card:nth-child(2) .choose-icon svg {
  fill: var(--deep-rust);
}

.choose-card:nth-child(3) .choose-icon svg {
  fill: var(--accent-gold);
}

.choose-card:nth-child(4) .choose-icon svg {
  fill: var(--true-black);
}

.choose-card:hover .choose-icon {
  transform: rotateY(180deg);
}

.choose-card h3 {
  font-size: var(--font-size-l);
  color: var(--warm-neutral);
  margin-bottom: 15px;
  font-weight: var(--font-weight-semibold);
  position: relative;
  display: inline-block;
}

.choose-card h3::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width 0.3s ease;
}

.choose-card:hover h3::after {
  width: 100%;
}

.choose-card p {
  font-size: var(--font-size-s);
  color: rgba(240,230,210,0.9);
  line-height: 1.6;
}

.choose-card p:first-of-type {
  color: var(--primary-dark);
  font-weight: var(--font-weight-semibold);
  font-style: italic;
  margin-bottom: 15px;
  font-size: 1.05rem;
}

/* ===== Rooms Preview Section ===== */
.rooms-preview-section {
  background: linear-gradient(to botton, var(--warm-neutral) 0%, #f5f0e4 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  color: var(--true-black);
}

.rooms-preview-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg"><path fill="%234A7C59" d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".15"/></svg>');
  background-size: cover;
  opacity: 0.1;
  z-index: 0;
}

.rooms-preview-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" opacity="0.05"><path fill="%231E3F2D" d="M0,0V7.23C0,51.4,51.4,102.77,102.77,102.77H1200V0Z"/></svg>');
  background-size: cover;
}

.rooms-preview-section .section-content {
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rooms-preview-section .section-title{
  color: var(--primary-dark);
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  text-shadow: none;
}

.rooms-preview-section .section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--accent-gold);
  border-radius: 2px;
}

.rooms-preview-section .section-subtitle{
  color: var(--deep-rust);
  font-size: var(--font-size-l);
  font-weight: var(--font-weight-medium);
  margin-bottom: 50px;
  position: relative;
}

.rooms-carousel {
  display: flex;
  gap: 30px;
  padding: 30px 20px;
  margin: 0px auto;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  max-width: 1350px;
  width: 100%;
  justify-content: center;
}

.rooms-carousel::-webkit-scrollbar {
  display: none;
}

.room-card {
  display: flex;
  flex-direction: column;
  flex: 0 0 390px;
  scroll-snap-align: start;
  background: var(--pure-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(30, 60, 40, 0.1);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  z-index: 1;
  height: 680px;
  border: none;
}

.room-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 60px rgba(30, 63, 45, 0.2);
}

.room-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, var(--accent-gold) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.room-card:hover .room-glow {
  opacity: 0.15;
}

.room-image {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.room-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 60%, rgba(0,0,0,0.3) 100%);
  z-index: 1;
}


.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: transform;
  backface-visibility: hidden;
}

.room-card:hover .room-image img {
  transform: scale(1.1);
}

.room-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent-gold);
  color: var(--primary-dark);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  z-index: 2;
  transition: all 0.3s ease;
}

.room-card:hover .room-badge {
  transform: translateY(-5px);
  background: var(--deep-rust);
  color: var(--pure-white);
}

.room-content {
  flex: 1;
  padding: 25px;
  display: flex;
  flex-direction: column;
  background: var(--pure-white);
  position: relative;
}

.room-content::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 30px;
  width: 40px;
  height: 40px;
  background: var(--pure-white);
  transform: rotate(45deg);
  z-index: -1;
}


.room-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.room-type {
  background: var(--primary-light);
  color: var(--pure-white);
  padding: 3px 10px;
  border-radius: 15px;
  font-weight: var(--font-weight-medium);
}

.room-price {
  color: var(--deep-rust);
  font-weight: var(--font-weight-bold);
}

.room-content h3 {
  font-size: 1.4rem;
  color: var(--primary-dark);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.room-content h3::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--accent-gold);
  transition: width 0.3s ease;
}

.room-card:hover .room-content h3::after {
  width: 100%;
}

.room-excerpt {
  color: var(--shadow-brown);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.room-features {
  display: flex;
  gap: 15px;
  /* margin-bottom: 20px; */
  flex-wrap: wrap;
}

.room-features span {
  background: rgba(74, 124, 89, 0.1);
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  color: var(--primary-dark);
}

.room-card:hover .room-features span {
  background: rgba(212, 175, 55, 0.2);
  transform: translateY(-2px);
}

.room-btn-container {
  margin-top: auto;
  padding-top: 20px;
}

.room-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  color: var(--warm-neutral);
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: var(--font-weight-semibold);
  font-size: 0.9rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  width: fit-content;
}

.room-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.room-btn:hover {
  background: var(--accent-gold);
  color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(30, 63, 45, 0.3);
}

.room-btn:hover svg {
  transform: translateX(3px);
}

.room-btn:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.3);
}

.view-all-rooms {
  text-align: center;
  margin: 50px 0;
  width: 100%;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-dark);
  color: var(--warm-neutral);
  padding: 15px 40px;
  border-radius: 30px;
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-m);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.165,0.84,0.44,1);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
  position: relative;
  z-index: 3;
}


.view-all-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary-dark), var(--primary-light));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}


.view-all-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  transition: all 0.3s ease;
}

.view-all-btn:hover {
  background: var(--accent-gold);
  color: var(--primary-dark);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(30, 63, 45, 0.4);
}

.view-all-btn:hover svg {
  transform: translateX(8px);
}

.view-all-btn:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.3);
}

/* ===== Animation Keyframes ===== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===== Focus States ===== */
a:focus-visible, 
button:focus-visible,
.booking:focus-visible,
.activity-btn:focus-visible,
.room-btn:focus-visible,
.view-all-btn:focus-visible,
.carousel-nav button:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.3);
}

/* footer styling  */

.site-footer{
  background-color: var(--primary-dark);
  color: var(--warm-neutral);
  padding: 100px 0 20px;
  position: relative;
}

.site-footer::before{
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 50px;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%231E3F2D" opacity=".25"/></svg>');
  background-size: cover;
  transform: rotate(180deg);
}

.footer-content{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.footer-column{
  display: flex;
  flex-direction: column;
}

.footer-logo-img{
  width: 180px;
  height: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-tagline{
  font-size: var(--font-size-m);
  font-weight: var(--font-weight-medium);
  margin-bottom: 30px;
  line-height: 1.5;
}

.contact-info{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item{
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: var(--font-size-s);
}

.contact-icon{
  width: 25px;
  height: 25px;
  fill: var(--accent-gold);
}

.footer-heading{
  font-size: var(--font-size-l);
  color: var(--accent-gold);
  margin-bottom: 30px;
  font-weight: var(--font-weight-semibold);
  position: relative;
}

.footer-heading::after{
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--accent-gold);
}

.footer-links{
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-link {
  font-size: var(--font-size-m);
  color: var(--warm-neutral);
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.footer-link:hover {
  color: var(--accent-gold);
  transform: translateX(5px);
}

.social-icon{
  margin-right: 15px;
  width: 30px;
  height: 30px;
  fill: var(--warm-neutral);
  transition: all 0.3s ease;
}

.social-link:hover .social-icon {
  fill: var(--accent-gold);
  transform: translateY(-3px);
}

.footer-bottom{
  text-align: center;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  font-size: var(--font-size-s);
}

/* ===== Mobile Responsive Styles ===== */
/* Initially hide the mobile menu toggle */
.mobile-menu-toggle {
  display: none;
}

@media (max-width: 1024px) {
  .navbar {
    padding: 15px 20px;
  }

  .about-section-content {
    flex-direction: column;
    text-align: center;
  }

  .reverse-layout {
    flex-direction: column;
  }

  .choose-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .rooms-carousel {
    justify-content: flex-start;
  }

  .rooms-carousel {
  display: flex;
  flex-direction: column;
  gap: 30px;
  overflow: visible;
}

.room-card {
  flex: 1 1 auto;
  width: 100%;
  max-width: 95%;
  margin: 0 auto;
  height: auto;
}

}

/* Mobiles (≤768px) */
@media (max-width: 835px) {
  /* Header */
  .nav-menu {
    display: none;
    flex-direction: column;
    gap: 20px;
    position: absolute;
    top: 85px;
    right: 0;
    background: var(--primary-dark);
    width: 100%;
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .nav-menu.active {
    display: flex;
  }

  .mobile-menu-toggle {
    display: block;
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 200;
    font-size: 1.8rem;
    color: var(--accent-gold);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--warm-neutral);
  }

  /* Hero Section */
  .hero-section .title {
    font-size: 1.5rem;
  }

  .hero-section .subtitle {
    font-size: 1.1rem;
  }

  .hero-section .description {
    font-size: 0.9rem;
  }

  /* Activities */
  .activity-card {
    flex: 0 0 80%;
    margin: 0 auto;
  }

  /* Activities vertical on small screens */
.carousel-container {
  max-width: 100%;
  padding: 0 15px;
  overflow: visible;
}

.carousel {
  display: flex;
  flex-direction: column;
  gap: 25px;
  transform: none !important; /* stop translateX from JS */
  width: 100% !important;
}


.activity-card {
  flex: 1 1 auto;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}
.carousel-nav,
.carousel-dots {
  display: none !important; /* hide arrows & dots */
}


  /* About */
  .about-section-content,
  .reverse-layout {
    flex-direction: column;
    gap: 30px;
  }

  /* Rooms */
  .room-card {
    flex: 0 0 90%;
    height: auto;
  }

  .rooms-carousel {
  display: flex;
  flex-direction: column;
  gap: 30px;
  overflow: visible;
}

.room-card {
  flex: 1 1 auto;
  width: 100%;
  max-width: 95%;
  margin: 0 auto;
  height: auto;
}


  /* Why Choose Us */
  .choose-cards {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-item {
    justify-content: center;
  }
}

/* Small phones (≤480px) */
@media (max-width: 480px) {
  .hero-section .title {
    font-size: 1.3rem;
  }
  .hero-section .subtitle {
    font-size: 1rem;
  }
  .booking {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  .activity-btn {
    font-size: 0.8rem;
    padding: 8px 15px;
  }
  .view-all-btn {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
}

/* Add to your existing CSS */
/* Improve loading performance */
video[autoplay] {
    opacity: 0;
    transition: opacity 1s ease;
}

video[autoplay].loaded {
    opacity: 1;
}

/* Schema markup visibility */
[itemscope] {
    display: none; /* Hide schema markup from visual display */
}

/* Improve focus styles for accessibility */
a:focus, button:focus {
    outline: 2px solid var(--accent-gold);
    outline-offset: 3px;
}

/* Add print styles */
@media print {
    .navbar, .booking, .carousel-nav, .footer-bottom {
        display: none !important;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    a::after {
        content: " (" attr(href) ") ";
        font-size: 0.9em;
        font-weight: normal;
    }
}











/* ===== New Sections Styling ===== */

/* Trust Signals Section */
.trust-signals {
    background: var(--pure-white);
    padding: 40px 0;
    text-align: center;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-item {
    padding: 10px;
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-item h3 {
    color: var(--primary-dark);
    margin-bottom: 5px;
    font-size: var(--font-size-l);
}

.trust-item p {
    color: var(--shadow-brown);
    font-size: var(--font-size-s);
}

/* Local Area Section */
.local-area-section {
    background: var(--warm-neutral);
    padding: 80px 0;
    text-align: center;
}

.local-area-section h2 {
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-size: var(--font-size-xxl);
}

.local-area-section > p {
    color: var(--shadow-brown);
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: var(--font-size-m);
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.attraction {
    background: var(--pure-white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.attraction:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.attraction h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-size: var(--font-size-l);
}

.attraction p {
    color: var(--shadow-brown);
    font-size: var(--font-size-s);
    line-height: 1.6;
}

.local-area-section > p:last-of-type {
    margin-top: 30px;
    font-style: italic;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--pure-white);
}

.faq-section h2 {
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 40px;
    font-size: var(--font-size-xxl);
}

.faq-item {
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-size: var(--font-size-l);
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.faq-item h3::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--accent-gold);
    transition: transform 0.3s ease;
}

.faq-item.active h3::after {
    content: '-';
    transform: translateY(-50%) rotate(0deg);
}

.faq-item p {
    color: var(--shadow-brown);
    font-size: var(--font-size-m);
    line-height: 1.6;
    display: none;
}

.faq-item.active p {
    display: block;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .trust-item {
        padding: 10px;
    }
    
    .attractions-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .faq-item {
        padding: 0 15px 20px;
    }
    
    .local-area-section, 
    .faq-section, 
    .trust-signals {
        padding: 50px 0;
    }
}

/* Animation for FAQ toggle */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.faq-item.active p {
    animation: fadeIn 0.3s ease forwards;

}
