/* The Scrappy Lion — Scrapbooking & Paper Craft Supplies */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600&family=Nunito:wght@300;400;600;700&display=swap');

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

:root {
  --pink: #E8508A;
  --pink-dark: #C13B6F;
  --pink-light: #FFF0F5;
  --teal: #2AB5A0;
  --teal-dark: #1D8F7E;
  --yellow: #F5C842;
  --yellow-light: #FFF9E6;
  --cream: #FFFCF7;
  --warm-white: #FFFFFF;
  --text: #3A2E3A;
  --slate: #6B5E6B;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
}

.container { max-width: 1080px; margin: 0 auto; padding: 0 1.5rem; }

/* ---- HEADER / NAV ---- */
header {
  background: var(--warm-white);
  border-bottom: 2px solid var(--pink-light);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--pink);
}

.brand svg { width: 36px; height: 36px; flex-shrink: 0; }

.brand span {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
}

.nav-links { display: flex; gap: 2rem; list-style: none; }

.nav-links a {
  text-decoration: none;
  color: var(--slate);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

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

.nav-toggle { display: none; background: none; border: none; cursor: pointer; }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,80,138,0.75) 0%, rgba(42,181,160,0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 3rem;
  max-width: 600px;
}

.hero-content h1 {
  font-family: 'Fredoka', sans-serif;
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 600;
}

.hero-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: 0.95;
}

.btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.8rem;
  background: var(--yellow);
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  border-radius: 30px;
  transition: background 0.2s, transform 0.1s;
}

.btn:hover { background: #e6ba30; transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  margin-left: 0.8rem;
}

.btn-outline:hover { background: rgba(255,255,255,0.15); }

/* ---- SECTIONS ---- */
section { padding: 4.5rem 0; }

.section-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--pink);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--slate);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

.bg-yellow { background: var(--yellow-light); }
.bg-pink { background: var(--pink-light); }

/* ---- PRODUCT GRID ---- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--warm-white);
  border: 2px solid rgba(232,80,138,0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

.product-card:hover {
  box-shadow: 0 8px 28px rgba(232,80,138,0.12);
  transform: translateY(-3px);
}

.product-card img { width: 100%; height: 240px; object-fit: cover; }

.product-card-body { padding: 1.25rem 1.5rem; }

.product-card-body h3 {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--teal-dark);
  margin-bottom: 0.4rem;
}

.product-card-body p { color: var(--slate); font-size: 0.92rem; }

/* ---- TWO-COL FEATURE ---- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.feature-row img {
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  aspect-ratio: 4/3;
}

.feature-row h2 {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 1rem;
}

.feature-row p { color: var(--slate); margin-bottom: 1rem; }

/* ---- ARTICLE ---- */
.article-header {
  text-align: center;
  padding: 4rem 1.5rem 1.5rem;
  max-width: 720px;
  margin: 0 auto;
}

.article-header h1 {
  font-family: 'Fredoka', sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--pink);
  margin-bottom: 0.5rem;
}

.article-header .meta {
  color: var(--slate);
  font-size: 0.88rem;
}

.article-body {
  max-width: 680px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

.article-body h2 {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--teal);
  margin: 2.5rem 0 0.8rem;
}

.article-body p { margin-bottom: 1.2rem; color: var(--slate); }

.article-body img {
  width: 100%;
  border-radius: 10px;
  margin: 2rem 0;
}

.article-body ul, .article-body ol {
  margin: 0 0 1.2rem 1.5rem;
  color: var(--slate);
}

.article-body li { margin-bottom: 0.5rem; }

.article-body blockquote {
  border-left: 4px solid var(--yellow);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--pink-dark);
  background: var(--yellow-light);
  border-radius: 0 8px 8px 0;
}

/* ---- TESTIMONIAL ---- */
.testimonial-section {
  background: var(--teal);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}

.testimonial-section blockquote {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.5rem;
  font-style: italic;
  max-width: 640px;
  margin: 0 auto 1rem;
  line-height: 1.5;
}

.testimonial-section cite {
  font-style: normal;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* ---- CTA ---- */
.cta-section {
  background: var(--pink);
  color: #fff;
  text-align: center;
  padding: 4rem 1.5rem;
}

.cta-section h2 {
  font-family: 'Fredoka', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.cta-section p { opacity: 0.9; max-width: 480px; margin: 0 auto 1.5rem; }

.cta-section .btn { background: var(--yellow); color: var(--text); }
.cta-section .btn:hover { background: #e6ba30; }

/* ---- FOOTER ---- */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

footer p { font-size: 0.88rem; margin-bottom: 0.5rem; }

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

footer h4 { color: #fff; font-size: 0.85rem; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 0.8rem; }

footer ul { list-style: none; }
footer li { margin-bottom: 0.4rem; font-size: 0.88rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.82rem;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .nav-toggle { display: block; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--warm-white);
    padding: 1rem 1.5rem;
    border-bottom: 2px solid var(--pink-light);
    gap: 0.8rem;
  }

  .nav-links.open { display: flex; }

  .hero { min-height: 380px; }
  .hero-content h1 { font-size: 2rem; }
  .hero-content { padding: 2rem 1.5rem; }

  .feature-row { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .btn-outline { margin-left: 0; margin-top: 0.5rem; display: inline-block; }
}

.brand-icon { width: 24px; height: 24px; flex-shrink: 0; vertical-align: middle; margin-right: 6px; }
