/* hero.css — Section 1 composition. Mobile-first; layered desktop at >=768px.
   Matches the deployed MBSH hero with cinematic dancefloor-confetti background loop. */

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: var(--c-off-black);
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.75) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0.875rem 1rem 1rem;
  gap: 0.6rem;
  text-align: center;
}

.hero__mark {
  width: 72px;
  height: 72px;
  align-self: flex-start;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.45));
}

.hero__type {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.25rem;
}

.hero__welcome {
  font-family: var(--font-script-large);
  font-size: clamp(2.4rem, 11vw, 2.6rem);
  color: var(--c-silver);
  line-height: 1;
  letter-spacing: 0.5px;
  margin: 0;
  text-shadow: 1px 0 0 currentColor, -1px 0 0 currentColor;
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.25rem, 9.5vw, 2.55rem);
  color: var(--c-white);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-shadow: 0 2px 24px rgba(0,0,0,0.55);
  margin: 0.15rem 0;
}
.hero__headline span { display: block; }

.hero__date {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: clamp(0.95rem, 3.5vw, 1.05rem);
  color: var(--c-cream);
  letter-spacing: 0.02em;
  margin-top: 0.15rem;
}

.hero__cta {
  display: inline-block;
  background: var(--c-red);
  color: var(--c-white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 1.75rem;
  border-radius: 2px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 4px 16px rgba(200, 16, 46, 0.35);
  margin-top: 0.25rem;
}
.hero__cta:hover, .hero__cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 16, 46, 0.5);
  background: var(--c-red-deep);
  outline: none;
  color: var(--c-white);
}
.hero__cta--disabled { opacity: 0.55; cursor: not-allowed; pointer-events: none; }

.hero__harry {
  width: 150px;
  height: auto;
  filter: drop-shadow(0 12px 16px rgba(0,0,0,0.55));
  margin-top: -0.5rem;
}

.hero__scroll-tease {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 0.4rem;
  color: var(--c-silver);
}
.hero__chevron {
  width: 32px;
  height: 36px;
  animation: hero-chevron-bob 1.8s cubic-bezier(0.4, 0, 0.4, 1) infinite;
}
.hero__scroll-tease span {
  font-family: var(--font-script-small);
  font-size: 1.75rem;
  letter-spacing: 0.5px;
  line-height: 1;
  text-shadow: 1px 0 0 currentColor, -1px 0 0 currentColor;
}

@keyframes hero-chevron-bob {
  0%   { transform: translateY(0);     opacity: 0.7; }
  40%  { transform: translateY(14px);  opacity: 1; }
  55%  { transform: translateY(14px);  opacity: 1; }
  100% { transform: translateY(0);     opacity: 0.7; }
}

@media (min-width: 768px) {
  .hero__content { justify-content: flex-start; padding: 3.5rem 3rem 4rem; gap: 0.9rem; }
  .hero__mark { position: absolute; top: 2.5rem; left: 2.5rem; width: 120px; height: 120px; align-self: auto; }
  .hero__type { margin-top: 0; gap: 0.4rem; }
  .hero__welcome { font-size: 4.5rem; text-shadow: 1px 0 0 currentColor, -1px 0 0 currentColor; }
  .hero__headline { font-size: 6rem; line-height: 0.95; text-shadow: 0 3px 28px rgba(0,0,0,0.55); }
  .hero__date { font-size: 1.35rem; margin-top: 0.5rem; }
  .hero__cta { font-size: 1.05rem; padding: 1.1rem 2.4rem; margin-top: 0.75rem; }
  .hero__harry { position: absolute; bottom: 1rem; right: 2.5rem; width: auto; height: 220px; margin-top: 0; filter: drop-shadow(0 16px 22px rgba(0,0,0,0.55)); }
  .hero__scroll-tease { position: absolute; left: 50%; bottom: 1.5rem; transform: translateX(-50%); margin-top: 0; padding-top: 0; gap: 1rem; align-items: center; z-index: 2; max-width: calc(100vw - 22rem); }
  .hero__chevron { width: 36px; height: 33px; }
  .hero__scroll-tease span { font-size: 3rem; text-shadow: 1px 0 0 currentColor, -1px 0 0 currentColor; }
}

@media (min-width: 1280px) {
  .hero__headline { font-size: clamp(6rem, 8vw, 7rem); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__scroll-tease svg { animation: none; }
}
