@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700;800&family=Open+Sans:wght@400;600&display=swap');

:root {
  --brand-main: #0D9488;
  --ui-base-dark: #1F2937;
  --tone-highlight: #F59E0B;
  --bg-canvas: #F9FAFB;
  --text-muted: #4B5563;
  --gradient-primary: linear-gradient(135deg, #0D9488 0%, #0F766E 100%);
  --font-accent: 'Montserrat', sans-serif;
  --font-reading: 'Open Sans', sans-serif;
}

/* Reset & Base */
html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-reading);
  background-color: var(--bg-canvas);
  color: var(--ui-base-dark);
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-accent);
  color: var(--ui-base-dark);
}

/* Typography */
.text-brand { color: var(--brand-main); }
.text-highlight { color: var(--tone-highlight); }
.bg-brand { background-color: var(--brand-main); }
.bg-canvas { background-color: var(--bg-canvas); }

/* Custom Unique Wrappers */
.vitality-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.lifestyle-navigation {
  background: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-links-cluster {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-anchor {
  font-family: var(--font-accent);
  font-weight: 600;
  color: var(--ui-base-dark);
  transition: color 0.3s ease;
}

.nav-anchor:hover {
  color: var(--brand-main);
}

/* Mobile Menu */
.mobile-nav-panel {
  display: none;
  background: white;
  border-top: 1px solid #e5e7eb;
}
.mobile-nav-panel.active {
  display: flex;
  flex-direction: column;
}

/* Thematic Buttons */
.action-trigger-main {
  display: inline-block;
  color: white;
  font-family: var(--font-accent);
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}
.action-trigger-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(13, 148, 136, 0.4);
}

/* Step Indicators */
.step-digit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: var(--tone-highlight);
  color: white;
  font-family: var(--font-accent);
  font-weight: 800;
  font-size: 1.5rem;
}

/* Numbered List styling for reserve.html */
.numbered-info-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
}
.numbered-info-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.numbered-info-list li::before {
  content: counter(li);
  counter-increment: li;
  position: absolute;
  left: 0;
  top: -2px;
  width: 1.5rem;
  height: 1.5rem;
  background-color: var(--brand-main);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
}
.numbered-info-list-container {
  counter-reset: li;
}

/* Forms */
.booking-input-field {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-family: var(--font-reading);
  transition: border-color 0.3s;
}
.booking-input-field:focus {
  outline: none;
  border-color: var(--brand-main);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.2);
}

/* Footer & Disclaimers */
.information-disclaimer {
  background-color: #f3f4f6;
  border-left: 4px solid var(--tone-highlight);
  padding: 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.bottom-base-zone {
  background-color: var(--ui-base-dark);
  color: white;
  padding: 3rem 0;
}

.bottom-base-zone a {
  color: #9ca3af;
}
.bottom-base-zone a:hover {
  color: white;
}

/* Cookie Banner Styles */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--ui-base-dark);
  color: white;
  z-index: 9999;
  padding: 1.5rem;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 768px) {
  #cookie-banner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.cookie-text-area {
  font-size: 0.9rem;
  max-width: 800px;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-btn-accept {
  background-color: var(--brand-main);
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
  cursor: pointer;
}

.cookie-btn-decline {
  background-color: #4B5563;
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
  cursor: pointer;
}