/* ============================================================
   Grand Rapids Rising — Shared Styles
   Palette pulled directly from the existing Hostinger page
   ============================================================ */

:root{
  --purple-deep:   #33285D;   /* darkest panels / nav-active */
  --purple-mid:    #4A3D7B;   /* solid buttons, headings on cream */
  --purple-soft:   #6D5C93;   /* secondary text on dark */
  --pink-accent:   #BF7FA2;   /* sponsor cta, eyebrows on dark */
  --pink-soft:     #E9D6E1;   /* pink card / hover fill */
  --cream:         #FAF7F2;   /* page background */
  --cream-2:       #F3EEE6;   /* alt section background */
  --white:         #FFFFFF;
  --ink:           #2A2144;   /* headline text on cream */
  --ink-soft:      #6B6478;   /* body copy on cream */
  --gold:          #C9A34E;   /* accent for flyer/banner */
  --line:          #E5DFD6;

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  font-family:var(--font-body);
  background:var(--cream);
  color:var(--ink);
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
.container{ max-width:1180px; margin:0 auto; padding:0 32px; }
section{ position:relative; }

/* ---------- Nav ---------- */
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:18px 32px;
  background:var(--cream);
  border-bottom:1px solid var(--line);
  position:sticky; top:0; z-index:50;
}
.nav-brand{ display:flex; align-items:center; gap:12px; }
.nav-brand img{ width:56px; height:56px; border-radius:50%; display:block; }
.nav-brand span{
  font-family:var(--font-display); font-weight:700; font-size:20px;
  color:var(--purple-deep);
}
.nav-actions{ display:flex; gap:12px; }
.nav-back{ display:flex; align-items:center; gap:8px; font-weight:600; color:var(--purple-deep); }

