/* ===== NOREEN MCCLENDON — NETLIFY SITE ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@300;400;600&display=swap');

:root {
  --pink:      #D444B0;
  --purple:    #7B2D8B;
  --deep:      #4A1060;
  --pink-lt:   #F0A0E0;
  --white:     #FFFFFF;
  --off-white: #FAF5FF;
  --light:     #F3E8F8;
  --muted:     #6B5B7B;
  --dark:      #1A0828;
  --border:    #E0C8EE;
  --heading:   'Montserrat', sans-serif;
  --body:      'Open Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--white); color: var(--dark); font-family: var(--body); font-weight: 300; line-height: 1.7; font-size: 16px; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ===== NAV ===== */
header {
  background: var(--white);
  border-bottom: 3px solid var(--pink);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 16px rgba(180,60,160,0.1);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.nav-logo {
  font-family: var(--heading); font-size: 1.1rem; font-weight: 700;
  color: var(--deep); letter-spacing: 0.02em;
}
.nav-logo span {
  display: block; font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--pink); margin-top: 1px;
}
.nav-links { display: flex; align-items: center; gap: 0.15rem; }
.nav-links a {
  font-family: var(--heading); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--dark);
  padding: 0.4rem 0.7rem; border-radius: 4px; transition: all 0.2s;
}
.nav-links a:hover { color: var(--pink); background: var(--light); }
.nav-links a.active { color: var(--purple); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block; padding: 0.8rem 2rem;
  font-family: var(--heading); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 50px; transition: all 0.25s; cursor: pointer;
}
.btn-pink { background: var(--pink); color: var(--white); border: 2px solid var(--pink); }
.btn-pink:hover { background: var(--purple); border-color: var(--purple); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(123,45,139,0.3); }
.btn-outline-pink { background: transparent; color: var(--pink); border: 2px solid var(--pink); }
.btn-outline-pink:hover { background: var(--pink); color: var(--white); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--purple); border: 2px solid var(--white); }
.btn-white:hover { background: transparent; color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.6); }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-purple { background: var(--purple); color: var(--white); border: 2px solid var(--purple); }
.btn-purple:hover { background: var(--deep); border-color: var(--deep); transform: translateY(-2px); }

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--deep) 0%, var(--purple) 50%, var(--pink) 100%);
  padding: 4rem 2rem 3.5rem; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '♛';
  position: absolute; top: -20px; right: 5%;
  font-size: 8rem; color: rgba(255,255,255,0.04);
  pointer-events: none;
}
.page-hero h1 {
  font-family: var(--heading); font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800; color: var(--white); letter-spacing: 0.02em;
}
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1rem; margin-top: 0.6rem; }
.page-eyebrow {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--pink-lt); margin-bottom: 0.8rem;
}

/* ===== SECTIONS ===== */
.section { padding: 5rem 2rem; }
.section-purple { background: linear-gradient(135deg, var(--deep), var(--purple)); color: var(--white); }
.section-light { background: var(--light); }
.section-pink { background: linear-gradient(135deg, var(--pink), var(--purple)); color: var(--white); }
.container { max-width: 1200px; margin: 0 auto; }
.container-sm { max-width: 860px; margin: 0 auto; }

.sec-label {
  font-family: var(--heading); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--pink);
  margin-bottom: 0.6rem;
}
.section-purple .sec-label, .section-pink .sec-label { color: var(--pink-lt); }
h2.sec-title {
  font-family: var(--heading); font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800; line-height: 1.15; margin-bottom: 1rem;
  color: var(--dark);
}
.section-purple h2.sec-title, .section-pink h2.sec-title { color: var(--white); }
.divider {
  width: 50px; height: 4px; border-radius: 2px;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  margin: 1rem 0 2rem;
}

/* ===== HOME HERO ===== */
.home-hero {
  background: linear-gradient(135deg, var(--pink) 0%, #CC44CC 40%, var(--purple) 100%);
  min-height: 88vh; display: grid; grid-template-columns: 1fr 1fr;
  overflow: hidden; position: relative;
}
/* decorative hearts */
.home-hero::before {
  content: '♥';
  position: absolute; top: 8%; left: 5%;
  font-size: 7rem; color: rgba(120,40,150,0.5);
  pointer-events: none; animation: float 6s ease-in-out infinite;
}
.home-hero::after {
  content: '♥';
  position: absolute; top: 15%; right: 8%;
  font-size: 5rem; color: rgba(255,255,255,0.2);
  pointer-events: none; animation: float 8s ease-in-out infinite reverse;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-18px)} }

