/* ========================================
   RESPONSIVE BREAKPOINTS OVERVIEW
   ======================================== */
/*
  Breakpoints (from largest to smallest):

  1. Large Desktop:      ≤1580px  (Hero adjustments)
  2. Desktop:            ≤1280px  (Hero adjustments)
  3. Tablet:             ≤1024px  (Hero, Rooms, Typography)
  4. Mobile:             ≤768px   (Sidebar, Sections, Hero, Rooms, Typography & General)
  5. Small Mobile:       ≤480px   (Compact layouts)
  6. Extra Small Mobile: ≤400px   (Mobile menu full width)
*/

/* ========================================
   ALPINE COLOR THEME CSS VARIABLES
   ======================================== */
:root {
  /* Alpine Color Theme */
  --snow-white: #FFFFFF;
  --light-blue: #E3F2FD;
  --jacuzzi-blue: #90CAF9;
  --sky-blue: #42A5F5;
  --mountain-blue: #1976D2;
  --deep-blue: #0D47A1;
  --black: #000000;
  --charcoal: #2C3E50;
  --sun-orange: #FF6F00;
  --fire-orange: #FF5722;
  --chalet-brown: #8D6E63;
  --light-brown: #BCAAA4;
  --purple: #9C27B0;
  --gray: #F5F5F5;
  --border: #E0E0E0;

  /* Info Card Position Controls */
  --info-card-horizontal: 80%; /* Horizontal position from left (0-100%) */
  --info-card-vertical: 70%;   /* Vertical position from top (0-100%) */
  --info-card-bottom-offset: 2rem; /* Distance from bottom of hero images */

  /* Top Gradient Overlay Controls */
  --overlay-gradient-size: 30%; /* How far the gradient extends from top (0-100%) */
  --overlay-max-darkness: 0.75;  /* Maximum darkness at top (0-1, where 1 is fully black) */
}

* {
  cursor: default;
}

a, button, .hero-thumbnail-image, .room-card-image, .room-thumbnails .room-thumbnail-image {
  cursor: pointer;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--snow-white);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main-content {
  flex: 1;
}

/* Homepage Video */
.homepage-video-container {
  position: relative;
  width: 100%;
  height: 100vh;
  max-height: 100vh;
  overflow: hidden;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  opacity: 1;
  visibility: visible;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}

.scroll-indicator:hover .scroll-indicator-text {
  color: var(--jacuzzi-blue);
}

.scroll-indicator:hover .scroll-indicator-arrow {
  color: var(--jacuzzi-blue);
}

.scroll-indicator-hidden {
  opacity: 0;
  visibility: hidden;
}

.scroll-indicator-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--snow-white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.scroll-indicator-arrow {
  font-size: 3rem;
  color: var(--snow-white);
  animation: bounce 2s infinite ease-in-out;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  transition: color 0.3s ease;
  cursor: pointer;
}

.scroll-indicator-text {
  cursor: pointer;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.homepage-video-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(184, 223, 255, 0.6);
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
}

.homepage-video-container::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to bottom, transparent 0%, var(--snow-white) 100%);
  pointer-events: none;
  z-index: 2;
}

.homepage-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.homepage-video-title {
  position: absolute;
  top: 20%;
  left: calc(50% + 130px);
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
}

.homepage-video-title-container {
  position: relative;
  display: inline-block;
}

.homepage-video-title-text {
  font-family: "Inter", sans-serif;
  font-size: 10rem;
  font-weight: 900;
  line-height: 1;
  margin: 0;
  letter-spacing: 0.05em;
  text-transform: none;
}

.homepage-video-title-layer {
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
}

.homepage-video-title-layer:nth-child(1) {
  color: rgba(144, 202, 249, 0.9);
  z-index: 4;
}

.homepage-video-title-layer:nth-child(2) {
  color: rgba(66, 165, 245, 0.7);
  z-index: 3;
}

.homepage-video-title-layer:nth-child(3) {
  color: rgba(25, 118, 210, 0.5);
  z-index: 2;
}

.homepage-video-title-layer:nth-child(4) {
  color: rgba(13, 71, 161, 0.3);
  z-index: 1;
}

.homepage-video-title-front {
  position: relative;
  color: var(--snow-white);
  z-index: 5;
}

@media (max-width: 768px) {
  .homepage-video-title {
    left: 50%;
  }

  .homepage-video-title-text {
    font-size: 3.5rem;
  }
}

/* Sidebar Navigation */
.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: 260px;
  height: 100vh;
  background: rgba(178, 220, 254, 0.5); /* More blue (jacuzzi-blue), more transparent */
  backdrop-filter: blur(10px);
  border-right: 2px solid var(--light-blue);
  padding: 0;
  overflow-y: auto;
  z-index: 1000;
  box-shadow: 2px 0 10px rgba(13, 71, 161, 0.15);
}

.sidebar-brand {
  padding: 0 2rem 0.5rem;
  border-bottom: none;
  margin-bottom: 1rem;
}

