:root {
  /* Site Theme: Light/Modern/Contrast */
  --primary-shade: #1e3a8a; /* Deep Blue for trust and foundation */
  --accent-hue: #f97316; /* Vibrant Orange for action and vitality */
  --surface-light: #f8fafc; /* Slate 50 for main backgrounds */
  --ink-dark: #0f172a; /* Slate 900 for text readability */
  
  --font-heading: 'Oswald', sans-serif;
  --font-text: 'Inter', sans-serif;

  --gradient-main: linear-gradient(135deg, var(--primary-shade) 0%, #3b82f6 100%);
  --gradient-accent: linear-gradient(135deg, #ea580c 0%, var(--accent-hue) 100%);
  --gradient-dim: linear-gradient(180deg, #ffffff 0%, var(--surface-light) 100%);
}

html {
  font-family: var(--font-text);
  color: var(--ink-dark);
  background-color: var(--surface-light);
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6, .heading-font {
  font-family: var(--font-heading);
}

/* Custom Semantic Classes */
.vitality-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.top-nav-zone {
  background-color: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 50;
}

.base-footer-area {
  background-color: var(--ink-dark);
  color: var(--surface-light);
  padding: 4rem 0 2rem 0;
}

/* Cookie Banner Styles */
#cookie-banner {
  background-color: var(--ink-dark);
  color: var(--surface-light);
  box-shadow: 0 -4px 10px rgba(0,0,0,0.2);
}

.cookie-btn-accept {
  background-color: var(--accent-hue);
  color: white;
  transition: opacity 0.3s ease;
}
.cookie-btn-accept:hover {
  opacity: 0.9;
}

.cookie-btn-decline {
  background-color: #4b5563;
  color: white;
  transition: background-color 0.3s ease;
}
.cookie-btn-decline:hover {
  background-color: #374151;
}

/* Mobile Menu */
#mobile-menu {
  display: none;
}
#mobile-menu.active {
  display: block;
}

/* Numbered Lists for Reserve Page */
.info-numbered-list {
  counter-reset: custom-counter;
  list-style: none;
  padding: 0;
}
.info-numbered-list li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1rem;
}
.info-numbered-list li::before {
  counter-increment: custom-counter;
  content: counter(custom-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--accent-hue);
  color: white;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
}

/* Layout Utilities */
.min-h-screen-layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.content-flex-grow {
  flex: 1 0 auto;
}