/* css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  /* Backgrounds — clean, warm, airy, premium beige */
  --bg-primary:         #FFFFFF;
  --bg-secondary:       #F7F1EF;
  --bg-tertiary:        #ECE3E0;
  --bg-card:            #FCFAF9;

  /* Brown brand colors from Logo */
  --brown-primary:      #541109; /* Deep chocolate/reddish brown */
  --brown-medium:       #7D5249; /* Warm chestnut brown */
  --brown-light:        #876E67; /* Muted taupe brown */
  --brown-pale:         #F3ECE9; /* Very soft cream-brown tint */
  --brown-faint:        rgba(84, 17, 9, 0.07);
  --brown-border:       rgba(84, 17, 9, 0.18);

  /* Map old green variables for seamless compatibility */
  --green-primary:      var(--brown-primary);
  --green-medium:       var(--brown-medium);
  --green-light:        var(--brown-light);
  --green-pale:         var(--brown-pale);
  --green-faint:        var(--brown-faint);
  --green-border:       var(--brown-border);

  /* Punch — the "punchy" accent for CTAs and highlights */
  --punch-orange:       #F4631E;
  --punch-orange-hover: #D94F0C;
  --punch-amber:        #F59E0B;

  /* Text — premium warm brown-tinted dark colors */
  --text-primary:       #241614;
  --text-secondary:     #5C4844;
  --text-muted:         #917C79;
  --text-light:         #FFFFFF;

  /* Borders — matching warm beige/brown tone */
  --border-default:     #E6DDD9;
  --border-emphasis:    #C4B4B0;

  /* Utility */
  --whatsapp-green:     #25D366;
  --shadow-soft:        0 4px 24px rgba(84, 17, 9, 0.10);
  --shadow-card:        0 2px 16px rgba(84, 17, 9, 0.08);

  /* Fonts */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Poppins', sans-serif;

  --transition-fast:    0.2s ease;
  --transition-smooth:  0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow:    0.8s cubic-bezier(0.16, 1, 0.3, 1);

  --container-width:    1200px;
}

/* Reset & Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
}

body {
  overflow-x: hidden;
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
  background: var(--border-emphasis);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--green-primary);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.02em;
}

p {
  line-height: 1.6;
  color: var(--text-secondary);
  font-weight: 400;
}

/* Reusable Components & Layout utilities */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
  position: relative;
}

.text-center {
  text-align: center;
}

/* Section Header styling */
.section-header {
  margin-bottom: 60px;
  text-align: center;
}

.section-header h2 {
  font-size: 2.8rem;
  color: var(--green-primary);
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--green-light);
  margin: 15px auto 0;
}

.section-header .sub-heading {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-secondary);
  font-weight: 400;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 50px; /* Rounded pill shape by default */
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--green-primary);
  color: var(--text-light);
  border: 1px solid var(--green-primary);
}

.btn-primary:hover {
  background-color: var(--green-medium);
  border-color: var(--green-medium);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(45, 106, 79, 0.3);
}

.btn-orange-outline {
  background-color: transparent;
  color: var(--punch-orange);
  border: 2px solid var(--punch-orange);
}

.btn-orange-outline:hover {
  background-color: rgba(244, 99, 30, 0.08);
  transform: translateY(-2px);
}

.btn-orange {
  background-color: var(--punch-orange);
  color: var(--text-light);
  border: 1px solid var(--punch-orange);
}