.sidebar-brand h1 {

  font-family: "Inter", sans-serif;
  color: var(--mountain-blue);
  font-size: 3.0rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  cursor: pointer;
}

.sidebar-nav {
  list-style: none;
  padding: 0 1rem;
}

.sidebar-nav > li {
  margin-bottom: 0.5rem;
}

.sidebar-nav > li > a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--deep-blue);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
}

.sidebar-nav > li > a:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--sun-orange);
  transform: translateX(5px);
}

.sidebar-nav > li > a.active {
  text-decoration: underline;
  color: var(--sun-orange);
  background: rgba(255, 111, 0, 0.1);
}

.sidebar-nav .submenu {
  list-style: none;
  margin-top: 0.5rem;
  padding-left: 0.5rem;
  border-left: 2px solid rgba(66, 165, 245, 0.3);
  margin-left: 1rem;
}

.sidebar-nav .submenu > li {
  margin-bottom: 0.25rem;
}

.sidebar-nav .submenu > li > a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--deep-blue);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

.sidebar-nav .submenu > li > a:hover {
  background: rgba(255, 255, 255, 0.6);
  color: var(--sun-orange);
  padding-left: 1.5rem;
}

.sidebar-nav .submenu > li > a.active {
  text-decoration: underline;
  color: var(--sun-orange);
  background: rgba(255, 111, 0, 0.1);
}

.sidebar-nav .submenu .submenu {
  margin-top: 0.25rem;
  padding-left: 0.5rem;
  border-left: 2px solid rgba(255, 111, 0, 0.2);
  margin-left: 0.5rem;
}

.sidebar-nav .submenu .submenu a {
  padding: 0.4rem 0.75rem;
  font-size: 0.95rem;
  color: var(--deep-blue);
  font-weight: 600;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.sidebar-nav .submenu .submenu a:hover {
  background: rgba(255, 255, 255, 0.4);
  color: var(--fire-orange);
  padding-left: 1rem;
}

/* Ripple effect for navigation links */
.sidebar-nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  background: rgba(255, 111, 0, 0.4);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease, opacity 0.6s ease;
  opacity: 0;
  pointer-events: none;
}

.sidebar-nav a:active::after {
  width: 300px;
  height: 300px;
  opacity: 1;
  transition: width 0s, height 0s, opacity 0s;
}

/* Mobile Menu */
.mobile-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--snow-white);
  border-bottom: 2px solid var(--light-blue);
  padding: 0 1rem;
  align-items: center;
  justify-content: space-between;
  z-index: 1001;
  box-shadow: 0 2px 10px rgba(13, 71, 161, 0.1);
}

.mobile-header h1 {
  color: var(--mountain-blue);
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--mountain-blue);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Main Content */
.main-content {
  margin-left: 0;
}

/* Responsive */

/* Breakpoint: Mobile (≤768px) - Sidebar & Mobile Navigation */
@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .mobile-header {
    display: flex;
  }

  .main-content {
    margin-left: 0;
    margin-top: 60px;
  }

  .section {
    padding: 6rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
    margin-left: auto;
  }

  .homepage-video-container {
    height: calc(100vh - 60px);
    max-height: calc(100vh - 60px);
  }

  /* Add scroll padding to account for fixed header on anchor links */
  html {
    scroll-padding-top: 60px;
  }

  /* Elevate scroll indicator to avoid iOS Safari bottom bar */
  .scroll-indicator {
    bottom: calc(2rem + 70px);
    white-space: nowrap;
    max-width: 90vw;
  }

  .scroll-indicator-text {
    font-size: 0.9rem;
    white-space: nowrap;
  }
}

/* Hero Section */
.hero {
  position: relative;
  background: transparent;
  overflow: visible;
  margin-left: 0;
}

/* Background Images - Absolute positioned */
.hero-images {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 0;
  height: 800px;
  padding: 0;
  width: 100%;
  z-index: 0;
}

.hero-main-image,
.hero-side-image {
  position: relative;
  overflow: hidden;
  background: var(--gray);
  border-radius: 0;
  box-shadow: none;
}

.hero-main-image img,
.hero-side-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateY(var(--scroll-offset, 0));
  transition: transform 0.1s linear;
}

.hero-main-image::after,
.hero-side-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, var(--overlay-max-darkness)) 0%,
    rgba(0, 0, 0, 0) var(--overlay-gradient-size)
  );
  pointer-events: none;
  z-index: 1;
}

/* Content Container - Centered vertical stack */
.hero-content {
  position: relative;
  margin-left: 260px;
  margin-right: 1rem;
  padding-top: 6rem;
  padding-bottom: 0;
  margin-bottom: 0;
  min-height: 820px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}

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