.hero-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 6rem 3rem 6rem 6%; position: relative; z-index: 2;
}
.hero-eyebrow {
  font-family: var(--heading); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(255,255,255,0.85); margin-bottom: 1.2rem;
}
.hero-content h1 {
  font-family: var(--heading); font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800; color: var(--white); line-height: 1.05;
  text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 1rem;
}
.hero-content h1 .subtitle-line {
  display: block; font-size: 0.55em; font-weight: 600;
  color: var(--pink-lt); text-transform: uppercase; letter-spacing: 0.08em;
  margin-top: 0.3rem;
}
.hero-content p { color: rgba(255,255,255,0.85); font-size: 1rem; line-height: 1.8; max-width: 440px; margin-bottom: 2.5rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-photo {
  position: relative; display: flex;
  align-items: flex-end; justify-content: center;
  padding-top: 3rem; z-index: 2;
}
.hero-photo img {
  max-height: 85vh; width: auto; object-fit: contain;
  filter: drop-shadow(0 0 40px rgba(120,0,160,0.4));
}
/* extra heart decorations */
.heart-sm {
  position: absolute; pointer-events: none; color: rgba(255,255,255,0.25);
  font-size: 3rem; animation: float 7s ease-in-out infinite;
}

/* ===== FEATURE CARDS ===== */
.feature-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.feature-card {
  border-radius: 12px; overflow: hidden;
  position: relative; aspect-ratio: 4/3; cursor: pointer;
  box-shadow: 0 8px 32px rgba(120,40,150,0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(120,40,150,0.25); }
.feature-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.feature-card:hover img { transform: scale(1.06); }
.feature-overlay {
  position: absolute; inset: 0; border-radius: 12px;
  background: linear-gradient(to top, rgba(74,16,96,0.92) 0%, rgba(74,16,96,0.4) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1.8rem;
}
.feature-label {
  font-family: var(--heading); font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--pink-lt);
  margin-bottom: 0.4rem;
}
.feature-title {
  font-family: var(--heading); font-size: 1.5rem; font-weight: 800;
  color: var(--white); line-height: 1.15;
}
.feature-arrow {
  font-family: var(--heading); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--pink-lt); margin-top: 0.6rem;
  opacity: 0; transform: translateY(5px); transition: all 0.3s;
}
.feature-card:hover .feature-arrow { opacity: 1; transform: translateY(0); }

/* ===== BIO SPLIT ===== */
.bio-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; }
.bio-image { overflow: hidden; }
.bio-image img { width: 100%; height: 100%; object-fit: cover; }
.bio-text {
  background: linear-gradient(135deg, var(--deep), var(--purple));
  padding: 5rem 4rem; display: flex; flex-direction: column; justify-content: center;
}
.bio-text p { color: rgba(255,255,255,0.82); font-size: 1rem; line-height: 1.85; margin-bottom: 1.4rem; }
.bio-btns { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 0.5rem; }

/* ===== BOOKS ===== */
.books-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 2.5rem; }
.book-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 16px rgba(120,40,150,0.08);
}
.book-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(120,40,150,0.15); }
.book-cover {
  background: linear-gradient(135deg, var(--deep), var(--purple));
  display: flex; align-items: center; justify-content: center;
  padding: 2.5rem; min-height: 260px;
}
.book-cover img { max-height: 220px; width: auto; box-shadow: 8px 8px 24px rgba(0,0,0,0.35); }
.book-body { padding: 1.8rem; }
.book-body h3 { font-family: var(--heading); font-size: 1.3rem; font-weight: 800; color: var(--dark); margin-bottom: 0.4rem; }
.book-body p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.5rem; }
.book-links { display: flex; flex-direction: column; gap: 0.5rem; }
.book-link {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--heading); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--purple);
  padding: 0.55rem 1rem; border: 1.5px solid var(--border);
  border-radius: 8px; transition: all 0.2s;
}
.book-link:hover { background: var(--purple); color: var(--white); border-color: var(--purple); }
.book-link::before { content: '→'; }

/* ===== MEDIA ===== */
.media-embed { position: relative; padding-top: 56.25%; border-radius: 12px; overflow: hidden; box-shadow: 0 16px 48px rgba(0,0,0,0.3); }
.media-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.media-cards { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 1.5rem; margin-top: 3rem; }
.media-card {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px; padding: 1.8rem;
}
.media-card h4 { font-family: var(--heading); font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.media-card p { font-size: 0.88rem; color: rgba(255,255,255,0.7); }

/* ===== BLOG ===== */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 2rem; }
.blog-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex; flex-direction: column;
  box-shadow: 0 4px 16px rgba(120,40,150,0.07);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(120,40,150,0.15); }
