/* ===========================================================
   GSPA — Gospel School for Performing Arts
   Shared stylesheet for all pages
   =========================================================== */

:root {
  --plum:       #000000;   /* primary dark (brand black) */
  --plum-dark:  #000000;
  --gold:       #F7C500;   /* brand gold */
  --gold-soft:  #f7d34d;   /* softer gold for text on black */
  --cream:      #ffffff;
  --cream-2:    #f6f4ef;   /* light section background */
  --ink:        #141414;
  --muted:      #5f5f5f;
  --white:      #ffffff;
  --shadow:     0 10px 30px rgba(0,0,0,0.12);
  --radius:     14px;
  --maxw:       1100px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--plum);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.7rem); }

p { margin-bottom: 1rem; }
a { color: var(--plum); }

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

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--plum-dark);
  font-weight: 600;
  text-decoration: none;
  padding: 15px 34px;
  border-radius: 50px;
  font-size: 1.02rem;
  letter-spacing: 0.3px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  box-shadow: 0 6px 18px rgba(200,164,77,0.35);
  border: none;
  cursor: pointer;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(247,197,0,0.5); background: #ffd633; }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--gold);
  box-shadow: none;
}
.btn-outline:hover { background: var(--gold); color: var(--plum-dark); }

/* ---------- Header / Nav ---------- */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #e8e3d6;
  box-shadow: 0 2px 14px rgba(0,0,0,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 12px 22px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { height: 78px; width: auto; border-radius: 6px; }
@media (max-width: 600px) { .brand img { height: 60px; } }
.brand-text { color: var(--ink); font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; line-height: 1.1; }
.brand-text span { display: block; font-size: 0.7rem; letter-spacing: 2px; color: #b9930a; font-family: 'Poppins', sans-serif; font-weight: 400; }

.nav-links { list-style: none; display: flex; gap: 22px; align-items: center; }
.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  transition: color .15s ease;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }

.nav-toggle { display: none; background: none; border: none; color: var(--ink); font-size: 1.8rem; cursor: pointer; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 14px 22px 22px;
    gap: 16px;
    border-top: 1px solid #e8e3d6;
  }
  .nav-links.open { display: flex; }
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(180deg, #fffdf7 0%, #f4f1e8 100%);
  color: var(--ink);
  text-align: center;
  padding: 90px 22px;
  border-bottom: 3px solid var(--gold);
}
.hero h1 { color: var(--ink); margin-bottom: 14px; }
.hero .hero-title { color: #F7C500; text-shadow: 0 1px 1px rgba(0,0,0,0.25); font-size: clamp(1.9rem, 3.4vw, 3rem); margin-bottom: 18px; }
.hero .hero-title .line2 { white-space: normal; }
.hero p.lead { font-size: 1.35rem; max-width: 720px; margin: 0 auto 8px; color: #a8850a; font-weight: 500; }

/* Hero two-column layout: text left, Pearl right */
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: center; text-align: left; }
.hero-grid .hero-text { min-width: 0; }
@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 26px; }
  .hero-grid .hero-photo { order: -1; max-width: 360px; margin: 0 auto; }
  .hero-grid .hero-title, .hero-grid .lead { margin-left: auto; margin-right: auto; }
}

