/* ============================================
   Custom Properties
   ============================================ */
:root {
  --color-primary: #2d6a7a;
  --color-primary-dark: #1f4d5a;
  --color-primary-light: #4a8fa1;
  --color-secondary: #c8956c;
  --color-accent: #e8d5b7;
  --color-bg: #fafaf8;
  --color-bg-alt: #f3ede3;
  --color-text: #2c2c2c;
  --color-text-light: #6b6b6b;
  --color-white: #ffffff;
  --color-whatsapp: #25d366;
  --color-whatsapp-dark: #1da851;
  --color-occupied: #d94f4f;
  --color-available: #4caf7d;
  --color-past: #c8c8c8;
  --color-today: #2d6a7a;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius: 12px;
  --radius-sm: 6px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.11);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.14);

  --transition: 0.3s ease;
  --nav-height: 70px;
}

/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--color-text-light);
  max-width: 560px;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header .section-desc {
  margin: 0 auto;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-whatsapp {
  background-color: var(--color-whatsapp);
  color: var(--color-white);
}

.btn-whatsapp:hover {
  background-color: var(--color-whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* ============================================
   Floating WhatsApp Button
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-whatsapp);
  color: var(--color-white);
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: all var(--transition);
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.whatsapp-float:hover {
  background: var(--color-whatsapp-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.navbar.scrolled .nav-logo,
.navbar.scrolled .nav-links a {
  color: var(--color-text);
}

.navbar.scrolled .nav-links .nav-cta {
  color: var(--color-white);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-white);
  transition: color var(--transition);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--color-white);
}

.nav-links .nav-cta {
  background: var(--color-whatsapp);
  color: var(--color-white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 500;
}

.nav-links .nav-cta:hover {
  background: var(--color-whatsapp-dark);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition);
}

.navbar.scrolled .nav-toggle span {
  background: var(--color-text);
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.45) 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
  padding: 0 1.5rem;
  max-width: 700px;
}

.hero-tagline {
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 1rem;
}

.hero-content h1 {
  font-size: clamp(2.8rem, 9vw, 5.5rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-dots {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 0.5rem;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  padding: 0;
}

.hero-dot.active {
  background: var(--color-white);
  width: 24px;
  border-radius: 4px;
}

.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll svg {
  width: 16px;
  height: 16px;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(7px); }
}

/* ============================================
   Sections
   ============================================ */
.section {
  padding: 5rem 0;
}

.section-alt {
  background-color: var(--color-bg-alt);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================
   About
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.about-content p {
  color: var(--color-text-light);
  margin-bottom: 1.25rem;
}

.about-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 2.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-accent);
}

.highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.highlight-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1;
}

.highlight-label {
  font-size: 0.82rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================
   Location
   ============================================ */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.location-content p {
  color: var(--color-text-light);
  margin-bottom: 1.75rem;
}

.location-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.location-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--color-text-light);
}

.location-list li svg {
  width: 18px;
  height: 18px;
  color: var(--color-secondary);
  flex-shrink: 0;
  margin-top: 3px;
}

.location-list li strong {
  color: var(--color-text);
}

.location-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.location-link svg {
  width: 14px !important;
  height: 14px !important;
  color: currentColor !important;
  margin-top: 0 !important;
}

.location-link:hover {
  color: var(--color-secondary);
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* ============================================
   Amenities
   ============================================ */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.amenity-card {
  background: var(--color-white);
  padding: 1.75rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.amenity-icon {
  width: 48px;
  height: 48px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.amenity-icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
}

.amenity-card h3 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.amenity-card p {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ============================================
   Availability Calendar
   ============================================ */
.calendar-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.calendar-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cal-btn {
  background: var(--color-white);
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-sm);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  flex-shrink: 0;
}

.cal-btn svg {
  width: 18px;
  height: 18px;
  color: var(--color-text);
}

.cal-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.cal-btn:hover svg {
  color: var(--color-white);
}

.calendar-months {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.calendar-month {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.month-header {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-bg-alt);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.cal-day-name {
  text-align: center;
  font-size: 0.67rem;
  font-weight: 500;
  color: var(--color-text-light);
  padding: 0.3rem 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cal-day {
  text-align: center;
  font-size: 0.82rem;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  line-height: 1;
  touch-action: manipulation;
}

.cal-day.occupied {
  background: var(--color-occupied);
  color: var(--color-white);
  border-radius: var(--radius-sm);
  font-weight: 500;
}

.cal-day.past {
  color: var(--color-past);
}

.cal-day.today {
  background: var(--color-today);
  color: var(--color-white);
  font-weight: 600;
}

.cal-day.available {
  color: var(--color-text);
}

.cal-day.available:hover,
.cal-day.today:hover {
  background: var(--color-bg-alt);
  cursor: pointer;
}

.cal-day.selected {
  background: var(--color-secondary);
  color: var(--color-white);
  font-weight: 600;
  border-radius: 50%;
}

/* Calendar hint */
.cal-select-hint {
  font-size: 0.8rem;
  color: var(--color-text-light);
  font-style: italic;
  text-align: center;
  margin: 0.25rem 0 0.75rem;
}

/* Date selection panel */
#dateSelectionPanel {
  display: none;
  background: var(--color-white);
  border: 2px solid var(--color-secondary);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-top: 1.25rem;
  text-align: center;
}

#dateSelectionPanel.visible {
  display: block;
}

.selection-dates-list {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin: 0.5rem 0 1rem;
  line-height: 1.6;
}

.selection-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-clear {
  background: none;
  border: 1px solid var(--color-text-light);
  border-radius: var(--radius-sm);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--color-text-light);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-clear:hover {
  border-color: var(--color-text);
  color: var(--color-text);
}

.cal-day.in-range {
  background: rgba(200, 149, 108, 0.18);
  border-radius: 0;
  color: var(--color-text);
}

.cal-day.hover-range {
  background: rgba(200, 149, 108, 0.1);
  border-radius: 0;
}

.calendar-legend {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--color-text-light);
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  flex-shrink: 0;
}

.legend-dot.available {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-accent);
}

.legend-dot.occupied {
  background: var(--color-occupied);
}

.legend-dot.today-dot {
  background: var(--color-today);
  border-radius: 50%;
}

.legend-dot.past {
  background: var(--color-past);
}

.availability-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.availability-cta p {
  color: var(--color-text-light);
  margin-bottom: 1.25rem;
}

/* ============================================
   Contact
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-card {
  background: var(--color-white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-main {
  text-align: center;
  background: linear-gradient(135deg, rgba(31, 77, 90, 0.82), rgba(45, 106, 122, 0.78)), url('../images/lake.jpg');
  background-size: cover;
  background-position: center;
  color: var(--color-white);
}

.contact-main h3 {
  font-size: 1.5rem;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.contact-main p {
  opacity: 0.85;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.whatsapp-icon {
  background: var(--color-whatsapp);
}

.whatsapp-icon svg {
  width: 32px;
  height: 32px;
  color: var(--color-white);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding: 0.5rem 0;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-detail svg {
  width: 22px;
  height: 22px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
  margin-bottom: 0.2rem;
}

.contact-detail span {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text);
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: #1e1e1e;
  color: rgba(255, 255, 255, 0.65);
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand .nav-logo {
  color: var(--color-white);
  display: block;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  padding-top: 0.25rem;
}

.footer-links a {
  font-size: 0.875rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--color-white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
}

/* ============================================
   Photo Gallery — horizontal scroll
   ============================================ */
.gallery-scroll-wrapper {
  position: relative;
}

.gallery-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
}

