/* =============================================================
   21 Day Kawaii Drawing Challenge — styles.css
   Mobile-first. Breakpoints: 768px (tablet), 1024px (desktop).
   ============================================================= */

/* -------------------------
   CSS Custom Properties
   ------------------------- */
:root {
  /* Colours */
  --color-pink-hot:      #ff4792;
  --color-pink-rose:     rgb(255, 71, 146);
  --color-pink-light:    #ffdde9;
  --color-lavender:      #fce3fe;
  --color-purple-dark:   #54184d;
  --color-near-black:    #21091e;
  --color-text:          #000000;
  --color-white:         #ffffff;

  /* Typography */
  --font-heading: 'omnes-pro', 'Nunito', sans-serif;
  --font-body:    'Quicksand', sans-serif;

  /* Spacing */
  --section-pad-mobile:  80px 20px;
  --section-pad-tablet:  82px 32px;
  --section-pad-desktop: 100px 40px;

  /* Max container width */
  --container-max:        1200px;
  --container-narrow-max: 800px;
}

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

html {
  scroll-behavior: smooth;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

s {
  text-decoration: line-through;
  color: var(--color-text);
}

/* -------------------------
   Containers
   ------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 20px;
}

.container--narrow {
  max-width: var(--container-narrow-max);
}

/* -------------------------
   Buttons
   ------------------------- */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
  border-radius: 10000px;
  padding: 14px 28px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: opacity 0.15s ease, transform 0.1s ease;
  width: 100%;
}

.btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn-dark {
  background: var(--color-near-black);
}

.btn-pink {
  background: var(--color-pink-rose);
}

/* -------------------------
   Price accent
   ------------------------- */
.price-accent {
  color: var(--color-pink-hot);
  font-weight: 700;
}

/* =============================================================
   SECTION 1 — HERO
   ============================================================= */
.section-hero {
  background-color: var(--color-pink-hot);
  background-image: url('assets/images/hero-bg-mobile.png');
  background-size: cover;
  background-position: 50% 100%;
  padding: 72px 20px 71px;
  text-align: center;
  min-height: 474px;
  display: flex;
  align-items: flex-start;
}

.hero-inner {
  max-width: var(--container-max);
  margin-inline: auto;
}

.hero-text {
  max-width: 600px;
  margin-inline: auto;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 48px;
}

.hero-heading {
  font-family: var(--font-heading);
  font-size: 27px;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 0;
}

.hero-heading strong {
  font-weight: 700;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 71px;
  font-style: italic;
}

.section-hero .btn {
  width: auto;
}

/* =============================================================
   SECTION 2 — eBOOK DOWNLOAD
   ============================================================= */
.section-ebook {
  background: var(--color-white);
  padding: var(--section-pad-mobile);
  padding-top: 40px;
  padding-bottom: 10px;
  text-align: center;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  color: rgb(84, 24, 77);
  margin-bottom: 24px;
}

.ebook-figure {
  margin-inline: auto;
}

/* =============================================================
   SECTION 3 — FEATURES
   ============================================================= */
.section-features {
  background: var(--color-white);
  padding: var(--section-pad-mobile);
  padding-top: 40px;
  padding-bottom: 40px;
}

.features-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.feature-block {
  text-align: center;
  max-width: 300px;
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin-inline: auto;
  margin-bottom: 40px;
  font-size: 63px;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-heading {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-purple-dark);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.feature-body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--color-text);
}

/* =============================================================
   SECTION 4 — PRICING + CTA
   ============================================================= */
.section-pricing {
  background: var(--color-white);
  padding: 16px 20px 48px;
  text-align: center;
}

.pricing-text {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: rgb(84, 24, 77);
}

.pricing-text s {
  color: var(--color-text);
  opacity: 0.6;
}

/* =============================================================
   SECTION 5 — INSPIRATIONAL QUOTE
   ============================================================= */
.section-quote {
  background: var(--color-lavender);
  padding: 60px 20px;
  text-align: center;
}

.quote-text {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--color-purple-dark);
}

/* =============================================================
   SECTION 6 — CURRICULUM
   ============================================================= */
.section-curriculum {
  background: var(--color-white);
  padding: 0 20px 88px;
  text-align: center;
  overflow: hidden;
}

/* In-flow circle — sits above the curriculum heading and contributes page height */
.curriculum-circle-wrap {
  width: 440px;
  max-width: 90vw;
  aspect-ratio: 1;
  margin: 60px auto 20px;
  pointer-events: none;
}

.curriculum-circle-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.curriculum-heading {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--color-purple-dark);
  margin-bottom: 34px;
  line-height: 1.15;
}

.curriculum-sub {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 36px;
}

.curriculum-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: left;
  margin-bottom: 10px;
}

.curriculum-col {
  display: flex;
  flex-direction: column;
}