.hero-title h1 {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  color: var(--snow-white);
  font-size: 6rem;
  font-weight: 900;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.02em;
  background: rgba(13, 71, 161, 0.5);
  backdrop-filter: blur(15px);
  padding: 2rem 4rem;
  border-radius: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-info-card {
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(20px);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
  border: 3px solid rgba(255, 255, 255, 0.5);
  max-width: 700px;
  width: 100%;
  text-align: center;
}

.hero-tagline {
  color: var(--deep-blue);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hero-dates {
  color: var(--deep-blue);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.hero-price {
  color: var(--sun-orange);
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1;
}

.cta-button {
  background: var(--sun-orange);
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 111, 0, 0.4);
}

.cta-button:hover {
  background: var(--fire-orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 111, 0, 0.6);
}

.hero-price-button {
  font-size: 1.8rem;
  transition: all 0.15s ease;
}

.hero-price-button:active {
  transform: translateY(2px) scale(0.98);
  box-shadow: 0 2px 10px rgba(255, 111, 0, 0.4);
}

.hero-thumbnails {
  position: relative;
  margin-left: 260px;
  margin-right: 1rem;
  margin-top: 0rem;
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding: 1rem 1rem 1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 4px;
  box-shadow: none;
  scrollbar-width: thin;
  scrollbar-color: var(--sun-orange) var(--light-blue);
}

.hero-thumbnails::-webkit-scrollbar {
  height: 8px;
}

.hero-thumbnails::-webkit-scrollbar-track {
  background: var(--light-blue);
  border-radius: 4px;
}

.hero-thumbnails::-webkit-scrollbar-thumb {
  background: var(--sun-orange);
  border-radius: 4px;
}

.hero-thumbnail-image {
  height: 180px;
  width: 135px;
  min-width: 135px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.3s ease;
  background-color: var(--gray);
  border-radius: 4px;
  border: 2px solid transparent;
}

.hero-thumbnail-image:hover {
  transform: translateY(-3px);
  border-color: var(--sun-orange);
  box-shadow: 0 4px 15px rgba(255, 111, 0, 0.3);
}

/* Responsive Hero */

/* Breakpoint: Large Desktop (≤1580px) */
@media (max-width: 1580px) {
  .hero-title h1 {
    font-size: 4.5rem;
    padding: 1.5rem 2rem;
  }

  .hero-price-button {
    font-size: 1.6rem;
  }
}

/* Breakpoint: Desktop (≤1280px) */
@media (max-width: 1280px) {
  .hero-title h1 {
    font-size: 4rem;
    padding: 1.5rem 2.75rem;
  }

  .hero-price-button {
    font-size: 1.4rem;
  }
}

/* Breakpoint: Tablet (≤1024px) */
@media (max-width: 1024px) {
  .hero-content {
    padding-top: 3rem;
    gap: 5rem;
    min-height: 600px;
  }

  .hero-title h1 {
    font-size: 3.5rem;
    padding: 1.25rem 2.5rem;
  }

  .hero-price-button {
    font-size: 1.3rem;
  }

  .hero-side-image {
    display: none;
  }

  .hero-images {
    grid-template-columns: 1fr;
  }
}

/* Breakpoint: Mobile (≤768px) */
@media (max-width: 768px) {
  .hero {
    margin-left: 0;
  }

  .hero-images {
    grid-template-columns: 1fr;
    height: 400px;
  }

  .hero-content {
    margin-left: 0;
    margin-right: 0;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    gap: 6rem;
    min-height: 420px;
  }

  .hero-title h1 {
    font-size: 2rem;
    padding: 1rem 1.5rem;
  }

  .hero-price-button {
    font-size: 1.15rem;
  }

  .hero-info-card {
    max-width: 100%;
    padding: 1.5rem;
  }

  .hero-thumbnails {
    margin-left: 0;
  }
}

/* Section Styles */
.section {
  padding: 6rem 3rem;
  max-width: 1400px;
  margin-left: max(260px, calc(260px + (100vw - 260px - 1400px) / 2));
  margin-right: auto;
}

.section-blue-gradient {
  background: linear-gradient(to bottom, var(--snow-white) 0%, var(--light-blue) 50%, var(--snow-white) 100%);
  transition: background 2.0s ease; /* Slow smooth transition */
}

.section-blue-gradient:hover {
  background: linear-gradient(to bottom, var(--snow-white) 0%, rgba(255, 111, 0, 0.15) 50%, var(--snow-white) 100%);
  transition: background 2.0s ease; /* Slow smooth transition */
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.section-grid.reverse .section-text {
  order: 2;
}

.section-grid.reverse .section-features {
  order: 1;
}

.section-title {
  font-family: "Inter", sans-serif;
  font-size: 2.8rem;
  color: var(--deep-blue);
  margin-bottom: 2rem;
  font-weight: 800;
  line-height: 1.2;
}

.section-text p {
  font-family: "Inter", sans-serif;
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

/* Feature Icons */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
}

.feature-item {
  text-align: center;
  padding: 2rem 1rem;
  background: transparent;
  border: none;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-item:hover .feature-text {
  color: var(--sun-orange);
}

.feature-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  display: block;
  filter: grayscale(100%) brightness(0.4) sepia(100%) hue-rotate(180deg) saturate(400%);
  position: relative;
}

.feature-icon-image {
  width: 3.5rem;
  height: 3.5rem;
  object-fit: contain;
  display: inline-block;
}

.feature-item:hover .feature-icon {
  filter: grayscale(100%) brightness(0.6) sepia(100%) hue-rotate(10deg) saturate(800%);
}

/* Crossed icon with ❌ overlay */
.icon-crossed {
  position: relative;
  display: inline-block;
}

.icon-crossed .base-icon {
  position: relative;
  z-index: 1;
}

.icon-crossed .cross {
  position: absolute;
  top: -0.2em;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 1.0em;
  filter: none !important;
}

.feature-text {
  font-size: 0.9rem;
  color: var(--sky-blue);
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

/* Responsive Sections */

/* Breakpoint: Mobile (≤768px) - Sections */
@media (max-width: 768px) {
  .section {
    padding: 4rem 1.5rem;
    margin-left: 0 !important;
  }

  .section-grid,
  .section-grid.reverse {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .section-grid.reverse .section-text {
    order: 1;
  }

  .section-grid.reverse .section-features {
    order: 2;
  }

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

/* Location Map */
.location-map {
  width: 100%;
  height: 500px;
  background: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mountain-blue);
  font-size: 2rem;
  border-radius: 4px;
  border: 2px solid var(--jacuzzi-blue);
}

/* Wide Image Divider */
.wide-divider {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin: 3rem 0;
  box-shadow: 0 8px 40px rgba(13, 71, 161, 0.15);
}

.wide-divider img {
  width: 100%;
  height: auto;
  display: block;
}

/* Rooms Section */
.rooms-amenities {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0 3rem;
  flex-wrap: wrap;
}

/* Floor plans section - always full width below rooms */
.floor-plans-section {
  background: rgba(255, 255, 255, 0.3);
  padding: 2rem;
  border-radius: 8px;
  border: 2px solid var(--light-blue);
  margin-top: 3rem;
}

.floor-plans-collapsible summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.floor-plans-collapsible summary::-webkit-details-marker {
  display: none;
}

.floor-plans-collapsible .collapse-icon {
  transition: transform 0.3s ease;
  font-size: 1.2rem;
  color: var(--mountain-blue);
}

.floor-plans-collapsible[open] .collapse-icon {
  transform: rotate(180deg);
}

.floor-plans-collapsible h3 {
  color: var(--deep-blue);
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}

/* Floor plans grid - responsive layout for images */
.floor-plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.floor-plan-img {
  margin-bottom: 1.5rem;
  background: var(--snow-white);
  padding: 1rem;
  border-radius: 4px;
  border: 2px solid var(--light-blue);
  transition: all 0.3s ease;
}

.floor-plan-img:hover {
  border-color: var(--sun-orange);
  box-shadow: 0 8px 30px rgba(255, 111, 0, 0.2);
  transform: translateX(5px);
}

.floor-plan-img img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

.floor-plan-label {
  font-size: 0.9rem;
  color: var(--charcoal);
  font-weight: 600;
  margin-top: 0.5rem;
}

.rooms-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.room-card {
  background: var(--snow-white);
  border: 2px solid var(--light-blue);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: grid;
  grid-template-columns: 320px 1fr 300px;
  gap: 0;
}

.room-card:hover {
  border-color: var(--sun-orange);
  box-shadow: 0 8px 30px rgba(255, 111, 0, 0.2);
  transform: translateX(5px);
}

.room-card-images {
  display: flex;
  gap: 0;
  height: 100%;
}

/* 1 image - takes full vertical space */
.room-card-images-1 .room-card-image {
  width: 320px;
}

/* 2 images - main image + 1 thumbnail that takes full height */
.room-card-images-2 .room-card-image {
  width: 200px;
}

.room-card-images-2 .room-thumbnail-image {
  width: 120px;
  height: 100%;
}

/* 3+ images - main image + 2 thumbnails split vertically */
.room-card-images:not(.room-card-images-1):not(.room-card-images-2) .room-card-image {
  width: 200px;
}

.room-card-image {
  height: 100%;
  background-color: var(--gray);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  object-fit: cover;
  object-position: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.room-card-image:hover {
  transform: scale(1.02);
}

.room-card-content {
  padding: 1.5rem 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.room-card h3 {
  color: var(--deep-blue);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.room-card p {
  color: var(--charcoal);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.room-feature {
  font-size: 0.9rem;
  color: var(--sky-blue);
  background: transparent;
  padding: 0.4rem 0.8rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.room-card:hover .room-feature {
  color: var(--sun-orange);
}

.room-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
}

.room-thumbnail-image {
  width: 120px;
  height: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--gray);
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.room-thumbnail-image:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.room-card-price {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  background: white;
  border-left: 2px solid var(--light-blue);
}

/* Responsive Rooms */

/* Breakpoint: Tablet (≤1024px) - Rooms */
@media (max-width: 1024px) {
  .room-card {
    grid-template-columns: 1fr;
  }

  .room-card-image {
    height: 220px;
  }

  /* Floor plans grid adjusts for smaller screens */
  .floor-plans-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
}

/* Breakpoint: Mobile (≤768px) - Rooms */
@media (max-width: 768px) {
  .floor-plans-section {
    padding: 1.5rem;
  }

  .floor-plans-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .floor-plan-img img {
    max-height: 300px;
  }
}

/* Flow Section - Visual Timeline */
.timeline-container {
  position: relative;
  margin: 4rem 0;
  padding: 4rem 0;
}

.timeline-line {
  position: absolute;
  top: 50%;
  left: 5%;
  right: 5%;
  height: 4px;
  background: linear-gradient(to right, var(--light-blue) 0%, var(--sky-blue) 25%, var(--sun-orange) 50%, var(--fire-orange) 75%, var(--deep-blue) 100%);
  border-radius: 2px;
  z-index: 1;
}

.timeline-items {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  flex-wrap: nowrap;
  gap: 0;
}

.timeline-item {
  flex: 1;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Alternate positioning: odd items on top, even items on bottom */
.timeline-item:nth-child(odd) {
  flex-direction: column-reverse;
  padding-bottom: 3rem;
}

.timeline-item:nth-child(even) {
  flex-direction: column;
  padding-top: 3rem;
}

.timeline-marker {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--snow-white);
  border: 4px solid var(--deep-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(13, 71, 161, 0.2);
  transition: all 0.3s ease;
  position: relative;
}

.timeline-item:hover .timeline-marker {
  transform: scale(1.15);
  border-color: var(--sun-orange);
  box-shadow: 0 6px 25px rgba(255, 111, 0, 0.4);
}

.timeline-item:nth-child(1) .timeline-marker { border-color: var(--light-blue); }      /* Morning Ritual */
.timeline-item:nth-child(2) .timeline-marker { border-color: var(--deep-blue); }       /* First Tracks (skiing) - darker blue */
.timeline-item:nth-child(3) .timeline-marker { border-color: var(--jacuzzi-blue); }    /* Mountain Lunch */
.timeline-item:nth-child(4) .timeline-marker { border-color: var(--light-blue); }      /* Afternoon Mix - light blue */
.timeline-item:nth-child(5) .timeline-marker { border-color: var(--sun-orange); }      /* Golden Hour */
.timeline-item:nth-child(6) .timeline-marker { border-color: var(--fire-orange); }     /* Group Dinner */
.timeline-item:nth-child(7) .timeline-marker { border-color: var(--purple); }          /* Evening Vibes - purple */

.timeline-time {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--deep-blue);
  margin-bottom: 0.5rem;
  background: transparent;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
}

.timeline-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.timeline-desc {
  font-size: 0.75rem;
  color: var(--charcoal);
  line-height: 1.4;
  max-width: 200px;
}

.community-box {
  margin-top: 3rem;
  padding: 2.5rem;
  background: transparent;
  border-radius: 4px;
  border-left: 5px solid var(--sun-orange);
  box-shadow: none;
}

.community-box h3 {
  color: var(--deep-blue);
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 1.4rem;
}

.community-box p {
  color: var(--charcoal);
  line-height: 1.8;
}

/* FAQ Section */
.faq-list {
  max-width: 1400px;
  margin: 3rem auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.faq-item {
  padding: 2rem;
  border-bottom: 2px solid var(--light-blue);
  transition: all 0.3s ease;
}

.faq-item:hover {
  padding-left: 2.5rem;
  background: linear-gradient(to right, var(--light-blue) 0%, transparent 100%);
}

.faq-question {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--deep-blue);
  margin-bottom: 0.75rem;
}

.faq-answer {
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.8;
}

/* Internal page links */
a.page-link {
  color: var(--mountain-blue);
  text-decoration: underline;
  text-decoration-color: var(--sky-blue);
  text-underline-offset: 3px;
  transition: all 0.2s ease;
}

a.page-link::after {
  content: " ↗";
  font-size: 0.85em;
  color: var(--sky-blue);
  transition: transform 0.2s ease;
  display: inline-block;
}

a.page-link:hover {
  color: var(--sun-orange);
  text-decoration-color: var(--sun-orange);
}

a.page-link:hover::after {
  transform: translate(2px, -2px);
  color: var(--sun-orange);
}

a.page-link:active {
  text-decoration: none;
}

/* Gallery */
.gallery-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: galleryFadeIn 0.3s ease;
  cursor: pointer;
}

@keyframes galleryFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.gallery-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 1em;
  padding-bottom: 120px;
  position: relative;
}

.gallery-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--snow-white);
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10001;
}

.gallery-close:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.05);
}

.gallery-close-text {
  font-size: 1rem;
}

.gallery-close-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.gallery-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  min-height: 0;
}

.gallery-main-image {
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 8px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.gallery-nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--snow-white);
  font-size: 3rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.gallery-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

.gallery-nav-left {
  left: 2rem;
}

.gallery-nav-right {
  right: 2rem;
}

.gallery-thumbnails {
  display: flex;
  gap: 1rem;
  justify-content: center;
  overflow-x: auto;
  padding: 1rem 0;
  max-width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
}

.gallery-thumbnail {
  width: 180px;
  height: 120px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0.6;
  border: 3px solid transparent;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.gallery-thumbnail:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

.gallery-thumbnail-active {
  opacity: 1;
  border-color: var(--sun-orange);
  transform: scale(1.05);
}

/* Responsive gallery */
@media (max-width: 768px) {
  .gallery-container {
    padding: 1rem;
  }

  .gallery-close {
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    pointer-events: auto;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
  }

  .gallery-close-text {
    display: none;
  }

  .gallery-nav {
    font-size: 2rem;
    width: 45px;
    height: 45px;
    pointer-events: auto;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
  }

  .gallery-nav-left {
    left: 0.5rem;
  }

  .gallery-nav-right {
    right: 0.5rem;
  }

  .gallery-main {
    pointer-events: none;
  }

  .gallery-main-image {
    pointer-events: auto;
  }

  .gallery-thumbnail {
    width: 80px;
    height: 55px;
  }
}

/* Simple Gallery */
.simple-gallery {
  margin: 1rem 0;
}

.simple-gallery *,
.simple-gallery *::before,
.simple-gallery *::after {
  filter: none !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
}

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1rem;
}

.gallery-grid .gallery-thumbnail {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  background: transparent;
  flex: 0 0 auto;
  width: 500px;
  height: auto;
}

@media (max-width: 768px) {
  .gallery-grid .gallery-thumbnail {
    width: 400px;
  }
}

@media (max-width: 600px) {
  .gallery-grid .gallery-thumbnail {
    width: 100%;
  }
}

/* Slopes Gallery */
.slopes-gallery {
  margin: 2rem 0;
}

.slopes-gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.slopes-gallery-thumbnail {
  height: 256px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  filter: none !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
}

.slopes-gallery-thumbnail:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .slopes-gallery-thumbnail {
    height: 128px;
  }

  .slopes-gallery-grid {
    gap: 0.5rem;
  }
}

/* Slopes Gallery Fullscreen - Custom styles */
.slopes-gallery-fullscreen .gallery-nav {
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.slopes-gallery-fullscreen .gallery-nav:hover {
  background: rgba(0, 0, 0, 0.8);
  border-color: rgba(255, 255, 255, 0.8);
}

.slopes-gallery-fullscreen .gallery-thumbnails {
  padding: 0.5rem 0;
}

.slopes-gallery-fullscreen .gallery-thumbnail {
  width: 120px;
  height: 80px;
}

@media (max-width: 768px) {
  .slopes-gallery-fullscreen .gallery-thumbnail {
    width: 80px;
    height: 55px;
  }
}

.gallery-thumbnail::before,
.gallery-thumbnail::after {
  content: none !important;
  display: none !important;
}

.gallery-thumbnail:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.gallery-thumbnail img {
  width: 100%;
  height: auto;
  object-fit: contain;
  cursor: pointer;
  display: block;
  filter: none !important;
  opacity: 1 !important;
  background: transparent;
  color: transparent;
  mix-blend-mode: normal !important;
  -webkit-filter: none !important;
}

.gallery-thumbnail:hover img {
  filter: none !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
}

.gallery-overlay {
  cursor: pointer;
}

.gallery-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  cursor: default;
}

/* Page Navigation */
.page-navigation {
  margin: 4rem 0 2rem;
  padding: 0;
  width: 100%;
}

.page-nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
  width: 100%;
}

