/* My Big Feelings Series — Site Styles */
:root {
  --primary: #E85D4A;
  --primary-dark: #C94835;
  --accent: #7C3AED;
  --accent-light: #EDE9FE;
  --teal: #14B8A6;
  --teal-light: #CCFBF1;
  --warm-bg: #FFF8F0;
  --text: #2D3748;
  --text-light: #718096;
  --radius: 12px;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', 'Segoe UI', system-ui, sans-serif; color: var(--text); background: var(--warm-bg); line-height: 1.6; }
img { max-width: 100%; height: auto; }
a { color: var(--primary); }

.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 720px; margin: 0 auto; padding: 0 1.5rem; }
.section-title { font-size: 2rem; text-align: center; margin-bottom: 0.5rem; }
.section-subtitle { text-align: center; color: var(--text-light); max-width: 600px; margin: 0 auto 2rem; }

/* ===== BUTTONS ===== */
.btn { display: inline-block; padding: 0.7rem 1.5rem; border-radius: 30px; font-weight: 700; text-decoration: none; font-size: 0.95rem; transition: all 0.2s; border: none; cursor: pointer; }
.btn-lg { padding: 0.85rem 2rem; font-size: 1.05rem; }
.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.85rem; }
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); color: white; transform: translateY(-1px); }
.btn-secondary { background: white; color: var(--primary); border: 2px solid var(--primary); }
.btn-secondary:hover { background: var(--primary); color: white; }
.btn-amazon { background: #FF9900; color: white; }
.btn-amazon:hover { background: #e68a00; color: white; transform: translateY(-1px); }
.btn-review { background: var(--primary); color: white; border-radius: 30px; padding: 0.75rem 2rem; text-decoration: none; display: inline-block; }
.btn-review:hover { background: var(--primary-dark); color: white; }

/* ===== NAV ===== */
.site-nav { background: white; padding: 1rem 0; box-shadow: 0 1px 4px rgba(0,0,0,0.06); position: sticky; top: 0; z-index: 100; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-size: 1.3rem; font-weight: 800; text-decoration: none; color: var(--text); }
.nav-logo span { color: var(--primary); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { text-decoration: none; color: var(--text); font-weight: 600; font-size: 0.95rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--primary); }

/* ===== HERO ===== */
.hero { padding: 4rem 0 3rem; }
.hero .container { display: flex; align-items: center; gap: 3rem; }
.hero-content { flex: 1; }
.hero-content h1 { font-size: 2.8rem; line-height: 1.15; margin-bottom: 1rem; }
.highlight { color: var(--primary); }
.hero-subtitle { font-size: 1.15rem; color: var(--text-light); margin-bottom: 2rem; line-height: 1.6; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-books { display: flex; gap: 1rem; flex-shrink: 0; }
.hero-book-img { width: 180px; border-radius: 8px; box-shadow: var(--shadow-lg); transition: transform 0.3s; }
.hero-book-img:hover { transform: scale(1.03) rotate(-1deg); }

/* ===== BOOK CARDS ===== */
.books-section { padding: 3rem 0; }
.book-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 2rem; }
.book-card { background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform 0.2s, box-shadow 0.2s; }
.book-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.book-card-cover { display: flex; align-items: center; justify-content: center; padding: 2rem; min-height: 280px; }
.book-card-cover img { max-height: 240px; border-radius: 6px; box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
.book-card-info { padding: 1.5rem; }
.series-badge { display: inline-block; background: var(--accent-light); color: var(--accent); font-size: 0.75rem; font-weight: 700; padding: 0.2rem 0.6rem; border-radius: 20px; margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.5px; }
.book-card-info h3 { font-size: 1.35rem; margin-bottom: 0.3rem; }
.book-card-info > p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 0.75rem; }
.book-card-meta { display: flex; gap: 1rem; font-size: 0.85rem; color: var(--text-light); margin-bottom: 1rem; }
.book-card-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ===== VALUES ===== */
.values-section { padding: 3rem 0; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.value-card { background: white; border-radius: var(--radius); padding: 2rem; text-align: center; box-shadow: var(--shadow); }
.value-icon { font-size: 2.5rem; display: block; margin-bottom: 0.75rem; }
.value-card h3 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.value-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.5; }

/* ===== EMAIL CTA ===== */
.cta-section { padding: 3rem 0; }
.cta-box { background: linear-gradient(135deg, var(--teal), #0d9488); border-radius: 16px; padding: 3rem; text-align: center; color: white; }
.cta-box h2 { font-size: 1.8rem; margin-bottom: 0.75rem; }
.cta-box > p { opacity: 0.9; margin-bottom: 1.5rem; }
.email-form { display: flex; gap: 0.75rem; max-width: 460px; margin: 0 auto; }
.email-form input[type="email"] { flex: 1; padding: 0.8rem 1.2rem; border: none; border-radius: 30px; font-size: 1rem; }
.email-form button { white-space: nowrap; }
.cta-note { font-size: 0.8rem; opacity: 0.7; margin-top: 0.75rem; }

/* ===== BOOK PAGE ===== */
.breadcrumb { padding: 1rem 0; font-size: 0.85rem; color: #aaa; }
.breadcrumb a { color: #aaa; text-decoration: none; }
.breadcrumb a:hover { color: var(--primary); }

.book-hero { padding: 1rem 0 3rem; }
.book-hero-layout { display: flex; gap: 3rem; align-items: flex-start; }
.book-hero-cover { flex-shrink: 0; width: 260px; padding: 1.5rem; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; }
.book-hero-cover img { width: 100%; border-radius: 6px; box-shadow: 0 6px 24px rgba(0,0,0,0.15); }
.book-hero-info { flex: 1; }
.book-hero-info h1 { font-size: 2.2rem; line-height: 1.2; margin: 0.5rem 0 0.25rem; }
.book-subtitle { color: var(--text-light); font-size: 1.1rem; margin-bottom: 0.25rem; }
.book-author { color: #aaa; margin-bottom: 1rem; font-size: 0.95rem; }
.book-meta-badges { display: flex; gap: 1rem; flex-wrap: wrap; font-size: 0.85rem; color: var(--text-light); margin-bottom: 1.25rem; padding-bottom: 1.25rem; border-bottom: 1px solid #eee; }
.book-hook { font-size: 1.05rem; line-height: 1.6; margin-bottom: 0.75rem; }
.book-description { color: #555; line-height: 1.7; margin-bottom: 1.5rem; font-size: 0.95rem; }
.book-buy-box { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; background: #f9fafb; border-radius: var(--radius); padding: 1.25rem 1.5rem; }
.book-price { font-size: 1.8rem; font-weight: 800; }
.book-shipping { font-size: 0.85rem; color: var(--text-light); }

/* What's Inside */
.whats-inside { padding: 3rem 0; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.feature-card { background: white; border-radius: var(--radius); padding: 2rem; text-align: center; box-shadow: var(--shadow); }
.feature-icon { font-size: 2.5rem; display: block; margin-bottom: 0.75rem; }
.feature-card h3 { margin-bottom: 0.5rem; }
.feature-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.5; }

.inside-list-section { padding: 0 0 3rem; }
.inside-list-box { max-width: 600px; margin: 0 auto; background: white; border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); }
.inside-list-box h3 { margin-bottom: 1rem; }
.inside-list { list-style: disc; padding-left: 1.5rem; }
.inside-list li { margin-bottom: 0.5rem; color: #555; line-height: 1.5; }

/* Review CTA */
.review-cta { padding: 0 0 3rem; }
.review-box { text-align: center; background: #fff5f5; border-radius: 16px; padding: 2.5rem; max-width: 500px; margin: 0 auto; }
.review-box h2 { margin-bottom: 0.5rem; }
.review-box p { color: var(--text-light); margin-bottom: 1.25rem; }

/* More in Series */
.more-in-series { padding: 3rem 0; }
.book-card-mini .book-card-cover { min-height: 200px; padding: 1.5rem; }
.book-card-mini .book-card-cover img { max-height: 180px; }

/* ===== ABOUT ===== */
.about-hero { padding: 3rem 0; }
.about-content { max-width: 720px; }
.about-content h2 { font-size: 2rem; margin-bottom: 1.5rem; }
.about-content h3 { font-size: 1.4rem; margin: 2rem 0 1rem; color: var(--primary); }
.about-content p { line-height: 1.8; color: #444; margin-bottom: 1.25rem; }

/* ===== PRINTABLES ===== */
.printables-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.printable-card { background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform 0.2s; }
.printable-card:hover { transform: translateY(-3px); }
.printable-card-thumb { background: #f0f4f8; height: 200px; display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.printable-card-info { padding: 1.5rem; }
.printable-card-info h3 { margin-bottom: 0.5rem; }
.printable-card-info p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 1rem; }
.coming-soon-card { grid-column: 1 / -1; text-align: center; padding: 3rem; background: white; border-radius: var(--radius); box-shadow: var(--shadow); }
.coming-soon-icon { font-size: 3rem; display: block; margin-bottom: 1rem; }
.coming-soon-card h3 { margin-bottom: 0.75rem; }
.coming-soon-card p { color: var(--text-light); max-width: 500px; margin: 0 auto; }

/* ===== BLOG ===== */
.blog-list-section { padding: 0 0 3rem; }
.blog-grid { display: grid; gap: 2rem; max-width: 800px; margin: 0 auto; }
.blog-card { background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform 0.2s; }
.blog-card:hover { transform: translateY(-3px); }
.blog-card-content { padding: 2rem; }
.blog-category { display: inline-block; background: var(--accent-light); color: var(--accent); font-size: 0.8rem; font-weight: 700; padding: 0.25rem 0.75rem; border-radius: 20px; margin-bottom: 0.75rem; }
.blog-card h2 { font-size: 1.4rem; margin-bottom: 0.75rem; }
.blog-card h2 a { color: var(--text); text-decoration: none; }
.blog-card h2 a:hover { color: var(--primary); }
.blog-card p { color: #666; line-height: 1.6; }
.read-more { color: var(--primary); font-weight: 600; text-decoration: none; display: inline-block; margin-top: 0.75rem; }
.read-more:hover { text-decoration: underline; }

/* Blog Post */
.blog-post { padding: 2rem 0 3rem; }
.blog-header { margin-bottom: 2rem; }
.blog-header h1 { font-size: 2.2rem; line-height: 1.2; margin: 0.75rem 0; }
.blog-meta { color: #aaa; font-size: 0.9rem; }
.blog-body { line-height: 1.8; color: #444; }
.blog-body h2 { font-size: 1.5rem; margin: 2rem 0 1rem; color: var(--text); }
.blog-body h3 { font-size: 1.2rem; margin: 1.5rem 0 0.75rem; color: var(--text); }
.blog-body p { margin-bottom: 1.25rem; }
.blog-body ul, .blog-body ol { margin: 1rem 0 1.5rem 1.5rem; }
.blog-body li { margin-bottom: 0.5rem; }
.blog-body blockquote { border-left: 4px solid var(--primary); padding: 1rem 1.5rem; margin: 1.5rem 0; background: #fef9f0; border-radius: 0 8px 8px 0; font-style: italic; }
.blog-book-cta { display: flex; gap: 1.5rem; align-items: center; background: var(--accent-light); border-radius: var(--radius); padding: 1.5rem; margin-top: 2.5rem; }
.blog-book-cta img { width: 100px; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.blog-book-cta h3 { margin-bottom: 0.5rem; }
.blog-book-cta p { font-size: 0.9rem; color: #666; margin-bottom: 0.75rem; }

/* ===== PAGE HERO ===== */
.page-hero { text-align: center; padding: 3rem 0 2rem; }
.page-hero h1 { font-size: 2.5rem; }

/* ===== ERROR PAGE ===== */
.error-page h2 { font-size: 1.8rem; margin-bottom: 1rem; }
.error-page p { color: var(--text-light); margin-bottom: 1rem; }

/* ===== FOOTER ===== */
.site-footer { background: #2D3748; color: white; padding: 3rem 0 1.5rem; margin-top: 1rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer-brand p { color: #a0aec0; font-size: 0.9rem; line-height: 1.6; margin-top: 0.5rem; }
.footer-col h4 { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.75rem; opacity: 0.8; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.4rem; }
.footer-col a { color: #a0aec0; text-decoration: none; font-size: 0.9rem; }
.footer-col a:hover { color: white; }
.footer-bottom { text-align: center; border-top: 1px solid #4a5568; padding-top: 1.5rem; font-size: 0.8rem; color: #718096; }
.footer-bottom a { color: #a0aec0; text-decoration: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero .container { flex-direction: column; text-align: center; }
  .hero-content h1 { font-size: 2rem; }
  .hero-cta { justify-content: center; }
  .hero-books { justify-content: center; }
  .hero-book-img { width: 130px; }
  .nav-links { gap: 1rem; }
  .nav-links a { font-size: 0.85rem; }
  .book-hero-layout { flex-direction: column; align-items: center; text-align: center; }
  .book-hero-cover { width: 200px; }
  .book-meta-badges { justify-content: center; }
  .book-buy-box { justify-content: center; }
  .email-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .book-cards { grid-template-columns: 1fr; }
  .blog-book-cta { flex-direction: column; text-align: center; }
}

/* Printable Cards */
.printables-intro { text-align: center; margin-bottom: 2rem; color: #555; font-size: 1.1rem; }
.printable-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}
.printable-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.printable-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}
.printable-icon {
    font-size: 2.5rem;
    line-height: 1;
}
.printable-card-header h3 {
    margin: 0;
    font-size: 1.25rem;
    color: #333;
}
.printable-meta {
    font-size: 0.85rem;
    color: #888;
}
.printable-card p {
    color: #555;
    margin: 0 0 1rem 0;
    line-height: 1.6;
}
.related-books-section {
    padding: 3rem 0;
    background: #FFF5F0;
    text-align: center;
}
