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

:root {
  /* Thematic Variables */
  --edu-dark: #1e293b;
  --edu-light: #f8fafc;
  --edu-accent: #059669; /* Emerald */
  --edu-secondary: #0ea5e9; /* Light Blue */
  
  --font-accent: 'Playfair Display', serif;
  --font-base: 'Inter', sans-serif;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  --gradient-accent: linear-gradient(135deg, #059669 0%, #047857 100%);
  --gradient-overlay: linear-gradient(to right, rgba(30, 41, 59, 0.9), rgba(30, 41, 59, 0.6));
}

html {
  font-family: var(--font-base);
  scroll-behavior: smooth;
  background-color: var(--edu-light);
  color: var(--edu-dark);
}

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

/* Unique Block Classes */
.wellness-nav-wrapper {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 50;
}

.joint-intro-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  color: #ffffff;
  overflow: hidden;
}

.joint-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.joint-overlay-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.movement-grid-layout {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.ergonomics-item-box {
  background: #ffffff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border-top: 4px solid var(--edu-accent);
}

.ergonomics-item-box:hover {
  transform: translateY(-5px);
}

/* Specific List Styling for Reserve Page */
.approach-list-ordered {
  list-style: none;
  padding: 0;
  counter-reset: custom-counter;
}

.approach-list-ordered li {
  counter-increment: custom-counter;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.95rem;
}

.approach-list-ordered li::before {
  content: counter(custom-counter);
  background-color: var(--edu-accent);
  color: white;
  min-width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Action Buttons */
.edu-action-btn {
  display: inline-block;
  color: #ffffff;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: opacity 0.3s ease;
  text-align: center;
  border: none;
  cursor: pointer;
}

.edu-action-btn:hover {
  opacity: 0.9;
}

/* Base Footer */
.wellness-footer-area {
  color: #ffffff;
  padding: 3rem 0;
  margin-top: auto;
}

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

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

.cookie-btn-accept {
  background-color: var(--edu-accent);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
}

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

/* Custom form inputs */
.edu-input-field {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  margin-top: 0.25rem;
  font-family: var(--font-base);
}
.edu-input-field:focus {
  outline: none;
  border-color: var(--edu-accent);
  box-shadow: 0 0 0 2px rgba(5, 150, 105, 0.2);
}