.page-nav-button {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.75rem;
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--snow-white) 100%);
  border: 2px solid var(--sky-blue);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 180px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.page-nav-button:hover {
  background: linear-gradient(135deg, var(--sky-blue) 0%, var(--light-blue) 100%);
  border-color: var(--mountain-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(66, 165, 245, 0.3);
}

.page-nav-previous {
  justify-content: flex-start;
  margin-right: auto;
}

.page-nav-next {
  justify-content: flex-end;
  margin-left: auto;
}

.page-nav-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.page-nav-label {
  font-size: 0.85rem;
  color: var(--charcoal);
  opacity: 0.7;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.page-nav-title {
  font-size: 1.1rem;
  color: var(--deep-blue);
  font-weight: 700;
}

.page-nav-arrow {
  font-size: 2rem;
  color: var(--mountain-blue);
  line-height: 1;
}

.page-nav-button:hover .page-nav-arrow {
  color: var(--sun-orange);
}

.page-nav-button:hover .page-nav-title {
  color: var(--mountain-blue);
}

/* Responsive page navigation */
@media (max-width: 768px) {
  .page-navigation {
    padding: 0 1rem;
    margin: 3rem 0 1rem;
  }

  .page-nav-container {
    flex-direction: column;
    gap: 1rem;
    margin-left: 0; /* Remove sidebar offset on mobile */
    margin-right: 0;
  }

  .page-nav-button {
    min-width: unset;
    width: 100%;
  }

  .page-nav-next {
    margin-left: 0;
  }

  .page-nav-label {
    font-size: 0.75rem;
  }

  .page-nav-title {
    font-size: 1rem;
  }

  .page-nav-arrow {
    font-size: 1.5rem;
  }
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--deep-blue) 0%, var(--mountain-blue) 100%);
  color: var(--snow-white);
  padding: 1.5rem 2rem;
  text-align: center;
  margin-left: 260px;
}

