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

:root {
  --ink: #0f1923;
  --slate: #2c3e50;
  --accent: #ffa200;
  --gold-light: #ffa200;
  --cream: #faf8f4;
  --white: #ffffff;
  --muted: #6b7280;
  --border: #e5e1d8;
  --card-bg: #ffffff;
  --section-alt: #f7f4ef;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
}

/*Image Logo*/
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;   /* makes it round */
    object-fit: cover;    /* keeps it nicely cropped */
}

/*Icons */
.stat-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.badge-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.org-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.amazon-icon {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  vertical-align: middle;
}
.social-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.contact-method-icon{
  width: 32px;
  height: 32px;
  object-fit: contain;
}
/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,248,244,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.07); }
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--ink); text-decoration: none;
  letter-spacing: -0.01em;
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--slate);
  font-size: 0.88rem; font-weight: 500; letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  background: var(--accent); color: var(--white) !important;
  padding: 0.45rem 1.1rem; border-radius: 6px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: #ff9d00 !important; color: var(--white) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: 0.3s; }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 100px 6vw 60px;
  gap: 4rem;
  position: relative;
  overflow: hidden;
}
.hero-bg-shape {
  position: absolute; top: -120px; right: -80px;
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(200,150,62,0.10) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero-left { max-width: 580px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(200,150,62,0.1); color: var(--accent);
  border: 1px solid rgba(200,150,62,0.25);
  padding: 0.3rem 0.9rem; border-radius: 100px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase; margin-bottom: 1.4rem;
}
.hero-tag::before { content: ''; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }
h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 900; line-height: 1.12;
  color: var(--ink); letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}
h1 em { font-style: italic; color: var(--accent); }
.hero-bio {
  font-size: 1.05rem; color: var(--muted);
  margin-bottom: 2rem; max-width: 480px; line-height: 1.75;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.btn-primary {
  background: var(--ink); color: var(--white);
  padding: 0.75rem 1.8rem; border-radius: 8px;
  text-decoration: none; font-weight: 600; font-size: 0.9rem;
  transition: background 0.2s, transform 0.2s;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-primary:hover { background: var(--slate); transform: translateY(-1px); }
.btn-outline {
  border: 1.5px solid var(--accent); color: var(--accent);
  padding: 0.75rem 1.8rem; border-radius: 8px;
  text-decoration: none; font-weight: 600; font-size: 0.9rem;
  transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-outline:hover { background: var(--accent); color: var(--white); transform: translateY(-1px); }
.hero-stats {
  display: flex; gap: 2.5rem; padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.stat-item { }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem; font-weight: 700; color: var(--ink); line-height: 1;
}
.stat-label { font-size: 0.78rem; color: var(--muted); margin-top: 2px; }

.hero-right { display: flex; justify-content: center; align-items: center; }
.hero-photo-wrap {
  position: relative; width: 400px; height: 460px;
}
.hero-photo-card {
  width: 100%; height: 100%; border-radius: 20px;
  overflow: hidden; position: relative;
  box-shadow: 0 32px 80px rgba(15,25,35,0.18);
}
.hero-photo-card img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  filter: contrast(1.04) brightness(1.02);
}
.hero-photo-deco {
  position: absolute; bottom: -20px; right: -20px;
  width: 120px; height: 120px;
  border: 3px solid var(--accent); border-radius: 16px;
  z-index: -1;
}
.hero-badge {
  position: absolute; bottom: 24px; left: -24px;
  background: var(--white);
  border-radius: 12px; padding: 0.75rem 1.1rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  display: flex; align-items: center; gap: 0.7rem;
  min-width: 180px;
}
.badge-icon { font-size: 1.5rem; }
.badge-text { font-size: 0.75rem; font-weight: 600; color: var(--ink); line-height: 1.3; }
.badge-text span { color: var(--muted); font-weight: 400; font-size: 0.7rem; }

/* ── SECTIONS COMMON ── */
section { padding: 90px 6vw; }
.section-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 0.6rem;
}
h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 800; color: var(--ink); letter-spacing: -0.02em;
  line-height: 1.2;
}
.section-intro { font-size: 1.05rem; color: var(--muted); max-width: 560px; margin-top: 0.75rem; }

/* ── ABOUT ── */
#about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-top: 3.5rem; }
.about-text p { color: var(--slate); margin-bottom: 1rem; line-height: 1.8; }
.about-orgs { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.8rem; }
.org-pill {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.2rem; background: var(--cream);
  border: 1px solid var(--border); border-radius: 10px;
  text-decoration: none; color: var(--ink);
  transition: border-color 0.2s, transform 0.2s;
}
.org-pill:hover { border-color: var(--accent); transform: translateX(4px); }
.org-icon { font-size: 1.4rem; }
.org-info strong { display: block; font-size: 0.9rem; }
.org-info span { font-size: 0.78rem; color: var(--muted); }

.about-highlights { display: flex; flex-direction: column; gap: 1.5rem; }
.highlight-card {
  padding: 1.5rem; background: var(--cream);
  border-radius: 14px; border-left: 3px solid var(--accent);
}
.highlight-card h4 { font-family: 'Playfair Display', serif; font-size: 1.05rem; margin-bottom: 0.4rem; }
.highlight-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