.curriculum-col li {
  display: flex;
  flex-direction: column;
  min-height: 110px;
  padding: 8px 0 8px 28px;
  position: relative;
  border-bottom: 0;
}

.curriculum-col li::before {
  content: '\f004';
  position: absolute;
  left: 0;
  top: 13px;
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--color-pink-hot);
  font-size: 18px;
}

.day-label {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-purple-dark);
}

.day-activity {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--color-text);
}

.curriculum-offer {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 20px;
}

.curriculum-offer s {
  opacity: 0.6;
}

/* =============================================================
   SECTION 7 — THIRD CTA
   ============================================================= */
.section-cta-3 {
  background: var(--color-white);
  padding: 16px 20px 56px;
  text-align: center;
}

/* =============================================================
   SECTION 8 — CONFIDENCE STATEMENT
   ============================================================= */
.section-confidence {
  background: var(--color-white);
  padding: var(--section-pad-mobile);
  text-align: center;
}

.confidence-text {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.55;
  color: var(--color-text);
}

.confidence-highlight {
  color: var(--color-pink-hot);
  font-weight: 700;
}

/* =============================================================
   SECTIONS 8 & 9 — TESTIMONIALS
   ============================================================= */
.section-testimonial-1 {
  background: var(--color-white);
  padding: var(--section-pad-mobile);
  padding-bottom: 50px;
}

.testimonials-row {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: flex-start;
  justify-content: center;
  max-width: var(--container-max);
  margin-inline: auto;
}

.testimonial {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  max-width: 420px;
  margin-inline: 30px;
}

.testimonial-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-quote p {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: 12px;
}

.testimonial-quote cite {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  font-style: normal;
  color: var(--color-text);
  display: block;
}

/* =============================================================
   SECTION 10 — CTA 4
   ============================================================= */
.section-cta-4 {
  background: var(--color-white);
  padding: 0 20px 48px;
  text-align: center;
}

.cta-offer {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  margin-top: 16px;
}

.cta-offer s {
  opacity: 0.6;
}

.section-cta-4 .pricing-text,
.section-cta-final .pricing-text {
  margin-top: 10px;
}

/* =============================================================
   SECTION 11 — GALLERY
   ============================================================= */
.section-gallery {
  background: var(--color-pink-light);
  padding: 50px 20px;
  text-align: center;
}

.gallery-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}

.gallery-heart-icon {
  width: 56px;
  height: 56px;
}