footer h3 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

footer p {
  opacity: 0.9;
  font-size: 1rem;
  margin: 0.5rem 0;
}

.footer-separator {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin: 0.75rem auto;
  width: 100%;
  max-width: 800px;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
  opacity: 0.7;
}

/* ========================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ======================================== */

/* Breakpoint: Tablet (≤1024px) - Typography */
@media (max-width: 1024px) {
  .section-title {
    font-size: 2.2rem;
  }

  .section-text p {
    font-size: 1rem;
  }
}

/* Breakpoint: Mobile (≤768px) - Typography & General */
@media (max-width: 768px) {
  /* Typography adjustments */
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

  .section-text p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
  }

  /* LocationSection mobile layout */
  .location-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .location-map {
    height: 300px;
    order: 1;
  }

  .location-grid > div:nth-child(2) {
    order: 2;
    padding: 1.5rem !important;
  }

  .location-grid > div:nth-child(3) {
    order: 3;
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Location features - tighter spacing on mobile */
  .location-features {
    gap: 0.5rem !important;
  }

  .location-features .feature-item {
    padding: 0.75rem 0.25rem;
  }

  /* Timeline mobile improvements */
  .timeline-container {
    padding: 2rem 0;
    margin: 2rem 0;
  }

  .timeline-line {
    display: none;
  }

  .timeline-items {
    flex-direction: column;
    gap: 1.5rem;
  }

  .timeline-item {
    flex-direction: row !important;
    padding: 0 !important;
    align-items: center;
    text-align: left;
    gap: 1rem;
  }

  .timeline-marker {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .timeline-content {
    flex: 1;
  }

  .timeline-time {
    font-size: 0.85rem;
  }

  .timeline-label {
    font-size: 1rem;
  }

  .timeline-description {
    font-size: 0.85rem;
  }

  .timeline-item:hover .timeline-marker {
    transform: scale(1.05);
  }

  /* FAQ mobile layout */
  .faq-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .faq-item {
    padding: 1.5rem;
  }

  .faq-item:hover {
    padding-left: 1.5rem;
  }

  .faq-question {
    font-size: 1rem;
  }

  .faq-answer {
    font-size: 0.9rem;
  }

  /* Rooms amenities mobile - reduce spacing only, keep icon sizes */
  .rooms-amenities {
    gap: 0.25rem;
    margin: 1rem 0 1.5rem;
  }

  .rooms-amenities .feature-item {
    min-width: auto;
    padding: 0.5rem 0.25rem;
  }

  .feature-item .feature-icon {
    margin-bottom: 0.5rem;
  }

  /* Feature grids general spacing reduction - tighter to fit 2 per line */
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.5rem;
  }

  .feature-item {
    padding: 0.75rem 0.25rem;
  }

  /* Room cards mobile */
  .room-cards {
    gap: 2rem;
  }

  .room-card {
    padding: 1rem;
  }

  .room-card-image {
    height: 200px !important;
  }

  .room-thumbnails {
    gap: 0.5rem;
  }

  .room-thumbnail-image {
    height: 60px;
  }

  .room-details h3 {
    font-size: 1.3rem;
  }

  .room-details p {
    font-size: 0.9rem;
  }

  .room-features {
    gap: 0.75rem;
  }

  /* Floor plans already compact at 1024px breakpoint */

  /* Footer mobile */
  footer {
    padding: 1.5rem 1.5rem;
    margin-left: 0;
  }

  footer h3 {
    font-size: 1.5rem;
  }

  footer p {
    font-size: 1rem;
  }

  /* Community text */
  .community-text {
    font-size: 0.9rem;
    padding: 1.5rem;
  }
}