/* Hero photo — framed picture of Pearl */
.hero-photo {
  width: 100%; margin: 0; min-width: 0;
  aspect-ratio: 4 / 5;
  border: 4px solid var(--gold);
  border-radius: var(--radius);
  background: #f4f1e8;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center;
  color: #a8850a; font-style: italic; text-align: center;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
/* For a transparent cutout PNG, add class "cutout" to remove the frame */
.hero-photo.cutout { border: none; background: none; aspect-ratio: auto; }
.hero-photo.cutout img { height: auto; object-fit: contain; border-radius: 0; filter: drop-shadow(0 14px 26px rgba(0,0,0,0.22)); }
.hero .sub { font-size: 1.05rem; color: var(--muted); max-width: 680px; margin: 0 auto 28px; }

/* ---------- Sections ---------- */
section { padding: 70px 0; }
.section-tight { padding: 45px 0; }
.bg-cream2 { background: var(--cream-2); }
.bg-plum { background: linear-gradient(135deg, #fff6d2 0%, #ffe9a6 100%); color: var(--ink); border-top: 2px solid var(--gold); border-bottom: 2px solid var(--gold); }
.bg-plum h2, .bg-plum h3 { color: var(--plum); }
.bg-plum p { color: var(--ink); }
.bg-plum .text-gold { color: #9c7a00; }

/* Workshop section */
.workshop .split { grid-template-columns: 0.8fr 1.2fr; gap: 50px; }
.workshop .workshop-title { font-size: clamp(2.6rem, 5vw, 4rem); margin-bottom: 14px; line-height: 1.05; }
.workshop .workshop-title span { color: #9c7a00; }
.split-img img.framed { border: 4px solid var(--gold); border-radius: var(--radius); box-shadow: 0 14px 36px rgba(0,0,0,0.2); }
.workshop-dates { display: flex; flex-wrap: wrap; gap: 14px; margin: 20px 0; }
.date-pill { background: rgba(255,255,255,0.85); border: 1.5px solid var(--gold); border-radius: 12px; padding: 12px 20px; display: flex; flex-direction: column; box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.workshop-dates.stacked { flex-direction: column; align-items: stretch; }
.date-pill .day { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--plum); font-size: 1.05rem; }
.date-pill .time { font-size: 0.9rem; color: #8a6d00; }
.spaces { display: inline-block; background: var(--plum); color: var(--gold); padding: 7px 18px; border-radius: 40px; font-size: 0.78rem; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; }

.eyebrow { text-transform: uppercase; letter-spacing: 3px; font-size: 0.8rem; color: var(--gold); font-weight: 600; margin-bottom: 10px; }

.lead-narrow { max-width: 760px; margin: 0 auto; }

/* ---------- Split (image + text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
.split.reverse .split-img { order: 2; }
.split-img img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; gap: 28px; }
  .split.reverse .split-img { order: 0; }
}

/* ---------- Cards / grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
@media (max-width: 820px) { .grid-3 { grid-template-columns: 1fr; } .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
}
.card h3 { margin-bottom: 10px; }

/* ---------- Photo gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery img { border-radius: 10px; box-shadow: var(--shadow); width: 100%; aspect-ratio: 1/1; object-fit: cover; }
@media (max-width: 820px) { .gallery { grid-template-columns: repeat(2, 1fr); } }

/* Campaign gallery — show full image (no cropping), so "THIS IS YOU" and heads are never cut off */
.gallery.campaign { align-items: start; }
.gallery.campaign img { aspect-ratio: auto; height: auto; object-fit: contain; }

/* Uniform gallery — all tiles the same size, cropped to a landscape shape and anchored
   to the top so every "THIS IS YOU" caption stays visible (no black bars) */
.gallery.uniform img { aspect-ratio: 3 / 2; height: auto; object-fit: cover; object-position: center top; }

/* Prices hidden on the Merch shop only (per request) */
.product-price { display: none !important; }

/* ---------- Product shop grid (Merch) ---------- */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 980px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .product-grid { grid-template-columns: 1fr; } }
.product-card { display: flex; flex-direction: column; background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); border-top: 3px solid var(--gold); text-decoration: none; color: var(--ink); transition: transform .15s ease, box-shadow .15s ease; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(0,0,0,.16); }
.product-img { background: #fff; aspect-ratio: 1 / 1; padding: 8px; }
.product-img img { width: 100%; height: 100%; object-fit: contain; display: block; }
.product-info { padding: 14px 16px; display: flex; flex-direction: column; gap: 4px; flex-grow: 1; }
.product-name { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--plum); font-size: 0.98rem; line-height: 1.25; }
.product-price { color: #a8850a; font-weight: 600; margin-top: auto; }

/* ---------- Pricing ---------- */
.pricing { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; align-items: stretch; }
@media (max-width: 980px) { .pricing { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .pricing { grid-template-columns: 1fr; } }
.pricing-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .pricing-3 { grid-template-columns: 1fr; } }
.price-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow);
  text-align: center;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 3px solid transparent;
}
.price-card.featured { border: 3px solid var(--gold); }
.pricing .price-card h3 { min-height: 2.6em; }
.pricing .price-card .per { min-height: 1.2em; }
.price-card .tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--plum-dark); font-size: 0.72rem; font-weight: 700;
  padding: 5px 16px; border-radius: 40px; text-transform: uppercase; letter-spacing: 1px; white-space: nowrap;
}
.price-card .amount { font-family: 'Playfair Display', serif; font-size: 2.4rem; color: var(--plum); margin: 6px 0; }
.price-card .per { font-size: 0.85rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.price-card p { font-size: 0.95rem; color: var(--muted); flex-grow: 1; }
.price-card .btn { margin-top: 16px; width: 100%; }

.feature-list { list-style: none; text-align: left; margin: 18px auto; max-width: 520px; }
.feature-list li { padding: 8px 0 8px 32px; position: relative; border-bottom: 1px solid var(--cream-2); }
.feature-list li::before { content: "★"; position: absolute; left: 4px; color: var(--gold); }

/* Fast Track "everything included" highlight panel */
.ft-includes { background: var(--white); border: 2px solid var(--gold); border-radius: var(--radius); box-shadow: var(--shadow); max-width: 860px; margin: 40px auto 0; padding: 38px 44px; text-align: center; }
.ft-includes h3 { margin-bottom: 6px; }
.feature-list.two-col { columns: 2; column-gap: 44px; max-width: none; margin: 20px 0 26px; }
.feature-list.two-col li { break-inside: avoid; }
@media (max-width: 600px) { .feature-list.two-col { columns: 1; } .ft-includes { padding: 30px 24px; } }

/* ---------- FAQ ---------- */
.faq-item {
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 14px;
  box-shadow: 0 4px 14px rgba(44,16,36,0.07);
  overflow: hidden;
}
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 20px 24px; font-size: 1.08rem; font-weight: 600; color: #a8850a;
  font-family: 'Playfair Display', serif; display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
.faq-q::after { content: "+"; color: var(--gold); font-size: 1.6rem; flex-shrink: 0; transition: transform .2s; }
.faq-q.open::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; padding: 0 24px; }
.faq-a p { padding: 4px 0 20px; color: var(--ink); margin: 0; }

/* ---------- Quote ---------- */
.quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--plum);
  border-left: 4px solid var(--gold);
  padding: 6px 0 6px 24px;
  margin: 22px 0;
}