.blog-thumb { height: 200px; overflow: hidden; background: var(--light); }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.5s; }
.blog-card:hover .blog-thumb img { transform: scale(1.05); }
.blog-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-body h3 { font-family: var(--heading); font-size: 1.05rem; font-weight: 700; color: var(--dark); line-height: 1.3; flex: 1; margin-bottom: 1rem; }
.read-more { font-family: var(--heading); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--pink); transition: color 0.2s; }
.blog-card:hover .read-more { color: var(--purple); }

/* ===== ABOUT ===== */
.about-layout { display: grid; grid-template-columns: 360px 1fr; gap: 5rem; align-items: start; }
.about-photo { position: sticky; top: 90px; }
.about-photo img { width: 100%; border-radius: 12px; box-shadow: 8px 8px 0 var(--pink); }
.about-text h3 { font-family: var(--heading); font-size: 1.3rem; font-weight: 800; color: var(--purple); margin: 2.5rem 0 0.75rem; padding-top: 2.5rem; border-top: 2px solid var(--light); }
.about-text h3:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.about-text p { color: var(--muted); line-height: 1.85; margin-bottom: 1rem; }
.about-text strong { color: var(--dark); font-weight: 700; }

/* ===== CONTACT ===== */
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.contact-info h3 { font-family: var(--heading); font-size: 1.1rem; font-weight: 800; color: var(--purple); margin: 2rem 0 0.4rem; }
.contact-info h3:first-child { margin-top: 0; }
.contact-info p { font-size: 0.95rem; color: var(--muted); line-height: 1.7; }
.contact-info a { color: var(--pink); }
.contact-form-wrap { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 2.5rem; box-shadow: 0 8px 32px rgba(120,40,150,0.08); }
.form-group { margin-bottom: 1.4rem; }
.form-group label { display: block; font-family: var(--heading); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dark); margin-bottom: 0.5rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.85rem 1rem; border: 2px solid var(--border);
  border-radius: 8px; font-family: var(--body); font-size: 0.95rem; color: var(--dark);
  background: var(--off-white); outline: none; transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--pink); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

/* ===== STATS ===== */
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.stat-box { text-align: center; padding: 2.5rem 1rem; border-right: 1px solid rgba(255,255,255,0.15); }
.stat-box:last-child { border-right: none; }
.stat-num { font-family: var(--heading); font-size: 2.8rem; font-weight: 800; color: var(--white); line-height: 1; }
.stat-label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-top: 0.4rem; }

/* ===== COMMUNITY ===== */
.community-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.focus-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 1.5rem; margin-top: 1rem; }
.focus-card { background: var(--white); border-radius: 10px; padding: 1.8rem; border: 1px solid var(--border); }
.focus-card .icon { font-size: 2rem; margin-bottom: 0.8rem; }
.focus-card h3 { font-family: var(--heading); font-size: 1.1rem; font-weight: 800; color: var(--purple); margin-bottom: 0.5rem; }
.focus-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }

/* ===== FOOTER ===== */
footer {
  background: var(--deep); color: rgba(255,255,255,0.75);
  padding: 4rem 2rem 2rem; border-top: 4px solid var(--pink);
}
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand { font-family: var(--heading); font-size: 1.1rem; font-weight: 800; color: var(--white); }
.footer-tag { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--pink-lt); margin: 0.3rem 0 1rem; }
.footer-bio { font-size: 0.87rem; color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 1.5rem; max-width: 300px; }
.socials { display: flex; gap: 0.6rem; }
.soc { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 0.68rem; font-weight: 800; color: rgba(255,255,255,0.7); transition: all 0.2s; text-transform: uppercase; }
.soc:hover { background: var(--pink); border-color: var(--pink); color: var(--white); }
.footer-col h4 { font-family: var(--heading); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--pink-lt); margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col ul li a { font-size: 0.87rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--pink-lt); }
.footer-bottom { max-width: 1200px; margin: 1.5rem auto 0; display: flex; justify-content: space-between; font-size: 0.76rem; color: rgba(255,255,255,0.35); flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom a { color: var(--pink-lt); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .home-hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-photo { height: 60vw; overflow: hidden; padding-top: 0; }
  .hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
  .hero-content { padding: 3rem 1.5rem 2rem; order: 2; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { aspect-ratio: 16/9; }
  .bio-split { grid-template-columns: 1fr; }
  .bio-image { height: 280px; }
  .bio-text { padding: 3rem 1.5rem; }
  .community-grid { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; }
  .about-photo { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .books-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}
