/* style.css */
:root {
  /* Color Palette - Vibrant & Contrast for Wellness */
  --primary-color: #0369a1; /* Sky Blue Dark */
  --secondary-color: #0284c7; /* Sky Blue */
  --accent-color: #f97316; /* Vibrant Orange */
  --light-color: #f0fdfa; /* Soft Teal/White */
  --dark-color: #0f172a; /* Slate Dark */
  --text-muted: #475569;

  /* Fonts */
  --font-heading: 'Montserrat', sans-serif;
  --font-text: 'Open Sans', sans-serif;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #0369a1 0%, #0284c7 100%);
  --gradient-accent: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  --gradient-light: linear-gradient(135deg, #ffffff 0%, #f0fdfa 100%);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-text);
  color: var(--dark-color);
  background-color: var(--light-color);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

/* Custom UI Components */
.btn-primary {
  background: var(--gradient-accent);
  color: #ffffff;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.6);
  color: #ffffff;
}

.btn-secondary {
  background: var(--gradient-primary);
  color: #ffffff;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(3, 105, 161, 0.4);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(3, 105, 161, 0.6);
  color: #ffffff;
}

.text-accent {
  color: var(--accent-color);
}

/* Header styling */
.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--dark-color);
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--accent-color);
}

/* Mobile Menu */
#mobile-menu {
  display: none;
  background-color: #ffffff;
}

#mobile-menu.active {
  display: block;
}

/* Forms */
.form-input {
  width: 100%;
  padding: 1rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-family: var(--font-text);
  margin-bottom: 1rem;
  transition: border-color 0.3s;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(3, 105, 161, 0.1);
}

/* Numbered Lists for Cards */
.custom-list {
  list-style: none;
  padding-left: 0;
}

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

.custom-list li::before {
  content: counter(my-counter);
  counter-increment: my-counter;
  position: absolute;
  left: 0;
  top: -2px;
  width: 1.5rem;
  height: 1.5rem;
  background-color: var(--accent-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
  font-family: var(--font-heading);
}

.card-wrapper {
  counter-reset: my-counter;
}

/* Cookie Banner (JS Version) */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--dark-color);
  color: #ffffff;
  padding: 1.5rem;
  text-align: center;
  z-index: 9999;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.3);
}

.cookie-btn {
  cursor: pointer;
  padding: 0.6rem 2rem;
  margin: 0.5rem;
  background-color: var(--accent-color);
  color: #ffffff;
  border-radius: 4px;
  border: none;
  display: inline-block;
  font-weight: bold;
  font-family: var(--font-heading);
  transition: all 0.3s ease;
}

.cookie-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.cookie-btn-alt {
  background-color: #4B5563;
}