/* ---------- Video ---------- */
.video-wrap { position: relative; padding-bottom: 56.25%; height: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.video-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

/* ---------- Sign-up form ---------- */
.signup {
  background: var(--white);
  color: var(--ink);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 46px 48px;
  max-width: 920px;
  margin: 0 auto;
  box-shadow: var(--shadow);
  text-align: center;
}
.signup h2 { color: var(--plum); margin-bottom: 8px; }
.signup p { color: var(--muted); margin-bottom: 22px; }
.signup form { display: flex; flex-direction: column; gap: 14px; }
.signup input, .signup textarea, .signup select {
  padding: 14px 16px; border-radius: 8px; border: 1px solid #ddd; font-size: 1rem; font-family: inherit; width: 100%;
}
.signup .btn { margin-top: 6px; }
.form-note { font-size: 0.78rem; color: var(--muted); margin-top: 14px; }
.signup-tagline { font-family: 'Playfair Display', serif; font-style: italic; font-size: clamp(1.2rem, 2.6vw, 1.6rem); color: var(--plum); line-height: 1.35; margin-bottom: 18px; }
.signup-img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; object-position: center top; border-radius: 12px; border: 3px solid var(--gold); box-shadow: 0 8px 24px rgba(0,0,0,.15); margin: 0 auto 18px; }