/* ── BOOK ── */
#book { background: var(--section-alt); }
.book-grid { display: grid; grid-template-columns: auto 1fr; gap: 5rem; align-items: center; margin-top: 3.5rem; }
.book-cover-wrap {
  position: relative; width: 260px;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.2));
  transition: transform 0.3s;
  flex-shrink: 0;
}
.book-cover-wrap:hover { transform: rotate(-2deg) scale(1.03); }
.book-cover-wrap img { width: 100%; border-radius: 8px; display: block; }
.book-ribbon {
  position: absolute; top: -10px; right: -16px;
  background: var(--accent); color: var(--white);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em;
  padding: 0.3rem 0.8rem; border-radius: 6px; text-transform: uppercase;
}
.book-details h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 800; color: var(--ink); margin-bottom: 0.5rem;
}
.book-subtitle { font-size: 1rem; color: var(--accent); font-weight: 600; margin-bottom: 1rem; }
.book-desc { color: var(--slate); margin-bottom: 1.5rem; line-height: 1.8; }
.book-meta { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1.8rem; }
.book-meta-item { font-size: 0.82rem; color: var(--muted); }
.book-meta-item strong { color: var(--ink); display: block; font-size: 0.85rem; }
.book-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-amazon {
  background: #FF9900; color: var(--ink);
  padding: 0.75rem 1.8rem; border-radius: 8px;
  text-decoration: none; font-weight: 700; font-size: 0.9rem;
  transition: all 0.2s; display: inline-flex; align-items: center; gap: 0.5rem;
  color: #faf8f4;
}
.btn-amazon:hover { background: #ff9a02; transform: translateY(-1px); }

/* ── ARTICLES ── */
#articles { background: var(--white); }
.articles-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.article-card {
  padding: 1.8rem; background: var(--cream);
  border: 1px solid var(--border); border-radius: 14px;
  text-decoration: none; color: var(--ink);
  transition: all 0.25s; display: flex; flex-direction: column;
}
.article-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.07); }
.article-tag {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem;
}
.article-card h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; line-height: 1.4; margin-bottom: 0.6rem; }
.article-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.65; flex: 1; }
.article-link { margin-top: 1.2rem; font-size: 0.8rem; font-weight: 600; color: var(--accent); display: flex; align-items: center; gap: 0.3rem; }
.newsletter-cta {
  margin-top: 3rem; padding: 2.5rem; text-align: center;
  background: linear-gradient(135deg, var(--ink) 0%, var(--slate) 100%);
  border-radius: 18px; color: var(--white);
}
.newsletter-cta h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; margin-bottom: 0.5rem; color: var(--white); }
.newsletter-cta p { color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; }
.btn-newsletter {
  background: var(--accent); color: var(--white);
  padding: 0.8rem 2rem; border-radius: 8px;
  text-decoration: none; font-weight: 700; font-size: 0.9rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: background 0.2s;
}
.btn-newsletter:hover { background: var(--gold-light); }

/* ── CONTACT ── */
#contact { background: var(--section-alt); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 3.5rem; }
.contact-info p { color: var(--slate); margin-bottom: 2rem; line-height: 1.8; }
.contact-methods { display: flex; flex-direction: column; gap: 1rem; }
.contact-method {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.2rem; background: var(--white);
  border: 1px solid var(--border); border-radius: 10px;
  text-decoration: none; color: var(--ink);
  transition: border-color 0.2s;
}
.contact-method:hover { border-color: var(--accent); }
.contact-method-icon { font-size: 1.2rem; width: 40px; text-align: center; }
.contact-method-info strong { display: block; font-size: 0.82rem; color: var(--muted); margin-bottom: 1px; }
.contact-method-info span { font-size: 0.88rem; font-weight: 500; }
.social-links { margin-top: 2rem; }
.social-links h4 { font-size: 0.82rem; font-weight: 600; color: var(--muted); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.06em; }
.social-row { display: flex; gap: 0.75rem; }
.social-btn {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 1rem; border-radius: 8px;
  background: var(--white); border: 1px solid var(--border);
  text-decoration: none; color: var(--ink);
  font-size: 0.82rem; font-weight: 600;
  transition: all 0.2s;
}
.social-btn:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.contact-form-area { background: var(--white); border-radius: 18px; padding: 2.5rem; border: 1px solid var(--border); }
.contact-form-area h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 0.4rem; }
.contact-form-area > p { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.8rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--slate); margin-bottom: 0.4rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.7rem 1rem;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; color: var(--ink);
  background: var(--cream); transition: border-color 0.2s; outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--accent); }
.form-group textarea { min-height: 110px; resize: vertical; }
.btn-submit {
  width: 100%; background: var(--ink); color: var(--white);
  border: none; padding: 0.85rem; border-radius: 8px;
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 700;
  cursor: pointer; transition: background 0.2s;
}
.btn-submit:hover { background: var(--slate); }

/* ── FOOTER ── */
footer {
  background: var(--ink); color: rgba(255,255,255,0.65);
  padding: 3rem 6vw 2rem;
}
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.footer-brand { color: var(--white); font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; }
.footer-brand span { color: var(--accent); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.82rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.footer-copy { font-size: 0.78rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; }

/* ── MOBILE ── */
@media (max-width: 900px) {
  #hero { grid-template-columns: 1fr; padding: 100px 6vw 60px; text-align: center; }
  .hero-right { display: none; }
  .hero-stats { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-bio { margin: 0 auto 2rem; }
  .about-grid, .book-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .book-grid { justify-items: center; }
  .book-cover-wrap { width: 200px; }
  nav .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--cream); padding: 1.5rem 2rem; border-bottom: 1px solid var(--border); gap: 1rem; }
  nav .nav-links.open { display: flex; }
  .hamburger { display: flex; }
}
@media (max-width: 600px) {
  section { padding: 70px 5vw; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
}