.gallery-heading {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-purple-dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 800px;
  margin-inline: auto;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =============================================================
   SECTION 12 — FINAL CTA
   ============================================================= */
.section-cta-final {
  background: var(--color-pink-light);
  padding: 50px 20px;
  text-align: center;
}

/* =============================================================
   FOOTER
   ============================================================= */
.site-footer {
  background: var(--color-white);
  padding: 20px 20px;
  border-top: 1px solid rgba(0,0,0,0.07);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-logo {
  max-width: 160px;
  width: auto;
}

.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-nav a:hover {
  color: var(--color-pink-rose);
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text);
  opacity: 0.7;
}

/* =============================================================
   TABLET — 768px +
   ============================================================= */
@media (min-width: 768px) {

  .btn {
    width: auto;
    font-size: 20px;
  }

  /* Hero — tablet uses dedicated tablet bg (includes kawaii decorations) */
  .section-hero {
    background-image: url('assets/images/hero-bg-tablet.png');
    background-position: 50% 100%;
    padding: 123px 0 60px;
    min-height: 512px;
    align-items: flex-start;
  }

  .hero-inner {
    max-width: none;
    margin: 0;
  }

  .hero-text {
    margin-left: 61px;
    width: 630px;
    max-width: none;
    text-align: center;
    margin-right: 0;
  }

  .hero-eyebrow {
    font-size: 20px;
    margin-bottom: 24px;
  }

  .hero-heading {
    font-size: 32px;
    line-height: 1.25;
  }

  .hero-sub {
    font-size: 20px;
    margin-bottom: 41px;
  }

  .section-hero .btn {
    width: 100%;
  }

  /* eBook */
  .section-ebook {
    padding: var(--section-pad-tablet);
    padding-top: 42px;
    padding-bottom: 10px;
  }

  .section-heading {
    font-size: 52px;
  }

  /* Features */
  .section-features {
    padding: var(--section-pad-tablet);
    padding-top: 42px;
    padding-bottom: 41px;
  }

  .features-grid {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
  }

  .feature-block {
    max-width: 260px;
  }

  /* Quote */
  .section-quote {
    padding: 60px 32px;
  }

  .quote-text {
    font-size: 28px;
  }

  /* Curriculum */
  .section-curriculum {
    padding: 0 32px 48px;
  }

  .curriculum-heading {
    font-size: 48px;
  }

  .curriculum-grid {
    flex-direction: row;
    gap: 0;
    justify-content: space-between;
    max-width: 900px;
    margin-inline: auto;
    margin-bottom: 0;
  }

  .curriculum-col {
    flex: 1;
    padding-inline: 12px;
  }

  .curriculum-col li {
    padding: 8px 0 8px 20px;
  }

  /* Testimonials */
  .testimonials-row {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
  }

  .testimonial {
    max-width: 420px;
  }

  /* Gallery */
  .section-gallery {
    padding: 50px 32px;
  }

  .gallery-heading {
    font-size: 36px;
  }
}

/* =============================================================
   DESKTOP — 1024px +
   ============================================================= */
@media (min-width: 1024px) {

  /* Hero — desktop photo, precise position from source measurements */
  .section-hero {
    background-image: url('assets/images/hero-bg-desktop.png');
    background-size: cover;
    background-position: center;
    padding: 190px 0 100px;
    min-height: 656px;
    display: flex;
    align-items: flex-start;
  }

  .hero-inner {
    width: 100%;
    max-width: none;
    margin: 0;
    display: block;
  }

  .hero-text {
    margin-left: 42.5%;
    width: 617px;
    max-width: none;
    text-align: center;
    margin-right: 0;
  }

  .hero-eyebrow {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .hero-heading {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 0;
  }

  .hero-sub {
    font-size: 20px;
    margin-bottom: 28px;
  }

  .section-hero .btn {
    width: auto;
  }

  /* eBook */
  .section-ebook {
    padding: var(--section-pad-desktop);
    padding-top: 60px;
    padding-bottom: 10px;
  }

  .section-heading {
    font-size: 56px;
  }

  /* Features */
  .section-features {
    padding: var(--section-pad-desktop);
    padding-top: 40px;
    padding-bottom: 50px;
  }

  .features-grid {
    gap: 60px;
  }

  .feature-block {
    max-width: 300px;
  }

  .feature-heading {
    font-size: 20px;
  }

  .feature-body {
    font-size: 18px;
  }

  /* Pricing */
  .section-pricing {
    padding-bottom: 64px;
  }

  .pricing-text {
    font-size: 26px;
  }

  /* Quote */
  .section-quote {
    padding: 60px 40px;
  }

  .quote-text {
    font-size: 32px;
  }

  /* Curriculum */
  .section-curriculum {
    padding: 0 40px 10px;
  }

  .curriculum-circle-wrap {
    width: 700px;
    max-width: 700px;
  }

  .curriculum-heading {
    font-size: 56px;
  }

  .curriculum-sub {
    font-size: 22px;
    margin-bottom: 48px;
  }

  .curriculum-grid {
    flex-direction: row;
    gap: 0;
    justify-content: space-between;
    max-width: 900px;
    margin-inline: auto;
    margin-bottom: 10px;
  }

  .curriculum-col {
    flex: 1;
    padding-inline: 24px;
  }

  .curriculum-col li {
    padding: 10px 0 10px 24px;
  }

  .day-label {
    font-size: 20px;
  }

  .curriculum-offer {
    font-size: 28px;
  }

  /* Confidence */
  .section-confidence {
    padding: 50px 40px 0;
  }

  .confidence-text {
    font-size: 24px;
  }

  /* Testimonials */
  .section-testimonial-1 {
    padding: var(--section-pad-desktop);
    padding-bottom: 50px;
  }

  .testimonials-row {
    gap: 80px;
    align-items: flex-start;
  }

  .testimonial-avatar {
    width: 197px;
    height: 197px;
  }

  .testimonial-quote p {
    font-size: 20px;
  }

  /* Gallery */
  .section-gallery {
    padding: 50px 40px;
  }

  .gallery-heading {
    font-size: 40px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 900px;
  }

  /* Final CTA */
  .section-cta-final {
    padding: 50px 40px;
  }

  /* Footer */
  .site-footer {
    padding: 20px 60px;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ============================================================
   SECTION — FAQ
   ============================================================ */
.section-faq {
  background: var(--color-white);
  padding: 60px 20px 80px;
}

.faq-heading {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-purple-dark);
  text-align: center;
  margin: 0 0 40px;
}

.faq-accordion {
  width: 100%;
}

.faq-item {
  border-bottom: 1px solid #F0F0F8;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-toggle {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-purple-dark);
  line-height: 1.4;
}

.faq-icon {
  color: #ef5891;
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
  display: inline-block;
  min-width: 16px;
  text-align: center;
}

.faq-body {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 280ms ease, opacity 200ms ease;
}

.faq-item--open .faq-body {
  max-height: 600px;
  opacity: 1;
}

.faq-answer {
  margin: 0 0 20px;
  font-size: 17px;
  line-height: 1.7;
  color: #5F5F75;
  font-weight: 400;
}

@media (min-width: 768px) {
  .faq-heading {
    font-size: 32px;
  }
}

@media (min-width: 1024px) {
  .section-faq {
    padding: 80px 40px 100px;
  }

  .faq-heading {
    font-size: 36px;
  }
}