/* Breakpoint: Small Mobile (≤480px) */
@media (max-width: 480px) {
  .section {
    padding: 3rem 1rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .hero-title h1 {
    font-size: 1.5rem;
    padding: 0.75rem 1.5rem;
  }

  .hero-price-button {
    font-size: 1rem;
  }

  .hero-info-card {
    padding: 1rem;
  }

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

  .hero-dates,
  .hero-price {
    font-size: 0.85rem;
  }

  /* Very small screens: keep 2 columns for features, tighter spacing */
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.25rem;
  }

  .feature-item {
    padding: 0.5rem 0.15rem;
  }

  /* Very small screens: location features stay 2 columns, tighter spacing */
  .location-features {
    gap: 0.25rem !important;
  }

  .location-features .feature-item {
    padding: 0.5rem 0.15rem;
  }

  .location-grid > div:nth-child(2) {
    padding: 1rem !important;
  }

  .location-grid > div:nth-child(2) p {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
  }

  .timeline-marker {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .faq-item {
    padding: 1rem;
  }

  .room-card-image {
    height: 180px !important;
  }
}

/* ========================================
   MOBILE MENU OVERLAY
   ======================================== */

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.mobile-menu-content {
  position: fixed;
  top: 0;
  left: 0;
  width: min(85%, 320px);
  height: 100vh;
  background: rgba(227, 242, 253, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 2px 0 20px rgba(13, 71, 161, 0.3);
  overflow-y: auto;
  animation: slideIn 0.3s ease;
}

/* Breakpoint: Extra Small Mobile (≤400px) */
@media (max-width: 400px) {
  .mobile-menu-content {
    width: 100%;
  }
}

@keyframes slideIn {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 2px solid var(--light-blue);
  background: rgba(255, 255, 255, 0.5);
}

.mobile-menu-header h1 {
  font-family: "Inter", sans-serif;
  color: var(--mountain-blue);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--deep-blue);
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
  transition: all 0.2s ease;
  border-radius: 4px;
}

.mobile-menu-close:hover {
  background: rgba(255, 111, 0, 0.1);
  color: var(--sun-orange);
  transform: rotate(90deg);
}

.mobile-nav {
  padding: 1rem 0;
}

.mobile-nav .sidebar-nav {
  padding: 0 1rem;
}

.mobile-nav .sidebar-nav > li > a {
  font-size: 1.1rem;
}

.mobile-nav .sidebar-nav .submenu > li > a {
  font-size: 1.05rem;
}

.mobile-nav .sidebar-nav .submenu .submenu a {
  font-size: 1rem;
}

/* Ripple effect for mobile menu links */
.mobile-nav .sidebar-nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  background: rgba(255, 111, 0, 0.4);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease, opacity 0.6s ease;
  opacity: 0;
  pointer-events: none;
}

