/* fit.aurapharmlab.com — extends parent brand with one energy accent */

:root {
  /* Inherited from parent brand (kept identical so cross-site visits feel cohesive) */
  --bg: #FAF7F0;
  --bg-card: #FFFCF4;
  --ink: #1F3D26;
  --ink-soft: #3D6B43;
  --gold: #9C7C3E;
  --rule-soft: #C9B89A;

  /* New fit-only accent — warm coral, picked for energy without clashing with the academic gold.
     Deepened from #D9633F to #B0451E so white-on-accent and accent-on-light text both clear WCAG AA. */
  --accent: #B0451E;
  --accent-soft: #F2A98C;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'minion-pro', Georgia, serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.66;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Eyebrow used above hero headlines: "INDIA'S FAT LOSS DOCTOR" */
.eyebrow {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

h1, h2, h3 {
  font-family: 'minion-pro', Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
}

h1 { font-size: 2.6rem; margin-bottom: 18px; }
h2 { font-size: 2rem; margin-bottom: 14px; }
h3 { font-size: 1.4rem; margin-bottom: 10px; }

p { margin-bottom: 14px; color: var(--ink-soft); }

/* Links use a deeper gold than the brand --gold (#9C7C3E, only 3.65:1 on the cream bg);
   #7A5C2A clears WCAG AA for small text while keeping the gold identity. */
a { color: #7A5C2A; text-decoration: none; }
a:hover { color: var(--ink); text-decoration: underline; }
/* Inline links inside running text need a non-colour cue (WCAG: don't rely on colour
   alone). Excludes buttons and standalone nav/footer-column links. */
p a:not(.btn), li a:not(.btn), .footer-cols > div:first-child a { text-decoration: underline; }

.container { max-width: 980px; margin: 0 auto; padding: 0 24px; }

.section { padding: 80px 0; }

/* Buttons */
.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 3px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.15s, color 0.15s;
}
.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover { background: var(--ink); color: white; text-decoration: none; }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-secondary:hover { background: var(--ink); color: white; text-decoration: none; }

/* Header */
.site-header {
  padding: 24px 0;
  border-bottom: 1px solid var(--rule-soft);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; }
.site-header .brand { display: flex; align-items: center; gap: 14px; }
.site-header .brand-logo { height: 32px; }
.site-header .strapline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.site-header nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  margin-left: 24px;
  color: var(--ink);
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: var(--bg);
  padding: 48px 0;
  margin-top: 80px;
  font-size: 0.9rem;
}
.site-footer a { color: var(--accent-soft); }
.site-footer a:hover { color: white; }
.site-footer .footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 700px) {
  .site-footer .footer-cols { grid-template-columns: 1fr; gap: 24px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .section { padding: 56px 0; }
}