.btn-orange:hover {
  background-color: var(--punch-orange-hover);
  border-color: var(--punch-orange-hover);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: var(--whatsapp-green);
  color: #fff !important;
  border: 1px solid var(--whatsapp-green);
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-whatsapp:hover {
  background-color: #1ebe57;
  border-color: #1ebe57;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

/* Top Announcement Bar */
.announcement-bar {
  background-color: var(--green-primary);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.8rem;
  padding: 10px 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.05em;
}

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 38px; /* Offset for announcement bar */
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1.5px solid var(--border-default);
  z-index: 1000;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  top: 0;
  box-shadow: var(--shadow-soft);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

/* Brand Logo */
.brand-logo-block {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-logo-block .brand-line-1 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.35rem;
  color: var(--green-primary);
  letter-spacing: 0.06em;
  line-height: 1.1;
}

.brand-logo-block .brand-line-2 {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.65rem;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  color: var(--text-secondary);
  line-height: 1.2;
}

/* Navigation Links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  position: relative;
  padding: 8px 0;
}

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

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--green-primary);
  transition: var(--transition-fast);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Hamburger mobile menu button */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--green-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Leafy Visual Identity & Corner SVGs */
.floating-leaf {
  position: absolute;
  pointer-events: none;
  opacity: 0.12;
  z-index: 1;
  fill: var(--green-primary);
  width: 180px;
  height: 180px;
}

.floating-leaf.tl { top: 20px; left: 20px; animation: float-tl 6s infinite ease-in-out; }
.floating-leaf.tr { top: 20px; right: 20px; animation: float-tr 6s infinite ease-in-out; }
.floating-leaf.bl { bottom: 20px; left: 20px; animation: float-bl 6s infinite ease-in-out; }
.floating-leaf.br { bottom: 20px; right: 20px; animation: float-br 6s infinite ease-in-out; }

@keyframes float-tl {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(3deg); }
}
@keyframes float-tr {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(12px) rotate(-3deg); }
}
@keyframes float-bl {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(12px) rotate(4deg); }
}
@keyframes float-br {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(-4deg); }
}

/* Repeating Leaf Background Texture for bg-secondary */
.bg-secondary-texture {
  position: relative;
}

.bg-secondary-texture::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath d='M30,10 C35,15 32,25 25,30 C20,32 15,30 12,25 C8,18 15,12 22,10 C25,9 28,9 30,10 Z M5,55 C12,50 20,53 25,58 C28,62 26,68 22,70 C16,73 10,68 8,62 C7,59 6,57 5,55 Z M50,45 C55,42 62,45 65,50 C67,53 66,58 62,60 C58,62 52,58 50,53 C49,50 49,47 50,45 Z' fill='%23541109' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* Section Dividers */
.wavy-divider {
  width: 100%;
  height: 60px;
  display: block;
  fill: var(--bg-secondary);
  margin: 0;
}

.wavy-divider.to-tertiary { fill: var(--bg-tertiary); }
.wavy-divider.to-primary { fill: var(--bg-primary); }

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  background-color: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.hero-brand-block {
  display: inline-block;
  border-top: 1.5px solid var(--green-border);
  border-bottom: 1.5px solid var(--green-border);
  padding: 25px 50px;
  margin-bottom: 25px;
  position: relative;
}

.hero-logo {
  height: 90px;
  width: auto;
  object-fit: contain;
  margin-bottom: 15px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.hero-brand-block::before,
.hero-brand-block::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 15px;
  background-repeat: no-repeat;
  background-size: contain;
}

.hero-brand-block::before {
  top: -8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23541109'%3E%3Cpath d='M17,8C8,20 2,21 2,21C2,21 9,15 16,10C17,8.5 17,8 17,8Z'/%3E%3C/svg%3E");
}

.hero-brand-block::after {
  bottom: -8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23541109'%3E%3Cpath d='M17,8C8,20 2,21 2,21C2,21 9,15 16,10C17,8.5 17,8 17,8Z'/%3E%3C/svg%3E");
}

.hero-brand-block .hero-hotel-caps {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 5px;
}

.hero-brand-block .hero-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 3.5rem;
  color: var(--green-primary);
  letter-spacing: 0.06em;
  line-height: 1.1;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--green-medium);
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  color: var(--green-primary);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  cursor: pointer;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
  40% { transform: translate(-50%, -10px); }
  60% { transform: translate(-50%, -5px); }
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.about-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-left .quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 2.5rem;
  line-height: 1.3;
  color: var(--green-medium);
  border-left: 4px solid var(--green-light);
  padding-left: 24px;
}

.about-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-badge-item {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border: 1.5px solid var(--green-border);
  background-color: var(--bg-card);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--green-primary);
  width: fit-content;
  box-shadow: var(--shadow-card);
}

.about-right .story-text {
  font-size: 1.05rem;
  margin-bottom: 40px;
}

.about-right .story-text strong {
  color: var(--green-primary);
  font-weight: 600;
}

