/* ---------- RESET ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ---------- THEME ---------- */
:root {
  --bg: #f7f3ee;
  --bg-alt: #ffffff;
  --accent: #6ea18b;
  --accent-soft: #d9eadf;
  --accent-dark: #335344;
  --text: #2a2a2a;
  --muted: #777777;
  --danger: #c54b5c;
  --radius-lg: 1.5rem;
  --radius-md: 1rem;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.08);
  --shadow-subtle: 0 8px 22px rgba(0, 0, 0, 0.05);
}

/* ---------- GLOBAL ---------- */
html, body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #fdfaf6, #f3eee8);
  color: var(--text);
  line-height: 1.6;
}

/* Helper to keep content centered */
.container {
  width: min(1100px, 100% - 3rem);
  margin: 0 auto;
}

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: linear-gradient(
    to right,
    rgba(247, 243, 238, 0.95),
    rgba(255, 255, 255, 0.95)
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at 20% 0%, #ffe7c6, #6ea18b);
  box-shadow: var(--shadow-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
}

.brand-text-main {
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.brand-text-sub {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 1.2rem;
}

.nav a {
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--muted);
  padding-bottom: 0.2rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.nav a:hover {
  color: var(--accent-dark);
  border-color: var(--accent);
  transform: translateY(-1px);
}

.nav a.active {
  color: var(--accent-dark);
  border-color: var(--accent-dark);
  font-weight: 600;
}

/* ---------- HERO ---------- */
.hero {
  padding: 3.5rem 0 3rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--accent-dark);
  margin-bottom: 0.5rem;
}

.hero-highlight {
  background: linear-gradient(120deg, #ffe0c2, #dfeee4);
  padding: 0.15rem 0.4rem;
  border-radius: 999px;
  box-decoration-break: clone;
}

.hero-subtitle {
  font-size: 0.98rem;
  color: var(--muted);
  max-width: 32rem;
  margin-bottom: 1.5rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.hero-badge {
  font-size: 0.8rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(110, 161, 139, 0.2);
  box-shadow: var(--shadow-subtle);
  color: var(--accent-dark);
}
.hero-image {
  position: absolute;
  inset: 0;
  background-image: url("garden-yoga-group.png"); /* your group image file */
  background-size: cover;
  background-position: center;
  filter: saturate(1.05);
}

/* Buttons */
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #6ea18b, #4f7b67);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.18);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.9);
  color: var(--accent-dark);
  border: 1px solid rgba(110, 161, 139, 0.3);
}

.btn-ghost:hover {
  background: #ffffff;
  transform: translateY(-1px);
}

/* Hero image card */
.hero-card {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  background: radial-gradient(circle at 20% 0%, #ffe7c6, #6ea18b);
  box-shadow: var(--shadow-soft);
  min-height: 260px;
}

.hero-image {
  position: absolute;
  inset: 0;
background-image: url("garden-yoga-group.png");/* <-- put your garden/brunette yoga image here */
  background-size: cover;
  background-position: center;
  filter: saturate(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    140deg,
    rgba(27, 43, 34, 0.65),
    rgba(27, 43, 34, 0.15),
    rgba(255, 255, 255, 0.01)
  );
}

.hero-card-content {
  position: relative;
  color: #fff;
  padding: 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.hero-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.9;
}

.hero-quote {
  font-size: 0.95rem;
  margin-top: 0.7rem;
  max-width: 18rem;
}

.hero-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.8rem;
  font-size: 0.78rem;
  opacity: 0.9;
}

/* ---------- SECTIONS ---------- */
.section {
  padding: 1rem 0 3rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent-dark);
}

.section-subtitle {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 28rem;
}

/* Cards grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.2rem;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.card-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-dark);
  margin-bottom: 0.4rem;
}

.card-meta {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.card-text {
  font-size: 0.88rem;
  color: var(--text);
}

/* ---------- CONTACT / FORM ---------- */
.contact-card {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(255, 255, 255, 0.9);
  display: grid;
  gap: 1.4rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 1.5rem;
}

.form-field {
  margin-bottom: 0.9rem;
}

.form-label {
  font-size: 0.85rem;
  color: var(--muted);
  display: block;
  margin-bottom: 0.25rem;
}

.input,
.textarea,
.select {
  width: 100%;
  padding: 0.65rem 0.8rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(143, 164, 153, 0.5);
  background: rgba(249, 248, 246, 0.9);
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.textarea {
  min-height: 110px;
  resize: vertical;
}

.input:focus,
.textarea:focus,
.select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(110, 161, 139, 0.4);
  background: #fff;
}

/* ---------- FOOTER ---------- */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.8);
  padding: 1.2rem 0 1.8rem;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 1rem;
}

.site-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.8rem;
}

.footer-links a:hover {
  color: var(--accent-dark);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 800px) {
  .site-header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
    gap: 0.9rem;
    flex-wrap: wrap;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 230px;
    order: -1;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}
