/* ═══════════════════════════════════════════════════════════════
   SimplyHere — Shared Styles
   Premium editorial wellness aesthetic
   ═══════════════════════════════════════════════════════════════ */

:root {
  --green: #3C7A5E;
  --green-dark: #1D4E38;
  --green-accent: #1D9E75;
  --green-pale: #E8F3ED;
  --cream: #FAF7F0;
  --cream-warm: #F7FAF6;
  --charcoal: #2C2C2C;
  --text-body: #6B6B6B;
  --text-muted: #999;
  --border: rgba(60,122,94,0.1);
  --radius: 20px;
  --shadow: 0 4px 30px rgba(0,0,0,0.06);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ── Typography ─────────────────────────────────────── */
h1, h2, h3 { font-family: 'Crimson Pro', serif; font-weight: 400; line-height: 1.2; }
h1 { font-size: clamp(36px, 6vw, 56px); }
h2 { font-size: clamp(30px, 5vw, 48px); }
h3 { font-size: clamp(22px, 3vw, 32px); }

.section-tag {
  font-family: 'Poppins', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1rem;
  display: block;
}

/* ── Animations ─────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal.delay-1 { transition-delay: 0.1s; }
  .reveal.delay-2 { transition-delay: 0.2s; }
  .reveal.delay-3 { transition-delay: 0.3s; }
  .reveal.delay-4 { transition-delay: 0.4s; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ── Navigation ─────────────────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.25rem 2rem;
  transition: all 0.4s ease;
  background: transparent;
}
.site-nav.scrolled {
  background: rgba(250,247,240,0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 2rem;
  box-shadow: 0 1px 10px rgba(0,0,0,0.04);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  text-decoration: none; display: flex; align-items: center;
}
.nav-logo img {
  height: 28px; width: auto;
}
.nav-logo-text {
  font-family: 'Crimson Pro', serif; font-size: 1.5rem;
  color: var(--charcoal); text-decoration: none;
}
.nav-logo-text i { font-style: italic; font-weight: 300; }
.nav-logo-text b { font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.85rem; font-weight: 400; color: var(--text-body);
  text-decoration: none; transition: color 0.3s;
}
.nav-links a:hover { color: var(--green); }
.nav-cta {
  font-size: 0.82rem; font-weight: 500; color: white !important;
  background: var(--green); padding: 0.55rem 1.4rem;
  border-radius: 100px; text-decoration: none !important;
  transition: all 0.3s;
}
.nav-cta:hover { background: var(--green-dark); transform: translateY(-1px); }

/* Mobile nav */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: 0.5rem; z-index: 1010;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--charcoal); margin: 5px 0;
  transition: all 0.3s; border-radius: 2px;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 1005;
  background: rgba(250,247,240,0.98);
  backdrop-filter: blur(30px);
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Crimson Pro', serif; font-size: 1.8rem;
  color: var(--charcoal); text-decoration: none;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
}

/* ── App Mockup Images ─────────────────────────────── */
.mockup-img {
  height: auto;
  display: block;
  image-rendering: auto;
}

/* ── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem; font-weight: 500;
  padding: 0.85rem 2rem; border-radius: 100px;
  text-decoration: none; cursor: pointer;
  transition: all 0.3s; border: none;
}
.btn-primary {
  background: var(--green); color: white;
  box-shadow: 0 4px 16px rgba(60,122,94,0.25);
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--green);
  border: 1.5px solid var(--green);
}
.btn-outline:hover { background: var(--green); color: white; }

/* ── App Store Badges ───────────────────────────────── */
.store-badges { display: flex; gap: 1rem; flex-wrap: wrap; }
.store-badge {
  height: 44px; border-radius: 8px;
  opacity: 0.85; transition: all 0.3s; cursor: pointer;
  object-fit: contain;
}
.store-badge:hover { opacity: 1; transform: translateY(-2px); }

/* ── Footer ─────────────────────────────────────────── */
.site-footer {
  background: var(--green-dark); color: white;
  padding: 5rem 2rem 2rem;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 4rem;
}
.footer-brand {
  font-family: 'Crimson Pro', serif;
}
.footer-brand .logo {
  font-size: 1.5rem; margin-bottom: 1rem; display: block;
}
.footer-brand .logo i { font-style: italic; font-weight: 300; }
.footer-brand .logo b { font-weight: 700; }
.footer-brand p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem; color: rgba(255,255,255,0.5);
  line-height: 1.7; max-width: 280px;
}
.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}
.footer-col a {
  display: block; font-size: 0.85rem; color: rgba(255,255,255,0.65);
  text-decoration: none; margin-bottom: 0.75rem; transition: color 0.3s;
}
.footer-col a:hover { color: white; }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p {
  font-size: 0.78rem; color: rgba(255,255,255,0.3);
}
.footer-bottom a {
  font-size: 0.78rem; color: rgba(255,255,255,0.3);
  text-decoration: none; transition: color 0.3s;
}
.footer-bottom a:hover { color: rgba(255,255,255,0.6); }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── Pull Quote ─────────────────────────────────────── */
.pull-quote {
  border-left: 3px solid var(--green);
  padding: 1.5rem 0 1.5rem 2rem;
  margin: 2rem 0;
}
.pull-quote p {
  font-family: 'Crimson Pro', serif;
  font-size: clamp(18px, 2.5vw, 24px);
  font-style: italic; font-weight: 300;
  color: var(--green-dark); line-height: 1.6;
}

/* ── Section Spacing ────────────────────────────────── */
.section { padding: 7rem 2rem; }
.section-dark { background: var(--green-dark); color: white; }
.section-cream { background: var(--cream); }
.section-warm { background: var(--cream-warm); }
.text-center { text-align: center; }

/* ── Shared JS ──────────────────────────────────────── */
