/* ── Fonts ─────────────────────────────────────────────────────────────────── */
@font-face {
  font-family: 'Iberia Display';
  src: url('assets/fonts/IberiaDisplay-300-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Iberia Display';
  src: url('assets/fonts/IberiaDisplay-400-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Iberia Display';
  src: url('assets/fonts/IberiaDisplay-500-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Iberia Display';
  src: url('assets/fonts/IberiaDisplay-600-Semibold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Iberia Display';
  src: url('assets/fonts/IberiaDisplay-700-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ── Reset & base ──────────────────────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: 'Iberia Display', Helvetica, Arial, sans-serif;
  background: #000;
}

/* ── Background video ─────────────────────────────────────────────────────── */
.bg-video {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%) scale(1.15);
  object-fit: cover;
  z-index: 1;
  transition: transform 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bg-video--zoomed-out {
  transform: translate(-50%, -50%) scale(1);
}

/* ── Header ───────────────────────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 69px;
  padding: 0 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  pointer-events: none;
}

.header--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__logo {
  height: 23px;
  width: auto;
}


.header__mute {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.header__mute-icon {
  width: 32px;
  height: 32px;
}

.header__mute-icon--hidden {
  display: none;
}

/* ── Dark overlay (Phase 3) ───────────────────────────────────────────────── */
.dark-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}

.dark-overlay--visible {
  opacity: 1;
}

.dark-overlay--fade-out {
  opacity: 0;
  transition: opacity 1.5s ease;
}

.dark-overlay__text {
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 13px
}

.dark-overlay__subtitle {
  font-family: 'Iberia Display', Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 40px;
  line-height: 1.2;

}

.dark-overlay__title {
  font-family: 'Iberia Display', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 80px;
  line-height: 64px;
}

/* ── Bottom banner ────────────────────────────────────────────────────────── */
.bottom-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 69px;
  background: #D7192D;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(100%);
  transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bottom-banner--visible {
  transform: translateY(0);
}

.bottom-banner__content {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 16px;
  color: #fff;
}

.bottom-banner__date {
  font-family: 'Iberia Display', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

.bottom-banner__location {
  font-family: 'Iberia Display', Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.bottom-banner__pin {
  color: #fff;
  flex-shrink: 0;
}

/* ── Gradient overlay for header readability (Phase 4) ────────────────────── */
.header-gradient {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.48) 100%);
  z-index: 14;
  opacity: 0;
  transition: opacity 1.5s ease;
  pointer-events: none;
}

.header-gradient--visible {
  opacity: 1;
}

/* ── Responsive: Tablet (≤1024px) ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .dark-overlay__subtitle {
    font-size: 32px;
  }

  .dark-overlay__title {
    font-size: 60px;
    line-height: 1;
  }

  .header {
    padding: 0 40px;
  }
}

/* ── Responsive: Mobile (≤768px) ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .bg-video {
    min-width: unset;
    min-height: unset;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .dark-overlay__subtitle {
    font-size: 22px;
  }

  .dark-overlay__title {
    font-size: 40px;
    line-height: 1;
  }

  .header {
    padding: 0 20px;
    height: 56px;
  }

  .header__logo {
    height: 18px;
  }

  .header__sub-brand {
    height: 12px;
  }

  .header__mute-icon {
    width: 26px;
    height: 26px;
  }

  .bottom-banner {
    height: 56px;
  }

  .bottom-banner__date {
    font-size: 12px;
    line-height: 18px;
  }

  .bottom-banner__location {
    font-size: 12px;
    line-height: 18px;
  }
}

/* ── Responsive: Small mobile (≤480px) ────────────────────────────────────── */
@media (max-width: 480px) {
  .dark-overlay__subtitle {
    font-size: 18px;
  }

  .dark-overlay__title {
    font-size: 30px;
    line-height: 1;
  }

  .header {
    padding: 0 16px;
    height: 48px;
  }

  .header__logo {
    height: 16px;
  }

  .header__sub-brand {
    height: 10px;
  }

  .bottom-banner {
    height: 48px;
  }

  .bottom-banner__content {
    gap: 3px;
    flex-direction: column-reverse;
  }

  .bottom-banner__date {
    font-size: 11px;
  }

  .bottom-banner__location {
    font-size: 11px;
    gap: 5px;
  }

  .bottom-banner__location-icon {
    width: 14px;
    height: 18px;
  }
}