/* Stats Highlight Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-box {
  background-color: var(--bg-card);
  border: 1.5px solid var(--green-border);
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-card);
}

.stat-box:hover {
  border-color: var(--green-light);
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.stat-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--green-primary);
  margin-bottom: 6px;
}

.stat-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Rooms Section */
.rooms-note {
  text-align: center;
  color: var(--green-medium);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-style: italic;
  margin-top: -45px;
  margin-bottom: 45px;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.room-card {
  background-color: var(--bg-card);
  border: 1.5px solid var(--green-border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  position: relative;
  box-shadow: var(--shadow-card);
}

.room-card:hover {
  transform: translateY(-8px);
  border-color: var(--green-light);
  box-shadow: var(--shadow-soft);
}

/* Room Slideshow Container */
.room-slideshow {
  height: 250px;
  position: relative;
  overflow: hidden;
  background-color: #f0f0f0;
}

.room-slideshow-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.room-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.room-slide img,
.room-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-slideshow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(45, 106, 79, 0.1);
  color: var(--green-primary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-fast);
}

.room-slideshow-btn:hover {
  background: var(--green-primary);
  color: #fff;
  border-color: var(--green-primary);
}

.room-slideshow-prev { left: 15px; }
.room-slideshow-next { right: 15px; }

/* Slideshow dots */
.room-slideshow-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.room-slideshow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(45, 106, 79, 0.3);
  cursor: pointer;
  transition: var(--transition-fast);
}

.room-slideshow-dot.active {
  background: var(--green-primary);
  width: 20px;
  border-radius: 4px;
}

/* Placeholder for room photo */
.room-photo-placeholder {
  width: 100%;
  height: 100%;
  border: 2px dashed var(--border-emphasis);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  background-color: var(--bg-secondary);
  padding: 20px;
  text-align: center;
}

.room-photo-placeholder i {
  font-size: 2.5rem;
  color: var(--green-light);
  margin-bottom: 10px;
}

/* Room Details */
.room-info {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.room-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.room-card h3 {
  font-size: 1.6rem;
  color: var(--green-primary);
}

.room-badge {
  background-color: var(--green-pale);
  border: 1px solid var(--green-medium);
  color: var(--green-primary);
  font-family: var(--font-body);
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.room-card .room-desc {
  font-size: 0.9rem;
  margin-bottom: 24px;
  flex-grow: 1;
}

/* Room feature icons */
.room-features-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 30px;
  padding-top: 15px;
  border-top: 1px solid var(--border-default);
}

.room-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.room-feature-item i {
  color: var(--green-medium);
  font-size: 0.95rem;
  width: 16px;
  text-align: center;
}

/* Amenities Section */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 50px;
}

.amenity-card {
  background-color: var(--bg-card);
  border: 1.5px solid var(--green-border);
  padding: 30px;
  border-radius: 16px;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-card);
}

.amenity-card:hover {
  border-color: var(--green-light);
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

.amenity-card i {
  font-size: 2.2rem;
  color: var(--green-medium);
  margin-bottom: 18px;
  display: inline-block;
}

.amenity-card h3 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: var(--green-primary);
  margin-bottom: 8px;
  font-weight: 600;
}

.amenity-card p {
  font-size: 0.85rem;
}

.checkin-infobar {
  background-color: var(--bg-secondary);
  border: 1.5px solid var(--border-emphasis);
  padding: 20px;
  border-radius: 50px;
  text-align: center;
  font-family: var(--font-body);
  color: var(--green-primary);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  font-weight: 500;
  box-shadow: var(--shadow-card);
}

/* Leaf Bullet Points */
.leaf-list {
  list-style: none;
}

.leaf-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.leaf-list li::before {
  content: "🌿";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.9rem;
}

/* Dining Section */
.dining-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dining-card {
  width: 100%;
  background-color: var(--bg-card);
  border: 1.5px solid var(--green-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.dining-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.dining-details-panel {
  padding: 50px;
  display: flex;
  flex-direction: column;
}

.dining-rec-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--green-pale);
  color: var(--green-primary);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 50px;
  width: fit-content;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid var(--green-medium);
}

.dining-details-panel h3 {
  font-size: 2.2rem;
  color: var(--green-primary);
  margin-bottom: 6px;
}

