/* ==============================================
   events.css — page-specific styles for events.html
   Shared styles (nav, footer, vars) are in shared.css
   ============================================== */

/* ---------- HERO ---------- */
  .events-hero {
    background: var(--purple);
    color: white;
    padding: 80px 0 0;
    position: relative;
    margin-bottom: -4px;
  }
  .events-hero::before { content: ''; position: absolute; top: -120px; right: -80px; width: 360px; height: 360px; border-radius: 50%; background: rgba(255,255,255,0.05); }
  .events-hero::after { content: ''; position: absolute; bottom: -100px; left: -60px; width: 260px; height: 260px; border-radius: 50%; background: rgba(255,255,255,0.04); }
  .events-hero .eyebrow { color: #a7e6bb; font-weight: 700; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px; display: block; position: relative; z-index: 1; }
  .events-hero h1 { color: white; font-size: clamp(36px, 5.5vw, 56px); max-width: 680px; margin-bottom: 16px; position: relative; z-index: 1; }
  .events-hero p { color: #e2d4f2; font-size: 18px; max-width: 540px; position: relative; z-index: 1; margin-bottom: 40px; }

  .ragged { display: block; width: 100%; height: 60px; margin-top: 0; margin-bottom: -3px; vertical-align: bottom; }

  section { padding: 90px 0; }

  /* ---------- QUICK FACTS STRIP ---------- */
  .facts-strip {
  margin-top: -4px; background: var(--white); border-bottom: 1px solid rgba(98,52,146,0.08); padding: 0; }
  .facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
  .fact-cell { padding: 36px 24px; text-align: center; border-right: 1px solid rgba(98,52,146,0.08); }
  .fact-cell:last-child { border-right: none; }
  .fact-num { font-family: 'Fraunces', serif; font-size: 30px; font-weight: 600; color: var(--purple); margin-bottom: 6px; }
  .fact-label { font-size: 13px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.04em; }

  /* ---------- WHAT'S INCLUDED ---------- */
  .section-head { max-width: 620px; margin-bottom: 50px; }
  .eyebrow { color: var(--green); font-weight: 700; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px; display: block; }
  .section-head h2 { font-size: clamp(28px, 4vw, 38px); margin-bottom: 12px; }
  .section-head p { color: var(--ink-soft); font-size: 16px; }

  .included-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .included-card { background: var(--white); border-radius: 18px; padding: 28px; border: 1px solid rgba(98,52,146,0.1); }
  .included-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--purple-light); display: flex; align-items: center; justify-content: center; font-size: 21px; margin-bottom: 16px; }
  .included-card h3 { font-size: 18px; margin-bottom: 8px; }
  .included-card p { color: var(--ink-soft); font-size: 14.5px; }

  /* ---------- PRICING CARD ---------- */
  .pricing-section { background: var(--cream-deep); }
  .pricing-card {
    background: var(--white);
    border-radius: 24px;
    padding: 48px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    box-shadow: 0 4px 24px rgba(43,26,61,0.06);
  }
  .pricing-card h3 { font-size: 26px; margin-bottom: 14px; }
  .pricing-list { list-style: none; }
  .pricing-list li { display: flex; gap: 12px; padding: 8px 0; font-size: 15px; color: var(--ink-soft); align-items: flex-start; }
  .pricing-list li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
  .pricing-amount-block { text-align: center; background: var(--purple); color: white; border-radius: 18px; padding: 32px 40px; }
  .pricing-amount { font-family: 'Fraunces', serif; font-size: 48px; font-weight: 700; }
  .pricing-amount-sub { font-size: 13px; color: #e2d4f2; text-transform: uppercase; letter-spacing: 0.05em; margin-top: 4px; }
  .pricing-amount-note { font-size: 13px; color: #d8c5ec; margin-top: 14px; max-width: 180px; }

  /* ---------- ALLOWED / NOT ---------- */
  .rules-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .rules-card { border-radius: 18px; padding: 30px; }
  .rules-card.yes { background: var(--green-light); border: 1px solid rgba(22,109,55,0.2); }
  .rules-card.no { background: #fbeae9; border: 1px solid rgba(180,60,50,0.2); }
  .rules-card h4 { font-size: 16px; margin-bottom: 14px; }
  .rules-card.yes h4 { color: var(--green); }
  .rules-card.no h4 { color: #a8392f; }
  .rules-card ul { list-style: none; }
  .rules-card li { padding: 6px 0; font-size: 14.5px; color: var(--ink-soft); display: flex; gap: 10px; }

  /* ---------- POPULAR EVENT TYPES ---------- */
  .event-types-row { display: flex; gap: 14px; flex-wrap: wrap; }
  .event-type-pill { background: var(--white); border: 1.5px solid rgba(98,52,146,0.18); border-radius: 100px; padding: 12px 22px; font-size: 14.5px; font-weight: 600; color: var(--ink-soft); }

  /* ---------- CTA ---------- */
  .events-cta { background: var(--purple); color: white; text-align: center; }
  .events-cta h2 { color: white; font-size: clamp(28px, 4vw, 38px); margin-bottom: 14px; }
  .events-cta p { color: #e2d4f2; font-size: 16px; max-width: 480px; margin: 0 auto 30px; }
  .cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
  .btn-primary { background: var(--green); color: white; padding: 15px 30px; border-radius: 100px; font-weight: 600; font-size: 15px; display: inline-flex; align-items: center; gap: 8px; transition: background 0.15s; }
  .btn-primary:hover { background: #125a2d; }
  .btn-ghost { background: rgba(255,255,255,0.12); border: 1.5px solid rgba(255,255,255,0.5); color: white; padding: 14px 28px; border-radius: 100px; font-weight: 600; font-size: 15px; }

/* ==============================================
   MOBILE STYLES — max-width: 640px
   ============================================== */
@media (max-width: 640px) {

  /* ---------- HERO ---------- */
  .events-hero { padding: 48px 0 0; }
  .events-hero h1 { font-size: clamp(28px, 7vw, 42px); }
  .events-hero p { font-size: 15px; }

  /* ---------- FACTS STRIP ---------- */
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .fact-cell { padding: 24px 16px; }
  .fact-num { font-size: 24px; }

  /* ---------- EVENT TYPE PILLS ---------- */
  .event-types-row { gap: 10px; }
  .event-type-pill { font-size: 13.5px; padding: 10px 16px; }

  /* ---------- PRICING CARD ---------- */
  .pricing-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 22px;
  }
  .pricing-amount-block { padding: 24px; }
  .pricing-amount { font-size: 40px; }

  /* ---------- RULES GRID ---------- */
  .rules-grid { grid-template-columns: 1fr; gap: 16px; }

  /* ---------- CTA ---------- */
  .events-cta { padding: 60px 0; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .btn-primary, .btn-ghost { width: 100%; max-width: 280px; justify-content: center; }

}
