/* Fae & Fang — Shared Styles
   Palette: Navy #1A1A2E | Coral #D94F3A | Teal #2A9D8F | Amber #F4A030 | Cream #FAF8F5
   Fonts: Poppins (headers) + Lora (body)
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&family=Lora:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  --navy:  #1A1A2E;
  --coral: #D94F3A;
  --teal:  #2A9D8F;
  --amber: #F4A030;
  --cream: #FAF8F5;
  --cream-dark: #F0EDE7;
  --text:  #2A2A3E;
  --text-light: #6B6B7E;
  --max-w: 860px;
  --max-w-wide: 1100px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--text);
  font-family: 'Lora', Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 {
  font-family: 'Poppins', sans-serif;
  color: var(--navy);
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--coral); }

p { margin-bottom: 1.2rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--coral); text-decoration: none; }
a:hover { text-decoration: underline; }

strong { font-weight: 600; }

/* ── LAYOUT ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container--wide {
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 4.5rem 0;
}

/* ── NAV ── */
.site-nav {
  background: var(--navy);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(26,26,46,0.18);
}
.site-nav .container--wide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.nav-brand {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--cream) !important;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-brand span { color: var(--coral); }
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--cream-dark);
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--amber); }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  cursor: pointer;
  border: none;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }

.btn--primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 4px 14px rgba(217,79,58,0.35);
}
.btn--primary:hover { box-shadow: 0 6px 20px rgba(217,79,58,0.45); }

.btn--secondary {
  background: transparent;
  color: var(--coral);
  border: 2px solid var(--coral);
}
.btn--secondary:hover { background: rgba(217,79,58,0.06); }

.btn--teal {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 4px 14px rgba(42,157,143,0.3);
}
.btn--teal:hover { box-shadow: 0 6px 20px rgba(42,157,143,0.4); }

.btn--navy {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 4px 14px rgba(26,26,46,0.25);
}

/* ── LABEL CHIP ── */
.label-chip {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}
.label-chip--coral { background: var(--coral); color: #fff; }
.label-chip--teal  { background: var(--teal);  color: #fff; }
.label-chip--amber { background: var(--amber); color: var(--navy); }

/* ── HERO ── */
.hero {
  background: var(--navy);
  color: var(--cream);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(217,79,58,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 80%, rgba(42,157,143,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.hero h1 { color: var(--cream); }
.hero h1 em { color: var(--coral); font-style: normal; }
.hero .subhead {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  color: rgba(250,248,245,0.7);
  margin: 0.5rem 0 1.5rem;
  font-weight: 400;
}
.hero p {
  color: rgba(250,248,245,0.85);
  font-size: 1.05rem;
  max-width: 580px;
  margin-bottom: 2rem;
}
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.hero-note {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  color: rgba(250,248,245,0.55);
  letter-spacing: 0.02em;
}
.hero-note strong { color: var(--amber); }

/* ── FEATURED PRODUCT ── */
.featured-product {
  background: #fff;
  border-left: 5px solid var(--coral);
  border-radius: 0 8px 8px 0;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(26,26,46,0.07);
}
.product-tagline {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 1rem;
}
.product-inside {
  font-size: 0.95rem;
  color: var(--text-light);
  font-style: italic;
  margin: 1.2rem 0;
  line-height: 1.8;
}
.product-price {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  margin: 1.2rem 0 0.5rem;
}
.product-price .promo-code {
  display: inline-block;
  background: var(--amber);
  color: var(--navy);
  font-size: 0.8rem;
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  margin-left: 0.5rem;
  letter-spacing: 0.05em;
}
.product-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
  align-items: center;
}
.product-note {
  font-size: 0.82rem;
  color: var(--text-light);
  font-style: italic;
  margin-top: 0.75rem;
}

/* ── SERIES PREVIEW ── */
.series-section {
  background: var(--navy);
  color: var(--cream);
}
.series-section h2 { color: var(--cream); }
.series-section p { color: rgba(250,248,245,0.8); }
.series-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}
.series-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 1.2rem;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(250,248,245,0.65);
}
.series-card.featured-card {
  background: rgba(217,79,58,0.15);
  border-color: var(--coral);
  color: var(--cream);
}
.series-card .card-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.4rem;
}

/* ── EMAIL SIGNUP ── */
.signup-section {
  background: var(--cream-dark);
  text-align: center;
}
.signup-section h2 { margin-bottom: 1rem; }
.signup-section .lead { max-width: 520px; margin: 0 auto 2rem; color: var(--text-light); }
.signup-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  max-width: 520px;
  margin: 0 auto 1rem;
}
.signup-form input {
  flex: 1 1 200px;
  padding: 0.85rem 1.1rem;
  border: 2px solid rgba(26,26,46,0.15);
  border-radius: 4px;
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  background: #fff;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
.signup-form input:focus { border-color: var(--teal); }
.signup-note {
  font-size: 0.78rem;
  color: var(--text-light);
  font-style: italic;
}

/* ── COMING SOON CARDS ── */
.spellbook-coming {
  background: var(--cream-dark);
}
.coming-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.coming-card {
  background: #fff;
  border-radius: 8px;
  padding: 1.8rem;
  box-shadow: 0 2px 12px rgba(26,26,46,0.05);
  border-top: 3px solid var(--teal);
}
.coming-card h3 { font-size: 1.05rem; margin-bottom: 0.6rem; }
.coming-card p { font-size: 0.9rem; color: var(--text-light); margin: 0; }

/* ── ABOUT PAGE ── */
.about-hero {
  background: var(--navy);
  color: var(--cream);
  padding: 5rem 0 4rem;
}
.about-hero h1 { color: var(--cream); margin-bottom: 1rem; }
.about-hero p { color: rgba(250,248,245,0.8); max-width: 620px; font-size: 1.05rem; }

.about-section { padding: 4rem 0; }
.about-section:nth-child(even) { background: var(--cream-dark); }

.about-section h2 {
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--coral);
  display: inline-block;
}

.about-section p { max-width: 680px; }

.about-section .section-closer {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--coral);
  margin-top: 2rem;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--navy);
  color: rgba(250,248,245,0.6);
  padding: 3rem 0;
  font-size: 0.88rem;
  font-family: 'Poppins', sans-serif;
}
.site-footer .container--wide {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand {
  font-weight: 700;
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  list-style: none;
}
.footer-links a {
  color: rgba(250,248,245,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--amber); }
.footer-copy { color: rgba(250,248,245,0.35); margin-top: 0.5rem; font-size: 0.78rem; }

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  background: var(--navy);
  padding: 4rem 0 3.5rem;
  color: var(--cream);
}
.page-header h1 { color: var(--cream); margin-bottom: 0.75rem; }
.page-header p { color: rgba(250,248,245,0.75); max-width: 580px; font-size: 1.05rem; }

/* ── DIVIDER ── */
.divider {
  width: 60px;
  height: 4px;
  background: var(--coral);
  border-radius: 2px;
  margin: 1.5rem 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  section { padding: 3rem 0; }
  .hero { padding: 4rem 0 3.5rem; }
  .featured-product { padding: 1.75rem; }
  .nav-links { gap: 1.2rem; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
}