.dining-details-panel .dining-sub {
  font-family: var(--font-body);
  color: var(--green-medium);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.dining-details-panel .dining-desc {
  font-size: 1rem;
  margin-bottom: 30px;
  flex-grow: 1;
}

.dining-timings {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 35px;
  padding: 20px;
  background-color: var(--bg-secondary);
  border-radius: 12px;
  border: 1px solid var(--border-default);
}

.timing-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.timing-row i {
  color: var(--green-primary);
}

.dining-ctas {
  display: flex;
  gap: 15px;
}

.dining-map-panel {
  position: relative;
  background-color: #eee;
  min-height: 320px;
}

.dining-map-panel iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.dining-map-caption {
  text-align: center;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--text-muted);
  margin-top: 15px;
}

/* Nearby Attractions Section */
.attractions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.attraction-card {
  background-color: var(--bg-card);
  border: 1.5px solid var(--green-border);
  border-left: 5px solid var(--green-light);
  padding: 30px;
  border-radius: 16px;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-card);
  position: relative;
}

.attraction-card:hover {
  transform: translateY(-4px);
  border-color: var(--green-light);
  box-shadow: var(--shadow-soft);
}

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

.attraction-icon {
  font-size: 2.2rem;
}

.attraction-badge {
  background-color: var(--green-pale);
  color: var(--green-primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  border: 1px solid var(--green-border);
}

.attraction-card h3 {
  font-size: 1.3rem;
  color: var(--green-primary);
  margin-bottom: 10px;
}

.attraction-card p {
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.attraction-distance {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-medium);
}

/* Photo Gallery Section */
.gallery-container {
  max-width: 900px;
  margin: 0 auto;
}

.gallery-slideshow {
  height: 500px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1.5px solid var(--green-border);
}

.gallery-slide {
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  cursor: pointer;
  z-index: 1;
}

.gallery-slide.active {
  opacity: 1;
  z-index: 2;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Fullscreen Lightbox Overlay */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(21, 43, 30, 0.97); /* Very dark forest green tint */
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  max-width: 85%;
  max-height: 80%;
  position: relative;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.8);
  border: 2px solid rgba(255,255,255,0.1);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.lightbox-close:hover {
  transform: scale(1.1);
}

.lightbox-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 2100;
}

.lightbox-btn:hover {
  background: var(--green-light);
  color: var(--text-light);
}

.lightbox-prev { left: 40px; }
.lightbox-next { right: 40px; }

/* Experience Video Section */
.video-scroll-container {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 10px 5px 30px 5px;
  scroll-snap-type: x mandatory;
}

.video-scroll-container::-webkit-scrollbar {
  height: 6px;
}

.video-scroll-container::-webkit-scrollbar-thumb {
  background: var(--border-emphasis);
  border-radius: 3px;
}

.video-card {
  min-width: 320px;
  width: 320px;
  height: 480px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1.5px solid var(--green-border);
  scroll-snap-align: start;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.video-card:hover {
  transform: translateY(-4px);
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.video-play-btn {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: var(--green-primary);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.video-play-btn:hover {
  transform: scale(1.1);
  background: var(--green-medium);
}

.video-card-title {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 10;
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

/* Guest Reviews Section */
.reviews-container {
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.reviews-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-slide {
  min-width: 100%;
  width: 100%;
  box-sizing: border-box;
  padding: 0 10px;
}

.review-card {
  background-color: var(--bg-card);
  border-left: 4px solid var(--green-light);
  border-top: 1.5px solid var(--green-border);
  border-right: 1.5px solid var(--green-border);
  border-bottom: 1.5px solid var(--green-border);
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  text-align: center;
}

.review-stars {
  color: #FFB100;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.review-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.review-author {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--green-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.reviews-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.reviews-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-emphasis);
  cursor: pointer;
  transition: var(--transition-fast);
}

.reviews-dot.active {
  background: var(--green-primary);
  width: 24px;
  border-radius: 4px;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
}

.contact-info-card {
  background-color: var(--bg-card);
  border: 1.5px solid var(--green-border);
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 35px;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-item i {
  color: var(--green-medium);
  font-size: 1.3rem;
  margin-top: 4px;
  width: 24px;
  text-align: center;
}

.contact-item h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-primary);
  margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.contact-item a:hover {
  color: var(--green-primary);
  text-decoration: underline;
}

.contact-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.contact-ctas .btn {
  flex-grow: 1;
}

.contact-map-container {
  min-height: 420px;
  height: 100%;
}

.contact-map-container iframe {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  border: 1.5px solid var(--green-border);
  box-shadow: var(--shadow-card);
}

/* Map Strip (above footer) */
.map-strip-section {
  width: 100%;
  padding: 0;
  margin: 0;
  border-top: 1.5px solid var(--border-default);
}

.map-strip-section iframe {
  display: block;
}

/* Scroll Animation classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.active {
  opacity: 1;
  transform: translateY(0);
}

.staggered-delay {
  transition-delay: 0.1s;
}

/* Footer Section */
.footer {
  background-color: var(--green-primary);
  color: var(--bg-secondary);
  padding: 80px 0 30px 0;
  position: relative;
}

.footer-logo-block {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 5;
}

.footer-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  margin-bottom: 15px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.footer-logo-block .footer-brand-line-2 {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  color: var(--green-pale);
  line-height: 1.2;
  margin-bottom: 5px;
}

.footer-logo-block .footer-brand-line-1 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.2rem;
  color: #fff;
  letter-spacing: 0.06em;
  line-height: 1.1;
}

.footer-logo-block .footer-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--green-pale);
  margin-top: 10px;
  font-weight: 400;
}

.footer-links {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 5;
}

.footer-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-pale);
}

