@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  /* Site Colors - 4 Custom Contrasting Variables */
  --heart-dark: #0f172a;        /* Dark Slate */
  --circulate-light: #f8fafc;   /* Slate 50 / Creamy */
  --pulse-accent: #059669;      /* Emerald 600 - Healthy Green */
  --pressure-warn: #e11d48;     /* Rose 600 - Contrast Accent */

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--heart-dark) 0%, #1e293b 100%);
  --gradient-accent: linear-gradient(135deg, var(--pulse-accent) 0%, #047857 100%);

  /* Fonts */
  --font-heading: 'Playfair Display', serif;
  --font-text: 'Inter', sans-serif;

  /* Spacing & Layout */
  --edu-pad: 2rem;
  --radius-soft: 12px;
}

/* Base Styles */
html {
  font-family: var(--font-text);
  color: var(--heart-dark);
  background-color: var(--circulate-light);
  scroll-behavior: smooth;
}

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

/* Unique Custom Classes for Layout Validation */
.wellness-top-bar {
  background-color: var(--circulate-light);
  border-bottom: 1px solid #e2e8f0;
}

.edu-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--edu-pad);
}

.action-trigger {
  font-family: var(--font-text);
  font-weight: 600;
  border-radius: var(--radius-soft);
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
}

.action-trigger:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.info-block {
  background: #ffffff;
  border-radius: var(--radius-soft);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  padding: 2rem;
}

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

/* Cookie Banner Styles */
#cookie-banner {
  background-color: var(--heart-dark);
  color: var(--circulate-light);
  border-top: 4px solid var(--pulse-accent);
}

.cookie-btn-acc {
  background-color: var(--pulse-accent);
  color: #fff;
}
.cookie-btn-dec {
  background-color: #4B5563;
  color: #fff;
}

/* Numbered lists for Reserve page */
.numbered-habit-list {
  list-style: none;
  padding-left: 0;
}

.numbered-habit-list li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.numbered-habit-list li::before {
  content: counter(list-counter);
  counter-increment: list-counter;
  position: absolute;
  left: 0;
  top: -2px;
  width: 24px;
  height: 24px;
  background-color: var(--pressure-warn);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
}

.reset-counter {
  counter-reset: list-counter;
}

/* Minimum height wrapper for policies */
.policy-viewport {
  min-height: calc(100vh - 200px);
}