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

:root {
  /* 4-color contrast palette */
  --color-base: #f8fafc;
  --color-dark: #0f172a;
  --color-primary: #059669; /* emerald-600 */
  --color-accent: #fbbf24; /* amber-400 */

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

  /* Gradients for inline usage */
  --grad-main: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(5, 150, 105, 0.8));
  --grad-light: linear-gradient(180deg, #ffffff, #f8fafc);
  --grad-accent: linear-gradient(to right, #059669, #10b981);
}

/* Base resets & typography */
html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-text);
  background-color: var(--color-base);
  color: var(--color-dark);
  scroll-behavior: smooth;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

/* Thematic structural classes (Randomized DOM) */
.wellness-zone {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.vitality-header {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 50;
}

.flex-row-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-item {
  color: var(--color-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-item:hover {
  color: var(--color-primary);
}

.btn-accent {
  background-color: var(--color-primary);
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-block;
  text-align: center;
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  color: #ffffff;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle svg {
  width: 28px;
  height: 28px;
  fill: var(--color-dark);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  height: calc(100vh - 60px);
  background-color: #ffffff;
  z-index: 40;
  flex-direction: column;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.mobile-menu-overlay.active {
  display: flex;
}

/* Typography styles */
.kino-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.kino-subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 2rem;
}

/* Footer layout */
.base-footer {
  background-color: var(--color-dark);
  color: #f1f5f9;
  padding: 3rem 0;
  margin-top: auto;
}

.disclaimer-block {
  font-size: 0.875rem;
  color: #94a3b8;
  border-top: 1px solid #334155;
  padding-top: 1.5rem;
  margin-top: 2rem;
  text-align: center;
}

/* Form Styles */
.form-input-field {
  width: 100%;
  padding: 1rem;
  border: 1px solid #cbd5e1;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  font-family: var(--font-text);
}
.form-input-field:focus {
  outline: 2px solid var(--color-primary);
  border-color: transparent;
}

/* Cookie Banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-dark);
  color: var(--color-base);
  padding: 1.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
}

.cookie-content-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
}

.btn-cookie-accept {
  background-color: var(--color-accent);
  color: var(--color-dark);
  padding: 0.5rem 1.5rem;
  border-radius: 0.25rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

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

/* Numbered List Steps */
.step-item-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: var(--color-accent);
  color: var(--color-dark);
  font-weight: 700;
  margin-right: 0.75rem;
}

/* Thematic sections */
.insight-graphic {
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  object-fit: cover;
  width: 100%;
}

.grid-3-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

/* Media Queries */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .cookie-content-wrapper {
    flex-direction: column;
  }
  .grid-3-layout {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) {
  .grid-3-layout {
    grid-template-columns: repeat(3, 1fr);
  }
  #cookie-banner .cookie-content-wrapper {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}