.footer-links a:hover {
  color: #fff;
}

.footer-contacts-row {
  text-align: center;
  font-size: 0.9rem;
  color: var(--green-pale);
  margin-bottom: 40px;
  position: relative;
  z-index: 5;
}

.footer-contacts-row a {
  color: inherit;
}

.footer-contacts-row a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--green-pale);
  position: relative;
  z-index: 5;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom a {
  color: inherit;
}

.footer-bottom a:hover {
  color: #fff;
}

#copyrightText {
  color: #000000;
}

.footer-bottom .dev-link {
  color: #000000 !important;
  font-weight: 600;
}

.footer-bottom .dev-link:hover {
  text-decoration: underline;
  color: #000000 !important;
}

.footer-bottom .admin-login-link {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
}

.footer-bottom .admin-login-link:hover {
  color: #fff;
}

/* Scroll spy and navigation highlighting */
.scrolled .nav-links a.active {
  color: var(--green-primary);
}

/* Responsive Overrides */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-left .quote {
    font-size: 2.1rem;
  }

  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dining-grid {
    grid-template-columns: 1fr;
  }

  .dining-map-panel {
    height: 320px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-map-container {
    min-height: 300px;
    height: 300px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: #fff;
    border-bottom: 1.5px solid var(--border-default);
    padding: 20px 0;
    gap: 15px;
    align-items: center;
    box-shadow: var(--shadow-soft);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    text-align: center;
    padding: 10px 0;
  }

  .nav-links a::after {
    display: none;
  }

  .navbar {
    top: 54px; /* Adjust top offset for mobile announcement bar wrapping if any */
  }
  
  .navbar.scrolled {
    top: 0;
  }

  .announcement-bar {
    padding: 8px 10px;
    line-height: 1.4;
    font-size: 0.75rem;
  }

  .hero-brand-block {
    padding: 20px 30px;
  }

  .hero-brand-block .hero-title {
    font-size: 2.6rem;
  }

  .hero-tagline {
    font-size: 1.35rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 280px;
  }

  .section-padding {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .rooms-grid {
    grid-template-columns: 1fr;
  }

  .attractions-grid {
    grid-template-columns: 1fr;
  }

  .gallery-slideshow {
    height: 320px;
  }

  .lightbox-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .lightbox-prev { left: 15px; }
  .lightbox-next { right: 15px; }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .checkin-infobar {
    border-radius: 20px;
    font-size: 0.85rem;
  }

  .dining-details-panel {
    padding: 30px 20px;
  }

  .dining-details-panel h3 {
    font-size: 1.8rem;
  }

  .dining-ctas {
    flex-direction: column;
  }

  .dining-ctas .btn {
    width: 100%;
  }

  .contact-info-card {
    padding: 30px 20px;
  }

  .contact-ctas {
    flex-direction: column;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
}