.gallery-scroll::-webkit-scrollbar {
  display: none;
}

.gallery-item {
  position: relative;
  flex: 0 0 380px;
  height: 280px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--color-accent);
  scroll-snap-align: start;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.6rem 1rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.55));
  color: var(--color-white);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-label {
  opacity: 1;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--color-white);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}

.gallery-arrow svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
}

.gallery-arrow:hover {
  background: var(--color-primary);
}

.gallery-arrow:hover svg {
  color: var(--color-white);
}

.gallery-arrow--prev {
  left: -22px;
}

.gallery-arrow--next {
  right: -22px;
}

.gallery-item {
  cursor: zoom-in;
}

/* ============================================
   Lightbox
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.lightbox.open {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  z-index: 2;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox-close svg {
  width: 24px;
  height: 24px;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.lightbox-arrow:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox-arrow svg {
  width: 26px;
  height: 26px;
}

.lightbox-arrow--prev {
  left: 1.5rem;
}

.lightbox-arrow--next {
  right: 1.5rem;
}

@media (max-width: 540px) {
  .lightbox-arrow {
    width: 42px;
    height: 42px;
  }

  .lightbox-arrow--prev {
    left: 0.5rem;
  }

  .lightbox-arrow--next {
    right: 0.5rem;
  }
}

/* ============================================
   Meet the Hosts
   ============================================ */
.hosts-section {
  background: var(--color-bg);
}

.hosts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hosts-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hosts-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center top;
}

.hosts-content p {
  color: var(--color-text-light);
  margin-bottom: 1.25rem;
}

.hosts-content .btn {
  margin-top: 0.75rem;
}

/* ============================================
   Responsive — Tablet & Mobile
   ============================================ */
@media (max-width: 900px) {
  .about-grid,
  .location-grid,
  .contact-grid,
  .hosts-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .gallery-arrow--prev { left: 4px; }
  .gallery-arrow--next { right: 4px; }

  .calendar-months {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    padding: 1.25rem 1.5rem;
    gap: 0;
    box-shadow: var(--shadow-md);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    color: var(--color-text) !important;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--color-bg-alt);
    width: 100%;
    font-size: 1rem;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .nav-links .nav-cta {
    margin-top: 0.75rem;
    text-align: center;
    border-radius: 50px;
    background: var(--color-whatsapp) !important;
    color: white !important;
    border: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .footer-content {
    flex-direction: column;
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float {
    padding: 0.85rem;
    border-radius: 50%;
  }
}

@media (max-width: 540px) {
  .section {
    padding: 3.5rem 0;
  }

  .gallery-item {
    flex: 0 0 280px;
    height: 220px;
  }

  .hosts-image img {
    height: 320px;
  }

  .about-highlights {
    gap: 1.5rem;
  }

  .amenities-grid {
    grid-template-columns: 1fr 1fr;
  }

  .amenity-card {
    padding: 1.25rem;
  }

  .contact-card {
    padding: 1.75rem;
  }

  .calendar-nav {
    gap: 0.5rem;
  }

  .calendar-month {
    padding: 0.875rem 0.625rem;
  }

  .cal-btn {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }

  .calendar-grid {
    gap: 1px;
  }

  .cal-day {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }

  .cal-day-name {
    font-size: 0.6rem;
    padding: 0.25rem 0;
  }

  .month-header {
    font-size: 0.95rem;
  }

  .calendar-legend {
    gap: 0.75rem;
    flex-wrap: wrap;
    font-size: 0.8rem;
  }
}

/* ============================================
   Language Switcher
   ============================================ */
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.lang-btn {
  background: none;
  border: 2px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.3rem;
  padding: 0.1rem 0.2rem;
  line-height: 1;
  opacity: 0.55;
  transition: opacity 0.2s, border-color 0.2s;
}

.lang-btn:hover {
  opacity: 0.9;
}

.lang-btn.active {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.55);
}

.navbar.scrolled .lang-btn.active {
  border-color: var(--color-primary);
}