.btn{
  display:inline-flex; align-items:center; gap:8px;
  padding:12px 24px; border-radius:999px; font-weight:600; font-size:15px;
  border:none; cursor:pointer; transition:transform .15s ease, opacity .15s ease;
  white-space:nowrap;
}
.btn:hover{ transform:translateY(-1px); opacity:.94; }
.btn-purple{ background:var(--purple-mid); color:#fff; }
.btn-pink{ background:var(--pink-accent); color:#fff; }
.btn-cream{ background:var(--cream); color:var(--purple-deep); }
.btn-outline{ background:transparent; border:1.5px solid var(--purple-deep); color:var(--purple-deep); }
.btn-outline-light{ background:transparent; border:1.5px solid rgba(255,255,255,.5); color:#fff; }
.btn-block{ width:100%; justify-content:center; }
.btn-lg{ padding:16px 30px; font-size:16px; }

/* ---------- Hero ---------- */
.hero{
  background:linear-gradient(160deg,#4a3d7b 0%, #33285d 55%, #2a2148 100%);
  color:#fff; padding:96px 32px 90px; overflow:hidden; position:relative;
}
.hero::before{
  content:""; position:absolute; inset:0; opacity:.16; pointer-events:none;
  background-image:url("skyline.svg"); background-repeat:repeat-x; background-position:bottom;
  background-size:900px auto;
}
.hero-grid{
  max-width:1180px; margin:0 auto; position:relative; z-index:2;
  display:grid; grid-template-columns:1.15fr .85fr; gap:64px; align-items:center;
}
.eyebrow{
  font-size:13px; letter-spacing:.16em; text-transform:uppercase; font-weight:600;
  color:var(--pink-accent); margin-bottom:18px; display:block;
}
.hero h1{
  font-family:var(--font-display); font-weight:700; font-size:64px; line-height:1.05;
  margin-bottom:22px; color:#fdfbf8;
}
.hero p.lead{ font-size:18px; color:#d9d3e6; max-width:480px; margin-bottom:26px; }
.meta-row{ display:flex; flex-direction:column; gap:12px; margin-bottom:34px; }
.meta-item{ display:flex; align-items:flex-start; gap:10px; font-size:15px; color:#e7e2f0; }
.meta-item svg{ flex-shrink:0; margin-top:2px; }
.meta-item b{ color:#fff; font-weight:600; }

.hero-photo{ position:relative; }
.hero-photo-card{
  border-radius:18px; box-shadow:0 30px 60px rgba(0,0,0,.35);
}
.hero-photo-card.gold-shine{
  padding:4px; border-radius:19px;
  background:linear-gradient(115deg,#C9A34E 0%,#C9A34E 42%,#F6E3A8 50%,#C9A34E 58%,#C9A34E 100%);
  background-size:250% 250%;
  animation:goldShine 7s ease-in-out infinite;
}
.gold-shine-inner{ border-radius:15px; overflow:hidden; }
.hero-photo-card img{ width:100%; height:420px; object-fit:cover; object-position:top center; display:block; }
.hero-photo-cap{
  margin-top:14px; font-size:15px; color:#efe9f6; font-weight:500; text-align:left;
}

@keyframes goldShine{
  0%, 82%   { background-position:0% 50%; }
  90%       { background-position:100% 50%; }
  100%      { background-position:0% 50%; }
}

/* ---------- Quote ---------- */
.quote-section{ text-align:center; padding:80px 32px 60px; }
.quote-logo{ width:88px; height:88px; border-radius:50%; margin:0 auto 28px; }
.quote-section blockquote{
  font-family:var(--font-display); font-style:italic; font-weight:600;
  font-size:28px; color:var(--purple-deep); max-width:900px; margin:0 auto 18px;
  line-height:1.3; white-space:nowrap;
}
.quote-attr{ font-size:13px; letter-spacing:.1em; text-transform:uppercase; color:var(--ink-soft); }

/* ---------- About / community ---------- */
.about-section{ padding:20px 32px 90px; }
.about-inner{ max-width:820px; margin:0 auto; }
h2{ font-family:var(--font-display); font-weight:700; font-size:38px; color:var(--purple-deep); margin-bottom:20px; }
.about-inner p{ font-size:17px; color:var(--ink-soft); margin-bottom:32px; }
.about-photo{ border-radius:16px; overflow:hidden; box-shadow:0 20px 40px rgba(51,40,93,.12); }
.about-photo img{ width:100%; }
.about-photo-cap{ background:#fff; padding:16px 20px; font-size:14px; color:var(--ink-soft); text-align:center; }
.about-photo-wrap{ max-width:520px; margin:0 auto; background:var(--cream-2); padding:20px; border-radius:22px; }

/* ---------- Photo gallery ---------- */
.gallery-grid{ display:grid; grid-template-columns:1.3fr 1fr; gap:16px; max-width:900px; margin:0 auto; }
.gallery-grid .g-main{ grid-row:1 / 3; border-radius:16px; overflow:hidden; box-shadow:0 20px 40px rgba(51,40,93,.12); }
.gallery-grid .g-main img{ width:100%; height:100%; object-fit:cover; display:block; }
.gallery-grid .g-side{ border-radius:16px; overflow:hidden; box-shadow:0 14px 28px rgba(51,40,93,.1); }
.gallery-grid .g-side img{ width:100%; height:100%; object-fit:cover; display:block; }
.gallery-cap{ text-align:center; font-size:14px; color:var(--ink-soft); margin-top:16px; }

/* ---------- Video feature ---------- */
.video-feature{ padding:10px 32px 70px; text-align:center; }
.video-feature-inner{ max-width:820px; margin:0 auto; }
.video-feature .eyebrow{ display:block; margin-bottom:14px; }
.video-feature-card{
  position:relative; border-radius:18px; overflow:hidden; display:block;
  box-shadow:0 24px 50px rgba(51,40,93,.18);
}
.video-feature-card img{ width:100%; display:block; }
.video-feature-play{
  position:absolute; inset:0; display:flex; align-items:center; justify-content:center;
  background:linear-gradient(180deg, rgba(42,33,68,.05) 0%, rgba(42,33,68,.55) 100%);
}
.video-feature-play span{
  width:76px; height:76px; border-radius:50%; background:rgba(250,247,242,.94);
  display:flex; align-items:center; justify-content:center; box-shadow:0 10px 24px rgba(0,0,0,.3);
  transition:transform .2s ease;
}
.video-feature-card:hover .video-feature-play span{ transform:scale(1.06); }
.video-feature-title{
  position:absolute; left:0; right:0; bottom:0; padding:22px 26px;
  background:linear-gradient(0deg, rgba(20,15,35,.75), transparent);
  color:#fff; text-align:left; font-family:var(--font-display); font-size:19px; font-weight:600;
}
.video-feature-sub{ font-size:14px; color:var(--ink-soft); margin-top:14px; }
.video-feature-sub a{ color:var(--purple-mid); font-weight:600; text-decoration:underline; }

/* ---------- Emcee section ---------- */
.emcee-section{ padding:20px 32px 90px; }
.emcee-inner{ max-width:820px; margin:0 auto; text-align:center; }
.emcee-inner .eyebrow{ display:block; text-align:center; margin-bottom:20px; }
.emcee-card{
  background:var(--cream-2); border-radius:22px; padding:40px;
  display:grid; grid-template-columns:auto 1fr; gap:32px; align-items:center; text-align:left;
}
.emcee-photo-lg{
  width:140px; height:140px; border-radius:50%; overflow:hidden; flex-shrink:0;
  box-shadow:0 14px 30px rgba(51,40,93,.18);
}
.emcee-photo-lg.gold-shine-circle{
  padding:3px;
  background:linear-gradient(115deg,#C9A34E 0%,#C9A34E 42%,#F6E3A8 50%,#C9A34E 58%,#C9A34E 100%);
  background-size:250% 250%;
  animation:goldShine 7s ease-in-out infinite;
}
.emcee-photo-lg img{ width:100%; height:100%; object-fit:cover; border-radius:50%; display:block; }
.emcee-card h3{ font-family:var(--font-display); font-size:26px; color:var(--purple-deep); margin-bottom:6px; }
.emcee-role{ font-size:13px; letter-spacing:.04em; color:var(--pink-accent); font-weight:700; text-transform:uppercase; margin-bottom:14px; }
.emcee-card p{ font-size:15px; color:var(--ink-soft); line-height:1.65; }

/* ---------- Pillars (dark) ---------- */
.pillars{ background:var(--purple-deep); color:#fff; padding:90px 32px; }
.pillars-inner{ max-width:1180px; margin:0 auto; }
.pillars h2{ color:#fdfbf8; max-width:640px; }
.pillars .eyebrow{ margin-bottom:14px; }
.pillars-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:0; margin-top:56px; }
.pillar{ padding:0 32px; border-left:1px solid rgba(255,255,255,.18); }
.pillar:first-child{ border-left:none; padding-left:0; }
.pillar-num{ font-family:var(--font-display); font-size:30px; color:var(--pink-accent); font-weight:700; margin-bottom:18px; }
.pillar-label{ font-size:12px; letter-spacing:.12em; text-transform:uppercase; color:#b3a8cf; margin-bottom:8px; }
.pillar h3{ font-family:var(--font-display); font-size:23px; margin-bottom:14px; color:#fff; }
.pillar p{ font-size:15px; color:#cfc7e2; line-height:1.6; }
.pillar.card{ background:rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.14); border-radius:16px; padding:32px; }

/* ---------- Schedule / Location ---------- */
.sched-section{ padding:90px 32px; }
.sched-grid{ max-width:1180px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:start; }
.sched-list{ list-style:none; }
.sched-item{ display:flex; gap:18px; padding-bottom:28px; margin-bottom:28px; border-left:2px solid var(--pink-soft); padding-left:22px; position:relative; }
.sched-item:last-child{ margin-bottom:0; padding-bottom:0; }
.sched-item::before{
  content:""; position:absolute; left:-7px; top:2px; width:12px; height:12px;
  border-radius:50%; background:var(--pink-accent);
}
.sched-time{ font-size:14px; font-weight:700; color:var(--purple-deep); margin-bottom:4px; display:flex; align-items:center; gap:8px; }
.sched-desc{ font-size:16px; color:var(--ink); }

.location-card{ background:var(--purple-deep); color:#fff; border-radius:20px; padding:40px; }
.location-card h3{ font-family:var(--font-display); font-size:26px; margin-bottom:22px; }
.location-addr{ display:flex; gap:12px; font-size:16px; color:#eee8f6; line-height:1.6; margin-bottom:20px; }
.location-card a.maps{ color:var(--pink-accent); font-weight:600; font-size:15px; }
.location-divider{ height:1px; background:rgba(255,255,255,.18); margin:26px 0; }
.location-note{ display:flex; align-items:center; gap:10px; font-size:14px; color:#c9c0dd; }

/* ---------- Ticket / Reserve module ---------- */
.reserve-section{ padding:30px 32px 100px; text-align:center; }
.reserve-section h2{ text-align:center; }
.reserve-section .sub{ color:var(--ink-soft); font-size:17px; margin-bottom:48px; }
.ticket-card{
  max-width:640px; margin:0 auto; background:#fff; border-radius:22px;
  box-shadow:0 30px 60px rgba(51,40,93,.14); padding:40px; text-align:left;
}
.ticket-row{ display:flex; justify-content:space-between; align-items:center; padding-bottom:24px; margin-bottom:24px; border-bottom:1px solid var(--line); }
.ticket-row h4{ font-family:var(--font-display); font-size:22px; color:var(--purple-deep); margin-bottom:4px; }
.ticket-row .price{ color:var(--ink-soft); font-size:15px; }
.qty{ display:flex; align-items:center; gap:16px; border:1px solid var(--line); border-radius:999px; padding:8px 18px; }
.qty button{ background:none; border:none; font-size:18px; color:var(--purple-deep); cursor:pointer; }
.donation-label{ display:flex; align-items:center; gap:8px; font-weight:700; color:var(--purple-deep); margin-bottom:6px; }
.donation-sub{ font-size:14px; color:var(--ink-soft); margin-bottom:16px; }
.chip-row{ display:grid; grid-template-columns:repeat(4,1fr); gap:10px; margin-bottom:24px; }
.chip{ border:1px solid var(--line); border-radius:12px; padding:14px 0; text-align:center; font-weight:700; color:var(--purple-deep); background:#fff; cursor:pointer; }
.chip.active{ background:var(--purple-mid); color:#fff; border-color:var(--purple-mid); }
.ticket-total{ display:flex; justify-content:space-between; align-items:center; padding:20px 0; border-top:1px solid var(--line); margin-bottom:12px; font-size:16px; color:var(--ink-soft); }
.ticket-total b{ font-size:22px; color:var(--purple-deep); font-family:var(--font-display); }

/* ---------- Zeffy placeholder ---------- */
.zeffy-slot{
  border:1.5px dashed #c9bfe0; border-radius:16px; background:#faf8fd; padding:26px;
  text-align:center; color:var(--purple-mid); font-size:14px; margin-top:16px;
}
.zeffy-slot b{ display:block; font-size:15px; margin-bottom:4px; color:var(--purple-deep); }

/* ---------- Donate one-time ---------- */
.donate-section{ background:#fff; padding:100px 32px; text-align:center; }
.donate-section .eyebrow{ color:var(--pink-accent); }
.donate-section h2{ text-align:center; }
.donate-section .sub{ max-width:560px; margin:0 auto 44px; color:var(--ink-soft); font-size:17px; }
.donate-card{ max-width:560px; margin:0 auto; background:var(--cream-2); border-radius:20px; padding:36px; }
.donate-card .label{ display:flex; align-items:center; gap:8px; font-weight:700; color:var(--purple-deep); margin-bottom:18px; }
.donate-chip-row{ display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin-bottom:24px; }
.donate-foot{ font-size:13px; color:var(--ink-soft); margin-top:16px; }

/* ---------- Monthly ---------- */
.monthly{ background:var(--purple-deep); color:#fff; padding:90px 32px 60px; text-align:center; }
.monthly .eyebrow{ text-align:center; }
.monthly h2{ color:#fff; text-align:center; }
.monthly .sub{ max-width:560px; margin:0 auto 48px; color:#cfc7e2; font-size:16px; }
.monthly-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; max-width:900px; margin:0 auto; }
.monthly-card{ background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.14); border-radius:16px; padding:34px 20px; }
.monthly-card .amt{ font-family:var(--font-display); font-size:26px; font-weight:700; margin-bottom:20px; }
.monthly-foot{ margin-top:36px; font-size:14px; color:#c9c0dd; }
.monthly-foot a{ color:var(--pink-accent); font-weight:600; }

/* ---------- Footer ---------- */
footer{ background:var(--purple-deep); color:#cfc7e2; padding:60px 32px 30px; }
.footer-grid{ max-width:1180px; margin:0 auto; display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:40px; padding-bottom:40px; border-bottom:1px solid rgba(255,255,255,.12); }
.footer-brand{ display:flex; gap:12px; align-items:flex-start; margin-bottom:14px; }
.footer-brand img{ width:44px; height:44px; border-radius:50%; }
.footer-brand-name{ font-family:var(--font-display); color:#fff; font-weight:700; font-size:17px; }
.footer-col h5{ font-size:13px; letter-spacing:.08em; text-transform:uppercase; color:#a99bc4; margin-bottom:16px; }
.footer-col a, .footer-col p{ display:block; font-size:14px; color:#cfc7e2; margin-bottom:10px; }
.footer-bottom{ max-width:1180px; margin:24px auto 0; display:flex; justify-content:space-between; font-size:13px; color:#a99bc4; flex-wrap:wrap; gap:10px; }

/* ---------- Sponsor page specific ---------- */
.sp-hero{
  background:linear-gradient(160deg,#4a3d7b 0%, #33285d 55%, #2a2148 100%);
  color:#fff; padding:90px 32px; text-align:center; position:relative; overflow:hidden;
}
.sp-hero::before{
  content:""; position:absolute; inset:0; opacity:.16; pointer-events:none;
  background-image:url("skyline.svg"); background-repeat:repeat-x; background-position:bottom;
  background-size:900px auto;
}
.sp-hero-inner{ position:relative; z-index:2; max-width:760px; margin:0 auto; }
.sp-hero h1{ font-family:var(--font-display); font-size:52px; margin-bottom:20px; }
.sp-hero p{ font-size:17px; color:#ddd6ec; margin-bottom:34px; }

.tax-section{ padding:64px 32px 0; }
.tax-card{ max-width:900px; margin:0 auto; background:#fff; border-radius:20px; padding:44px; box-shadow:0 20px 50px rgba(51,40,93,.08); display:flex; gap:24px; }
.tax-icon{ width:52px; height:52px; border-radius:50%; background:var(--cream-2); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.tax-card .eyebrow{ margin-bottom:8px; }
.tax-card h3{ font-family:var(--font-display); font-size:26px; color:var(--purple-deep); margin-bottom:16px; }
.tax-card p{ font-size:15px; color:var(--ink-soft); margin-bottom:14px; line-height:1.7; }
.tax-card p em{ font-size:13px; }

.video-section{ padding:90px 32px; text-align:center; }
.video-section .eyebrow{ text-align:center; }
.video-section h2{ text-align:center; margin-bottom:44px; }
.video-card{
  max-width:1050px; margin:0 auto; background:linear-gradient(135deg,#b9b3c6,#a49cba);
  border-radius:20px; overflow:hidden; box-shadow:0 30px 70px rgba(51,40,93,.18);
  position:relative;
}
.video-frame{ position:relative; width:100%; aspect-ratio:16/9; background:#000; }
.video-frame iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; }

.levels-section{ padding:20px 32px 100px; }
.levels-inner{ max-width:900px; margin:0 auto; }
.levels-inner h2{ text-align:center; }
.levels-inner > p{ text-align:center; color:var(--ink-soft); font-size:16px; max-width:560px; margin:0 auto 50px; }
.level-card{ border-radius:20px; padding:38px; margin-bottom:22px; display:grid; grid-template-columns:1fr auto; gap:20px; align-items:start; }
.level-card.featured{ background:linear-gradient(135deg,#4a3d7b,#33285d); color:#fff; }
.level-card.plain{ background:#fff; border:1px solid var(--line); box-shadow:0 10px 30px rgba(51,40,93,.05); }
.level-tag{ font-size:12px; letter-spacing:.1em; text-transform:uppercase; margin-bottom:8px; }
.level-card.featured .level-tag{ color:var(--pink-accent); }
.level-card.plain .level-tag{ color:var(--ink-soft); }
.level-card h3{ font-family:var(--font-display); font-size:30px; margin-bottom:8px; }
.level-card.plain h3{ color:var(--purple-deep); }
.level-price{ font-family:var(--font-display); font-size:22px; font-weight:700; margin-bottom:22px; }
.level-card.featured .level-price{ color:var(--pink-accent); }
.level-card.plain .level-price{ color:var(--purple-mid); }
.level-tagline{ font-size:12px; letter-spacing:.08em; text-transform:uppercase; margin-bottom:12px; grid-column:1/-1; }
.level-card.featured .level-tagline{ color:#c9bfe0; }
.level-card.plain .level-tagline{ color:#a79bc4; }
.benefits{ list-style:none; display:grid; grid-template-columns:1fr 1fr; gap:10px 30px; grid-column:1/-1; }
.benefits li{ display:flex; align-items:flex-start; gap:10px; font-size:15px; }
.level-card.featured .benefits li{ color:#efe9f6; }
.level-card.plain .benefits li{ color:var(--ink-soft); }
.level-card .cta{ grid-row:1; grid-column:2; align-self:start; }

/* ---------- Responsive ---------- */
@media (max-width:900px){
  .hero-grid, .sched-grid{ grid-template-columns:1fr; }
  .hero h1{ font-size:44px; }
  .emcee-card{ grid-template-columns:1fr; text-align:center; justify-items:center; }
  .pillars-grid{ grid-template-columns:1fr; gap:36px; }
  .pillar{ border-left:none; padding-left:0; border-top:1px solid rgba(255,255,255,.18); padding-top:28px; }
  .pillar:first-child{ border-top:none; padding-top:0; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .level-card{ grid-template-columns:1fr; }
  .level-card .cta{ grid-row:auto; grid-column:auto; }
  .chip-row{ grid-template-columns:repeat(2,1fr); }
  .monthly-grid{ grid-template-columns:1fr; }
  .nav-brand span{ font-size:16px; }
  .btn{ padding:10px 18px; font-size:14px; }
}
