/* style.css */
:root {
  --nature-deep: #14532D;
  --earth-light: #22C55E;
  --sand-base: #F8FAFC;
  --text-core: #1E293B;
  --gradient-vitality: linear-gradient(135deg, var(--nature-deep), var(--earth-light));
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Open Sans', sans-serif;
  --ui-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  --ui-radius: 12px;
}

body {
  font-family: var(--font-body);
  color: var(--text-core);
  background-color: var(--sand-base);
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex-grow: 1;
}

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

/* Custom Semantic Classes to avoid footprints */
.wellness-wrapper {
  max-w-7xl;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.nav-layer {
  background-color: #ffffff;
  box-shadow: var(--ui-shadow);
  position: sticky;
  top: 0;
  z-index: 50;
}

.action-trigger {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  color: #ffffff;
  border-radius: var(--ui-radius);
  font-weight: 600;
  text-align: center;
  transition: opacity 0.3s ease;
  text-decoration: none;
}

.action-trigger:hover {
  opacity: 0.9;
}

.info-panel {
  background: #ffffff;
  border-radius: var(--ui-radius);
  box-shadow: var(--ui-shadow);
  overflow: hidden;
}

.circle-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: bold;
}

/* Form Styles */
.input-field {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #CBD5E1;
  border-radius: var(--ui-radius);
  font-family: var(--font-body);
  margin-top: 0.5rem;
  background: #ffffff;
  transition: border-color 0.2s;
}

.input-field:focus {
  outline: none;
  border-color: var(--earth-light);
}

/* Cookie Banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--text-core);
  color: #ffffff;
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .cookie-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.cookie-btn-accept {
  background: var(--gradient-vitality);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: var(--ui-radius);
  font-weight: bold;
  cursor: pointer;
  border: none;
}

.cookie-btn-decline {
  background: #4B5563;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: var(--ui-radius);
  font-weight: bold;
  cursor: pointer;
  border: none;
}

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