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

:root {
  /* Thematic Variables for Unique DOM */
  --brand-main: #0d9488; /* Teal 600 - Health, balance */
  --brand-hover: #0f766e;
  --ui-base-light: #f8fafc; /* Slate 50 */
  --ui-base-dark: #0f172a;  /* Slate 900 */
  --tone-highlight: #f59e0b; /* Amber 500 */
  --tone-highlight-hover: #d97706;
  --text-muted: #64748b;

  /* Fonts */
  --font-accent: 'Oswald', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  /* Gradients to be used via inline style */
  --gradient-primary: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  --gradient-secondary: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

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

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

main {
  flex: 1;
}

/* Unique Theme Classes */
.wellness-text-brand { color: var(--brand-main); }
.wellness-bg-brand { background-color: var(--brand-main); color: #fff; }
.wellness-bg-brand:hover { background-color: var(--brand-hover); }

.wellness-bg-accent { background-color: var(--tone-highlight); color: #fff; }
.wellness-bg-accent:hover { background-color: var(--tone-highlight-hover); }

.vitality-heading-xl {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.vitality-heading-lg {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
}

/* Shared Components with unique names */
.heart-nav-wrapper {
  background-color: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 50;
}

.pressure-footer-box {
  background-color: var(--ui-base-dark);
  color: var(--ui-base-light);
  border-top: 4px solid var(--brand-main);
}

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

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

.banner-action-accept {
  background-color: var(--tone-highlight);
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}
.banner-action-accept:hover {
  background-color: var(--tone-highlight-hover);
}

.banner-action-decline {
  background-color: #4B5563;
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}
.banner-action-decline:hover {
  background-color: #374151;
}

/* Custom Image Covers */
.image-cover-layer {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.number-indicator-badge {
  background-color: var(--brand-main);
  color: white;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  font-weight: bold;
  font-family: var(--font-accent);
}