/* ==========================================================================
   Section Heading — Graffiti 3D Text System
   Extends hero heading treatment to all section headings site-wide
   ========================================================================== */

.section-heading {
  font-family: 'Permanent Marker', var(--font-heading-family);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 3rem;
  color: var(--color-text);
  text-shadow:
    3px 3px 0px rgba(0, 0, 0, 0.4),
    5px 5px 0px rgba(0, 0, 0, 0.3),
    7px 7px 0px rgba(0, 0, 0, 0.2);
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.3);
  paint-order: stroke fill;
  letter-spacing: 0.02em;
}

@media screen and (min-width: 750px) {
  .section-heading {
    font-size: 3.8rem;
  }
}

@media screen and (min-width: 990px) {
  .section-heading {
    font-size: 4.8rem;
  }
}

/* Neon yellow accent variant */
.section-heading--neon {
  color: var(--color-primary);
  text-shadow:
    0 0 20px rgba(227, 252, 2, 0.6),
    0 0 40px rgba(227, 252, 2, 0.3),
    3px 3px 0px rgba(0, 0, 0, 0.4),
    5px 5px 0px rgba(0, 0, 0, 0.3);
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.4);
}

/* Pink/purple gradient variant — for high-impact headings */
.section-heading--gradient {
  background: linear-gradient(135deg, var(--color-pink), var(--color-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  -webkit-text-stroke: 0;
  filter: drop-shadow(3px 3px 0px rgba(0, 0, 0, 0.4));
}

/* Section header wrapper — centers or aligns the heading */
.section-header {
  margin-bottom: 3rem;
}

.section-header--centered {
  text-align: center;
}
