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

:root {
  /* Modern Contrast Palette for Healthy Lifestyle */
  --primary-color: #1b4332; /* Dark Green */
  --accent-color: #52b788;  /* Light Green */
  --bg-color: #f8f9fa;      /* Off White */
  --text-color: #212529;    /* Dark Grey */
  
  --font-heading: 'Oswald', sans-serif;
  --font-text: 'Open Sans', sans-serif;
}

body {
  font-family: var(--font-text);
  color: var(--text-color);
  background-color: var(--bg-color);
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

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

.text-primary { color: var(--primary-color); }
.text-accent { color: var(--accent-color); }
.bg-primary { background-color: var(--primary-color); }
.bg-accent { background-color: var(--accent-color); }
.bg-light { background-color: var(--bg-color); }

.btn-accent {
  background-color: var(--accent-color);
  color: #fff;
  transition: all 0.3s ease;
}
.btn-accent:hover {
  background-color: var(--primary-color);
  color: #fff;
}

/* Specific Card List Style for Reserve Page */
.numbered-list-styled {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
}

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

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

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

/* Cookie Banner (JS Version) */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary-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: 50px;
  border: none;
  display: inline-block;
  font-weight: bold;
  font-family: inherit;
  transition: all 0.3s ease;
}

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

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

/* Utilities */
.overlay {
  background: rgba(27, 67, 50, 0.7);
}