/* ---------- Footer ---------- */
.site-footer { background: #efece3; color: var(--ink); padding: 50px 0 26px; border-top: 3px solid var(--gold); }
.footer-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 30px; margin-bottom: 30px; }
.footer-grid h4 { color: var(--plum); margin-bottom: 14px; font-size: 1.05rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: #555; text-decoration: none; font-size: 0.92rem; }
.footer-links a:hover { color: #a8850a; }
.social a { color: #444; text-decoration: none; margin-right: 16px; font-size: 0.92rem; }
.social a:hover { color: #a8850a; }
.footer-bottom { border-top: 1px solid rgba(0,0,0,0.12); padding-top: 20px; text-align: center; font-size: 0.82rem; color: var(--muted); }

/* ---------- Fast Track: price callout + recruiting banner ---------- */
.ft-eyebrow { text-transform: uppercase; letter-spacing: 3px; font-weight: 700; color: #a8850a; font-size: clamp(1.2rem, 2.6vw, 1.6rem); margin-bottom: 10px; }
.ft-price { font-size: 1.25rem; margin-top: 26px; color: var(--ink); }
.ft-price strong { font-family: 'Playfair Display', serif; font-size: 2.4rem; color: #a8850a; vertical-align: middle; }
.ft-price strong span { font-family: 'Poppins', sans-serif; font-size: 1rem; color: var(--muted); font-weight: 400; }
.ft-recruit { background: linear-gradient(135deg, #ffe9a6 0%, #F7C500 100%); border: 2px solid var(--gold); border-radius: var(--radius); padding: 32px 30px; margin-top: 30px; box-shadow: var(--shadow); text-align: center; }
.ft-recruit-kicker { text-transform: uppercase; letter-spacing: 3px; font-weight: 700; font-size: 0.8rem; color: #7a5e00; margin-bottom: 6px; }
.ft-recruit h3 { color: var(--plum); margin-bottom: 10px; font-size: clamp(1.5rem, 3vw, 2rem); }
.ft-recruit p { color: #2a2200; max-width: 560px; margin: 0 auto 18px; }
.ft-recruit .btn { background: #000; color: var(--gold); }
.ft-recruit .btn:hover { background: #1a1a1a; color: #ffd633; }

/* ---------- Slim hero (so the banner dominates) ---------- */
.hero-slim { padding: 38px 22px 30px; border-bottom: none; }
.hero-slim h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 6px; }
.hero-slim p.lead { font-size: 1.05rem; margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Condensed, centred banner image (whole image, smaller footprint) ---------- */
.banner-contained { max-width: 760px; margin: 10px auto 0; padding: 0 22px; }
.banner-contained img { width: 100%; height: auto; display: block; border: 4px solid var(--gold); border-radius: 14px; box-shadow: var(--shadow); }

/* ---------- Slim banner (e.g. Courses page) ---------- */
.slim-banner { width: 100%; line-height: 0; background: #000; }
.slim-banner img { width: 100%; height: 240px; object-fit: cover; object-position: center; display: block; }
@media (max-width: 600px) { .slim-banner img { height: 160px; } }

/* ---------- Campaign banner (It's Not Too Late hero) ---------- */
.campaign-banner { width: 100%; line-height: 0; background: #000; }
.campaign-banner img { width: 100%; height: auto; display: block; }
/* Slim variant — full width but cropped shorter, keeps the subject's head in view */
.campaign-banner.banner-trim img { height: 40vh; min-height: 260px; max-height: 420px; object-fit: cover; object-position: center 28%; }
/* Fit variant — slim full-width band showing the WHOLE image (no cropping) */
.campaign-banner.banner-fit { background: #fff; }
.campaign-banner.banner-fit img { height: 38vh; min-height: 240px; max-height: 380px; object-fit: contain; }

/* ---------- Credibility strip ---------- */
.credits { background: #fff; border-bottom: 1px solid #eee; text-align: center; padding: 22px; }
.credits .label { color: #9c7a00; text-transform: uppercase; letter-spacing: 3px; font-size: .72rem; font-weight: 700; margin-bottom: 8px; }
.credits .names { font-family: 'Playfair Display', serif; font-size: clamp(1.05rem, 2.4vw, 1.5rem); color: var(--ink); margin: 0; }
.credits .names b { color: #9c7a00; font-weight: 700; }
.credits .logo-wall { max-width: 920px; width: 100%; height: auto; margin: 8px auto 0; display: block; }
.logo-wall-temp { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 18px; margin-top: 12px; }
.logo-wall-temp span { display: inline-flex; align-items: center; justify-content: center; min-width: 120px; height: 60px; padding: 0 18px; background: #f2f0eb; border: 1px dashed #cbb86a; border-radius: 8px; font-family: 'Playfair Display', serif; font-weight: 700; color: #666; font-size: 1rem; }
.logo-wall-live { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 14px; margin: 16px auto 0; }
.logo-wall-live img { height: 42px; width: auto; max-width: 110px; object-fit: contain; }
.logo-wall-live span { display: inline-flex; align-items: center; justify-content: center; min-width: 110px; height: 52px; padding: 0 16px; background: #f2f0eb; border: 1px solid #e6e1d4; border-radius: 8px; font-family: 'Playfair Display', serif; font-weight: 700; color: #555; }

/* ---------- Promise ---------- */
.promise { background: var(--cream-2); text-align: center; }
.promise .container { max-width: 820px; }
.promise-quote { font-family: 'Playfair Display', serif; font-style: italic; font-size: clamp(1.4rem, 3vw, 2rem); line-height: 1.5; color: var(--ink); }
.promise .sig { color: #9c7a00; letter-spacing: 2px; text-transform: uppercase; font-size: .85rem; font-weight: 600; margin-top: 16px; }

/* ---------- Testimonials + pathway cards ---------- */
.card .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 8px; }
.card .who { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--plum); margin-top: 10px; margin-bottom: 0; }
.step-num { display: inline-block; width: 36px; height: 36px; line-height: 36px; text-align: center; border-radius: 50%; background: var(--gold); color: var(--plum); font-weight: 700; font-family: 'Playfair Display', serif; margin-bottom: 10px; }
.step-price { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--plum); margin: 6px 0 4px; }
.pathway .card { display: flex; flex-direction: column; }
.pathway .card h3 { min-height: 2.5em; }

/* ---------- Utility ---------- */
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mb-2 { margin-bottom: 2rem; }
.text-gold { color: var(--gold); }
.narrow { max-width: 800px; margin-left: auto; margin-right: auto; }
