/* ===========================
   ICOVRI 10 — Hero Section
   =========================== */

#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 96px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, #0a6e82 0%, #00b4cc 50%, #00b4cc 100%);
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(26, 184, 212, .07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-dna {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.dna-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(26, 184, 212, .05);
}

/* ---- Content ---- */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 1000px;
}

.hero-badge {
  display: inline-block;
  border: 2px solid var(--gold);
  color: #c9a227;
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 10px 28px;
  margin-bottom: 24px;
  font-weight: 800;
  background: rgba(0,0,0,0.2);
}

.hero-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(80px, 14vw, 160px);
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 162, 39, .3);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 12px;
}

.hero-subtitle {
  font-size: clamp(14px, 2vw, 20px);
  color: var(--gold-light);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 600;
}

.hero-theme {
  font-size: clamp(15px, 2vw, 22px);
  color: rgba(255, 255, 255, .85);
  font-style: italic;
  margin-bottom: 32px;
}

/* ---- Venues ---- */
.hero-venues {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.venue-box {
  background: rgba(0, 0, 0, .25);
  border: 1px solid var(--gold);
  padding: 14px 22px;
  min-width: 210px;
  text-align: center;
}

.venue-date {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 5px;
}

.venue-name {
  font-size: 13px;
  color: #ffffff;
  line-height: 1.4;
  font-weight: 600;
}

.venue-city {
  font-size: 12px;
  color: rgba(255, 255, 255, .7);
  margin-top: 3px;
}

/* ---- Meta & CTAs ---- */
.hero-meta {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-meta-item { text-align: center; }

.hero-meta-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 4px;
}

.hero-meta-value {
  font-size: 16px;
  color: var(--gold-light);
  font-weight: 600;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- Scroll hint ---- */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .5);
  font-size: 11px;
  letter-spacing: 2px;
  animation: bounce 2s infinite;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 1px solid rgba(255, 255, 255, .5);
  border-bottom: 1px solid rgba(255, 255, 255, .5);
  transform: rotate(45deg);
}
