/* KWCS hero styles — extracted from _assets/kwcs-homepage-v4.html */

/* ─── HERO (gold bg, Chewy headline, blue accent words) ─── */
  .hero {
    position: relative;
    min-height: calc(100vh - 120px);
    background: #FFC80B;
    background: radial-gradient(circle, rgba(255, 200, 11, 1) 0%, rgba(245, 166, 36, 1) 100%);
    overflow: hidden;
    padding: 200px 80px 100px;
    display: flex;
    align-items: center;
  }

.hero .face-pattern { opacity: 0.6; }

/* Hero doodles overlayed in absolute positions */
  .hero-doodle {
    position: absolute;
    pointer-events: none;
    z-index: 2;
  }

.hero-doodle--loop {
    top: 110px;
    left: 30%;
    width: 54%;
    max-width: 760px;
    opacity: 0.95;
  }

.hero-doodle--squiggle {
    top: 50px;
    left: 38%;
    width: 90px;
    transform: rotate(-15deg);
  }

.hero-doodle--burst {
    bottom: 60px;
    right: 4%;
    width: 100px;
    z-index: 4;
    transform: rotate(90deg);
  }

.hero-doodle--heart {
    bottom: 18%;
    left: 40%;
    width: 140px;
    transform: rotate(-10deg);
    z-index: 2;
  }

.hero-doodle--stars {
    top: 14%;
    right: 2%;
    width: 80px;
    z-index: 4;
  }

@media (max-width: 1024px) {
  .hero-doodle--squiggle { display: none; }
  .hero-doodle--heart { display: none; }
}

.hero-inner {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
  }

.hero-left { max-width: 720px; }

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--navy-deep);
    margin-bottom: 20px;
    background: rgba(255,255,255,0.45);
    padding: 7px 16px;
    border-radius: 100px;
    animation: fadeUp 0.7s ease both;
  }

.hero-eyebrow-dot {
    width: 8px; height: 8px; border-radius: 50%; background: var(--navy);
  }

.hero-title {
    font-size: clamp(54px, 7.5vw, 112px);
    line-height: 0.95;
    color: var(--navy-deep);
    margin-bottom: 24px;
    animation: fadeUp 0.7s 0.05s ease both;
  }

.hero-title .wh { color: white; -webkit-text-stroke: 0; text-shadow: 0 2px 0 rgba(0,0,0,0.04); }

.hero-title .navy-word { color: var(--navy); display: inline-block; }

.hero-body {
    font-family: 'Nunito', sans-serif;
    font-size: 19px;
    line-height: 1.6;
    color: var(--navy-deep);
    max-width: 560px;
    margin-bottom: 36px;
    font-weight: 600;
    animation: fadeUp 0.7s 0.15s ease both;
  }

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    animation: fadeUp 0.7s 0.25s ease both;
  }

.hero-free-note {
    font-size: 14px;
    color: var(--navy-deep);
    margin-top: 24px;
    line-height: 1.6;
    font-weight: 600;
    animation: fadeUp 0.7s 0.35s ease both;
  }

.hero-free-note a {
    color: var(--navy);
    font-weight: 800;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
  }

/* Hero image */
  .hero-visual {
    position: relative;
    z-index: 3;
    animation: fadeUp 0.7s 0.2s ease both;
  }

.hero-image-card {
    background: white;
    border-radius: 28px;
    padding: 14px 14px 18px;
    box-shadow: 0 20px 50px rgba(30,75,143,0.22);
    position: relative;
    transform: rotate(2deg);
  }

.hero-image-card img {
    display: block;
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 18px;
  }

/* placeholder removed — now uses real photo */

  /* Floating event card in hero */
  .hero-event-card {
    position: absolute;
    left: -30px;
    bottom: 30px;
    background: var(--navy);
    border-radius: 20px;
    padding: 16px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    transform: rotate(-3deg);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 3px solid white;
    min-width: 280px;
  }

.hero-event-card:hover {
    transform: rotate(-1deg) translateY(-4px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.3);
  }

.hero-event-date {
    background: var(--gold);
    border-radius: 12px;
    padding: 10px 14px;
    text-align: center;
    flex-shrink: 0;
    font-family: 'Chewy', cursive;
    color: var(--navy-deep);
    line-height: 1;
  }

.hero-event-day { font-size: 26px; display: block; }

.hero-event-month { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 2px; display: block; opacity: 0.85; }

.hero-event-info { line-height: 1.3; }

.hero-event-kicker { font-size: 10px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 3px; }

.hero-event-name { color: white; font-size: 15px; font-weight: 800; line-height: 1.2; }

.hero-event-sub { color: rgba(255,255,255,0.7); font-size: 11.5px; margin-top: 2px; }

@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { padding-right: 0; max-width: 480px; margin: 0 auto; }
  .hero-event-card { left: 10px; bottom: 10px; }
}

@media (max-width: 1024px) {
  .hero { padding: 112px 32px 72px; min-height: auto; }
}

@media (max-width: 768px) {
  .hero { padding: 96px 20px 60px; }
  .hero-title { font-size: clamp(44px, 11vw, 72px); }
  .hero-body { font-size: 16.5px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-event-card { left: -10px; bottom: -20px; transform: rotate(-2deg); min-width: 260px; }
}