.mobile-nav .sidebar-nav a:active::after {
  width: 300px;
  height: 300px;
  opacity: 1;
  transition: width 0s, height 0s, opacity 0s;
}

/* ========================================
   HOMEPAGE INTRO SECTION
   ======================================== */

.intro-with-image {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin: 2rem 0;
}

.intro-image {
  width: 300px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(13, 71, 161, 0.15);
}

.intro-text {
  flex: 1;
}

.intro-text p {
  margin: 0;
  line-height: 3;
}

/* ========================================
   HOMEPAGE GALLERY
   ======================================== */

.homepage-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item.with-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(184, 223, 255, 0.3);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 1;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .intro-with-image {
    flex-direction: column;
  }

  .intro-image {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

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

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

/* Sidebar slogan */
.sidebar-slogan {
  font-family: "Inter", sans-serif;
  color: var(--sun-orange);
  font-size: 1.3rem;
  font-weight: 500;
  margin: 0 0 0 0;
  font-style: italic;
  letter-spacing: 0.5px;
}

/* Mobile header slogan */
.mobile-slogan {
  font-family: "Inter", sans-serif;
  color: var(--sun-orange);
  font-size: 0.85rem;
  font-weight: 500;
  margin: 0.25rem 0 0 0;
  font-style: italic;
  letter-spacing: 0.5px;
}

/* ========================================
   NEWSLETTER SECTION
   ======================================== */

.newsletter-section {
  margin: 3rem 0 2rem;
  padding: 0;
  background: transparent;
  border-radius: 0;
  text-align: center;
}

.newsletter-section h2 {
  color: var(--mountain-blue);
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.newsletter-section p {
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.newsletter-section iframe {
  border-radius: 0;
  box-shadow: none;
}

.newsletter-iframe {
  width: 100%;
  min-height: 500px;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

/* Sidebar brand with logo */


.sidebar-brand h1 {
  margin: 0 0 0 0;
}

/* Mobile header with logo */
.mobile-header-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.mobile-brand-text {
  display: flex;
  flex-direction: column;
}

.mobile-header h1 {
  margin: 0 0 0.25rem 0;
}

/* Update sidebar brand layout - logo behind text */
.sidebar-brand-link {
  position: relative;
  flex-direction: column;
  align-items: center;
  width: 100%;
  cursor: pointer;
}

.sidebar-logo {
  position: absolute;
  height: 200px;
  object-fit: contain;
  top: 16px;
  left: 0%;
  width: 100%;
  z-index: 0;
  opacity: 0.55;
  background-image: url('/after.ski_logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top center;
}

.mobile-logo {
  background-image: url('/after.ski_logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top center;
}

.sidebar-brand:hover .sidebar-logo {
  opacity: 0.45;
}

.sidebar-brand:active .sidebar-logo {
  opacity: 0.35;
  transform: translate(2px, 2px);
}

.sidebar-brand-text {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-top: 100px;
  text-shadow: 0 0 8px #fff ;
}

/*.sidebar-brand-text:hover {
  text-shadow: 0 0 16px #fff ;
}*/

/* Update mobile header layout - logo behind text */
.mobile-header-link {
  position: relative;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}

.mobile-logo {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 150px;
  z-index: 0;
  opacity: 0.3;
}

.mobile-brand-text {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-top: 1.5rem;
}

