/* ═══════════════════════════════════════════════
   EVENTS CORE — Shared across all event versions
   Only contains styles used by 2+ versions
   ═══════════════════════════════════════════════ */

/* ── FONT FACES ── */
@font-face {
  font-family: 'Helvetica Neue';
  src: url('https://storage.miragemusic.ch/fonts/helvetica-neue/HelveticaNeueRoman.woff2') format('woff2'),
    url('https://storage.miragemusic.ch/fonts/helvetica-neue/HelveticaNeueRoman.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('https://storage.miragemusic.ch/fonts/helvetica-neue/HelveticaNeueLight.woff2') format('woff2'),
    url('https://storage.miragemusic.ch/fonts/helvetica-neue/HelveticaNeueLight.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('https://storage.miragemusic.ch/fonts/helvetica-neue/HelveticaNeueThin.woff2') format('woff2'),
    url('https://storage.miragemusic.ch/fonts/helvetica-neue/HelveticaNeueThin.woff') format('woff');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('https://storage.miragemusic.ch/fonts/helvetica-neue/HelveticaNeueBold.woff2') format('woff2'),
    url('https://storage.miragemusic.ch/fonts/helvetica-neue/HelveticaNeueBold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('https://storage.miragemusic.ch/fonts/helvetica-neue/HelveticaNeueBlack.woff2') format('woff2'),
    url('https://storage.miragemusic.ch/fonts/helvetica-neue/HelveticaNeueBlack.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ── DESIGN TOKENS ── */
:root {
  --event-bg: #ffffff;
  --event-text: #3e3e3e;
  --event-font: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --event-border: #D9D9D9;
  --event-muted: #b7b7b7;
  --event-muted-light: #d0d0d0;
  --event-transition-base: .2s ease;
  --event-transition-slide: .4s cubic-bezier(.25, 1, .5, 1);
}

/* ── BASE ── */
* {
  box-sizing: border-box;
}

body {
  background-color: var(--event-bg);
  color: var(--event-text);
  font-family: var(--event-font);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
}

/* ── FOOTER ── */
.event-footer-icon {
  width: 20px;
  height: 20px;
  color: var(--event-text);
  transition: transform 0.3s;
  display: inline-block;
}

.event-footer-icon:hover {
  transform: scale(1.1);
}

.event-footer-logo {
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.event-footer-logo:hover {
  opacity: 1 !important;
}

/* ── ACCORDION BASE ── */
.event-accordion .accordion-button:focus {
  box-shadow: none;
}

.event-accordion .accordion-button:not(.collapsed) {
  background-color: transparent;
  color: inherit;
}

/* ── LIGHTBOX ── */
.event-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  user-select: none;
}

.event-lightbox.open {
  display: flex;
}

.event-lightbox-progress {
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  display: flex;
  gap: 6px;
  z-index: 2200;
}

.event-progress-segment {
  height: 2px;
  flex: 1;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 1px;
  overflow: hidden;
}

.event-progress-fill {
  height: 100%;
  width: 0;
  background: #fff;
}

.event-lightbox-img-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 10px;
}

.event-lightbox-img {
  max-width: 95%;
  max-height: 95%;
  object-fit: contain;
}

.event-lightbox-btn {
  background: none;
  border: none;
  color: #fff;
  opacity: 0.6;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.2s;
}

.event-lightbox-btn:hover {
  opacity: 1;
}

.event-share-dropdown {
  position: absolute;
  bottom: 85px;
  right: 30px;
  background: rgba(30, 30, 30, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 0;
  border-radius: 8px;
  display: none;
  flex-direction: column;
  z-index: 2200;
  min-width: 180px;
}

.event-share-dropdown.open {
  display: flex;
}

.event-share-item {
  padding: 12px 20px;
  color: white;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: background 0.2s;
}

.event-share-item:hover {
  background: rgba(255, 255, 255, 0.1);
}
