/* =========================================
   1. VARIABLES & SETTINGS
   ========================================= */
:root {

  

/* --- Colors --- *
  --image-border: rgb(0, 0, 0, 1.0);
  --color-bg-dark: #0a0e14;
  --color-bg-med: #323b48;
  --color-bg-panel: rgba(30, 40, 50, 0.5);
  --color-text-primary: #ffffff;
  --color-text-secondary: rgb(220, 230, 240);
  --color-primary: #295e9b;
  --color-primary-hover: #1e4a7a;
  --bg-light: #f4f4f4;
  --text-dark: #111; /

  /* --- Sizing & Layout --- */
  --logo-size: clamp(250px, 30vw + 100px, 480px);
  --content-max-width: 1200px;
  --vw-per-cm: calc(100vw / 48);
  --desktop-img-gap: 0.075;

  /* --- Transitions & Borders --- */
  --transition-base: 0.2s ease;
  --transition-slow: 0.5s ease;
  --radius-md: 8px;
  --radius-lg: 12px;
}

/* =========================================
   2. GLOBAL RESET & BASE
   ========================================= */
html {
  width: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  font-family: var(--font-family-base, 'Inter', sans-serif);
  background: var(--color-bg-dark);
  color: var(--color-text-primary);
  overflow-x: hidden;
}

.sr-only {
  position: absolute;
  width: 1px; 
  height: 1px; 
  padding: 0; 
  margin: -1px;
  overflow: hidden; 
  clip: rect(0,0,0,0); 
  border: 0;
}

/* =========================================
   3. HERO SECTION & VIDEO
   ========================================= */
.video-hero-section {
  position: relative;
  width: 100%;
  height: 100vh;   /* fallback for older browsers */
  height: 100svh;  /* excludes browser chrome on iOS */
  overflow: hidden;
}

.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.dim-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  transition: background-color var(--transition-slow);
  z-index: 1;
  pointer-events: none;
  contain: layout style paint;
}

.dim-overlay.active {
  background-color: rgb(0 0 0 / 50%);
}

.logo-container:hover ~ .dim-overlay,
.logo-container:focus-within ~ .dim-overlay {
  background-color: var(--color-overlay-light);
}

.hero {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--header-height);
}

.logo-container {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  max-width: var(--logo-size);
  margin: 0 auto;
  pointer-events: auto;
}

.logo-container-end {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  max-width: calc(.85 * var(--logo-size));
  aspect-ratio: 1.6 / 1;
  margin: 0 auto 0;
  pointer-events: auto;
}

.logo,
.logo-menu {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: auto;
  opacity: 0.8;
  will-change: opacity, visibility;
  filter: brightness(0) invert(1) drop-shadow(0.5px 0.5px 0 var(--primary-color)) drop-shadow(5px 5px 10px var(--shadow-dark));
  -webkit-filter: brightness(0) invert(1) drop-shadow(0.5px 0.5px 0 var(--primary-color)) drop-shadow(5px 5px 10px var(--shadow-dark));  transition: opacity var(--transition-slow);
}

.logo.hidden,
.logo-menu.hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.logo-nav-button {
  position: absolute;
  display: block;
  cursor: pointer;
  background: transparent;
  border: none;
  font-family: var(--font-family-base);
  font-size: var(--text-base);
  font-weight: var(--font-weight-medium);
  color: var(--color-button-label);
  z-index: 3;
  min-height: 2.75em;
  transition: background var(--transition-base);
}

.logo-nav-explore { bottom: -30%; left: 55%; width: 40%; height: 20%; }
.logo-nav-book { bottom: -30%; left: 28%; width: 27%; height: 20%; }
.logo-nav-reservations { bottom: -30%; left: 6%; width: 22%; height: 20%; }

/* =========================================
   4. ABOUT SECTION
   ========================================= */
.about-section {
  position: relative;
  z-index: 10;
  background: var(--color-background-light);
  overflow-x: hidden;
  color: var(--text-dark);
  width: 100%;
}

.layout-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  min-height: auto;
}

.about-group {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(80, 85, 0, 0.10);
  transition: background-color var(--transition-slow);
  z-index: 15;
  pointer-events: none;
  contain: layout style paint;
}

/* --- Typography --- */
.about-header, 
.about-title {
  font-size: var(--text-3xl);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  text-align: center;
  margin: 1.5rem 0 0 0;
  color: #000;
}

.about-subtitle {
  font-size: var(--text-lg);
  text-align: center;
  font-weight: 600;
  margin: 0;
  color: #333;
}

.about-text,
.about-body {
  font-size: var(--text-base);
  line-height: 1.4;
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
  margin: 0;
}

.about-subheading {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 700;
  border-bottom: 4px solid #000;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  display: inline-block;
}

/* --- Media / Images --- */
.about-media,
.about-media-crop-1 {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 3px;
  overflow: hidden;
}

.about-media-crop-2 {
  width: 66%;
  aspect-ratio: 4/3;
  border-radius: 3px;
  overflow: hidden;
}

.about-media img,
.about-media-crop-1 img,
.about-media-crop-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

#image4, 
#image6 {
  margin-bottom: 0.25rem;
}

/* --- Dividers --- */
#div1a, 
#div1b {
  width: 100%;
  height: 20px;
  background-repeat: round;
  background-size: contain;
  margin: 1rem 0;
}
#div1a { background-image: url('/static/content/images/icons/div_tile_1.png'); }
#div1b { background-image: url('/static/content/images/icons/div_tile_2.png'); }

#div2 {
  width: 100%;
  max-width: 200px;
  height: 50px;
  background-image: url('/static/content/images/icons/icon_div_tile_1.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin: 1.5rem auto;
  display: block; 
}

#div3 {
  width: 100vw;
  height: 40px;
  background-image: url('/static/content/images/icons/camper_div_tile3.png');
  background-repeat: round;
  background-position: center bottom;
  background-size: contain;
  
  /* ADJUST SPACING HERE: 
     Increases/decreases the space between the element directly above it (logo-container-end) */
  margin-top: 1rem; 
  
  position: relative;
  left: 50%;
  margin-left: -50vw;
}

/* --- Block Specific Adjustments --- */
.block-intro {
  text-align: center;
  gap: 1rem;
}

.media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem;
  width: 100%;
}

@media (width <= 600px) {
  .media-grid {
    grid-template-columns: 1fr;
  }
}



/* Focus slightly to the right and bottom for the second image */
#image1 img {
  object-position: 0% 80%; 
}

/* Focus slightly to the right and bottom for the second image */
#image1b img {
  object-position: 70% 40%; 
}

/* =========================================
   5. CTA & UTILITIES
   ========================================= */
.cta-section h2 {
  color: var(--color-text-secondary);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: var(--transition-base);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--color-primary);
  color: white;
}

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

.btn-secondary {
  background: rgba(255,255,255,0.1);
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.logo-end {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: auto;
  opacity: 1.0;
}

.logo-nav-button-end {
  position: absolute;
  display: block;
  cursor: pointer;
  background: transparent;
  border: none;
  font-family: var(--font-family-base);
  font-size: var(--text-base);
  font-weight: var(--font-weight-medium);
  color: var(--color-button-label);
  z-index: 3;
  min-height: 2.75em;
  transition: background var(--transition-base);
}

.logo-nav-explore-end { bottom: 0%; left: 55%; width: 40%; height: 20%; }
.logo-nav-book-end { bottom: 0%; left: 28%; width: 27%; height: 20%; }
.logo-nav-reservations-end { bottom: 0%; left: 6%; width: 22%; height: 20%; }