/* hero.css — pixel-port van B3Hero, gestructureerd in vaste rijen
   (tapes/wordmark/tagline/collage/stickers) i.p.v. losse absolute
   posities, zodat de layout op elke breedte voorspelbaar is. */

.cr-hero {
  position: relative;
  padding: 60px 60px 80px;
  overflow: hidden;
  background: var(--crotona-cream);
  color: var(--crotona-ink);
}

/* ---------- shared tape util ---------- */
.cr-tape {
  display: inline-block;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1;
  border: 2px solid var(--crotona-ink);
  box-shadow: 4px 4px 0 #000;
  white-space: nowrap;
}
.cr-tape--lg {
  font-size: 20px;
  padding: 12px 22px;
  box-shadow: 5px 5px 0 #000;
}

/* ---------- background tapes (absolute, scattered) ---------- */
.cr-hero__tape {
  position: absolute;
  z-index: 2;
}

/* ---------- wordmark + tagline ---------- */
.cr-hero__wordmark-wrap {
  text-align: center;
  margin: 60px 0 0;
  position: relative;
  z-index: 5;
}
.cr-hero__wordmark {
  width: min(880px, 70%);
  height: auto;
  display: inline-block;
}
.cr-hero__tagline {
  text-align: center;
  margin: -56px 0 56px;
  position: relative;
  z-index: 5;
}

/* ---------- collage: 3 polaroids links + event card rechts ---------- */
.cr-hero__collage {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

/* polaroid-stack links — relative container met absolute kinderen */
.cr-hero__polaroids {
  position: relative;
  width: 760px;
  height: 360px;
  flex-shrink: 0;
}

.cr-polaroid {
  position: absolute;
  width: 240px;
  background: #ffffff;
  border: 2px solid var(--crotona-ink);
  padding: 10px 10px 44px;
  box-shadow: 8px 9px 0 #000;
  margin: 0;
  cursor: zoom-in;
}
.cr-polaroid__tape {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%) rotate(-4deg);
  width: 90px; height: 22px;
  border: 1.5px solid var(--crotona-ink);
}
.cr-polaroid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.cr-polaroid figcaption {
  position: absolute;
  bottom: 12px; left: 10px; right: 10px;
  text-align: center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--crotona-ink);
}

/* event card */
.cr-hero__event {
  background: var(--crotona-cream);
  color: var(--crotona-ink);
  border: 3px solid var(--crotona-ink);
  padding: 28px 30px;
  width: 360px;
  flex-shrink: 0;
  box-shadow: 8px 10px 0 var(--crotona-ink);
  font-family: "Space Grotesk", sans-serif;
  align-self: flex-start;
}
.cr-hero__event-status {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: 700;
  color: var(--crotona-tomato);
  margin-bottom: 18px;
}
.cr-hero__event-dot {
  width: 8px; height: 8px;
  background: var(--crotona-tomato);
  animation: cr-pulse 2s infinite;
}
.cr-hero__event-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 38px; line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  color: var(--crotona-ink);
}
.cr-hero__event-date {
  font-size: 22px;
  margin-bottom: 4px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.cr-hero__event-loc {
  font-size: 15px;
  margin-bottom: 4px;
  font-weight: 500;
}
.cr-hero__event-meta {
  font-size: 13px;
  opacity: 0.7;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.cr-hero__event-cta {
  display: block;
  text-align: center;
  background: var(--crotona-blush);
  color: var(--crotona-ink);
  border: 2.5px solid var(--crotona-ink);
  padding: 14px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 4px 4px 0 var(--crotona-ink);
  /* tekst-stijl pijl, geen emoji-tile rendering */
  font-variant-emoji: text;
  transition: transform 180ms cubic-bezier(0.22,0.61,0.36,1),
              box-shadow 180ms cubic-bezier(0.22,0.61,0.36,1);
}
.cr-hero__event-cta:hover {
  color: var(--crotona-ink);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--crotona-ink);
}

/* ---------- floating stickers row ---------- */
.cr-hero__stickers {
  max-width: 1320px;
  margin: 64px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  gap: 18px 28px;
}
.cr-hero__sticker {
  display: inline-flex;
  align-items: center;
  border: 2.5px solid var(--crotona-ink);
  padding: 12px 16px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 4px 4px 0 #000;
  line-height: 1.1;
  white-space: nowrap;
}

@keyframes cr-pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}

/* ---------- mobile ---------- */
@media (max-width: 1023px) {
  .cr-hero { padding: 40px 20px 56px; }
  .cr-hero__tape { display: none; }
  .cr-hero__wordmark { width: 90%; }
  .cr-hero__tagline { margin: -32px 0 32px; }
  .cr-hero__collage {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .cr-hero__polaroids {
    width: 100%;
    max-width: 320px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .cr-polaroid {
    position: relative;
    left: auto !important;
    top: auto !important;
    width: 100%;
    /* lichte paste-up rotatie houden, niet de hele desktop-tilt -
       gebruikers zien anders een te perfect grid */
    transform: rotate(-2deg) !important;
  }
  .cr-polaroid:nth-child(2n) { transform: rotate(2deg) !important; }
  .cr-polaroid:nth-child(3n) { transform: rotate(-1deg) !important; }
  .cr-hero__event { width: 100%; max-width: 360px; }
  .cr-hero__stickers {
    margin-top: 32px;
    justify-content: center;
    gap: 12px 16px;
  }
}
