/* Coach DeForest — Redesign 2026 */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #e8821c;
  --orange-dark: #c96c10;
  --black: #111;
  --white: #fff;
  --gray-text: #555;
  --gray-light: #f5f5f5;
  --font: 'Open Sans', Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-text);
  background: var(--white);
}

/* ── NAV ─────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 70px;
}

.nav-logo img {
  height: 50px;
  display: block;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  color: #333;
  transition: color .2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--orange); }

/* ── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border: 2px solid var(--white);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .5px;
  transition: background .2s, color .2s, border-color .2s;
  border-radius: 3px;
}

.btn:hover {
  background: var(--white);
  color: var(--black);
}

.btn-orange {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.btn-orange:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
}

/* ── HERO ────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  background-color: var(--black);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.60);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 900px;
  width: 100%;
  padding: 48px 24px;
}

.hero-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--orange);
  flex-shrink: 0;
}

.hero-text { flex: 1; }

.hero-text h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.hero-sub {
  font-size: 1.1rem;
  opacity: .88;
  margin-bottom: 20px;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.badge {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.35);
  color: var(--white);
  font-size: .82rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: .3px;
}

/* ── TESTIMONIALS ────────────────────────────────── */
.testimonials {
  background: var(--gray-light);
  padding: 64px 24px;
}

.testimonials-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  padding: 28px 24px;
  border-top: 3px solid var(--orange);
  border-radius: 3px;
}

.stars {
  color: var(--orange);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.testimonial-quote {
  font-style: italic;
  font-size: .95rem;
  color: #444;
  margin-bottom: 14px;
  line-height: 1.65;
}

.testimonial-author {
  font-weight: 700;
  font-size: .83rem;
  color: #222;
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* ── FEATURED BOOK ───────────────────────────────── */
.featured-book {
  padding: 80px 24px;
  background: var(--white);
}

.featured-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  gap: 56px;
  align-items: flex-start;
}

.featured-cover {
  width: 220px;
  flex-shrink: 0;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
  display: block;
}

.featured-label {
  font-size: .78rem;
  font-weight: 800;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.featured-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.25;
  margin-bottom: 16px;
}

.featured-text > p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #444;
}

.featured-bullets {
  list-style: none;
  margin-bottom: 28px;
}

.featured-bullets li {
  font-weight: 600;
  color: #222;
  padding: 4px 0;
  font-size: .97rem;
}

/* ── BOOKS SECTION (homepage) ────────────────────── */
.books-section {
  background: var(--gray-light);
  padding: 72px 24px;
}

.section-title {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 48px;
}

.books-grid {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 36px;
}

.book-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 20px;
  border-radius: 3px;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
}

.book-card img {
  width: 100%;
  max-width: 200px;
  height: 265px;
  object-fit: cover;
  display: block;
  box-shadow: 0 4px 16px rgba(0,0,0,.16);
  margin-bottom: 18px;
}

.book-card h3 {
  font-size: .93rem;
  font-weight: 700;
  color: #222;
  line-height: 1.45;
  margin-bottom: 10px;
}

.book-pitch {
  font-size: .88rem;
  color: var(--gray-text);
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}

/* ── ABOUT SECTION ───────────────────────────────── */
.about-section {
  padding: 80px 24px;
  background: var(--white);
}

.about-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 52px;
  align-items: start;
}

.about-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--orange);
  display: block;
}

.about-text h2 {
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 18px;
}

.about-text p {
  margin-bottom: 16px;
  color: #444;
}

.about-text p:last-of-type { margin-bottom: 24px; }

/* ── BOOKS PAGE ──────────────────────────────────── */
.books-header {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 60px 24px;
}

.books-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
}

.books-header p {
  margin-top: 12px;
  opacity: .8;
  font-size: 1.05rem;
}

.books-grid-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 64px 24px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.book-card-full {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: start;
}

.book-card-full img {
  width: 220px;
  box-shadow: 0 6px 24px rgba(0,0,0,.18);
  display: block;
}

.book-card-body h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.4;
  margin-bottom: 12px;
}

.book-card-body .book-pitch {
  font-size: .97rem;
  margin-bottom: 20px;
  color: #444;
}

/* ── FOOTER ──────────────────────────────────────── */
footer {
  background: var(--black);
  color: rgba(255,255,255,.6);
  text-align: center;
  padding: 28px 24px;
  font-size: .88rem;
}

footer a {
  color: var(--orange);
  text-decoration: none;
}

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { gap: 20px; }

  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .badges { justify-content: center; }

  .testimonials-inner {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .featured-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .featured-bullets { text-align: left; }

  .about-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-photo { margin: 0 auto; }

  .book-card-full {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .book-card-full img {
    margin: 0 auto;
    width: 180px;
  }
}

@media (max-width: 480px) {
  .hero { min-height: 520px; }
  .hero-photo { width: 120px; height: 120px; }
}
