/* ═══════════════════════════════════════════════════════
   VALHALLA MUSIC — Homepage
   ═══════════════════════════════════════════════════════ */

/* ── Hero ──────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform-origin: center;
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(7, 7, 7, 0.15) 0%,
      rgba(7, 7, 7, 0.0) 25%,
      rgba(7, 7, 7, 0.0) 55%,
      rgba(7, 7, 7, 0.5) 82%,
      rgba(7, 7, 7, 1) 100%);
  z-index: 1;
}

.hero__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 60%, rgba(7, 7, 7, 0.35) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--wrap-padding);
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__logo {
  margin-bottom: 52px;
  display: none;
}

.hero__logo img {
  height: 80px;
}

.hero__icon {
  margin-bottom: 36px;
  visibility: hidden;
}

.hero__icon img {
  height: 74px;
  opacity: 0.85;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8.5vw, 8.5rem);
  line-height: 0.88;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 26px;
  font-weight: 400;
  visibility: hidden;
}

.hero__rule {
  width: 52px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 26px;
  transform-origin: center;
  visibility: hidden;
}

.hero__sub {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 56px;
  visibility: hidden;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  visibility: hidden;
}

.hero__ctas .btn {
  min-width: 210px;
  justify-content: center;
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  visibility: hidden;
}

.hero__scroll-text {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dim);
  writing-mode: vertical-lr;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ── About / Paradise ─────────────────────────────── */
.about {
  background: var(--bg-primary);
  position: relative;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 8vw, 120px);
  align-items: center;
}

.about__copy {
  max-width: 500px;
}

.about__copy .eyebrow {
  margin-bottom: 20px;
}

.about__copy .h2 {
  margin-bottom: 36px;
}

.about__copy p {
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 20px;
  font-size: 15px;
}

.about__copy .btn {
  margin-top: 32px;
}

.about__image {
  position: relative;
  overflow: hidden;
}

.about__image img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 1s var(--ease-out-expo);
}

.about__image:hover img {
  transform: scale(1.03);
}

.about__image-caption {
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  font-style: italic;
  text-align: right;
}

/* ── Featured Event ───────────────────────────────── */
.featured {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.featured__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 500px;
}

.featured__image {
  position: relative;
  overflow: hidden;
}

.featured__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.8s var(--ease-out-expo);
}

.featured__image:hover img {
  transform: scale(1.04);
}

.featured__body {
  padding: clamp(48px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--border-subtle);
  border-left: none;
}

.featured__meta {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.featured__name {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 5rem);
  line-height: 0.93;
  color: var(--white);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.featured__lineup {
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  margin-bottom: 44px;
  line-height: 1.9;
}

.featured__body .btn {
  align-self: flex-start;
}

/* ── Artists Teaser ────────────────────────────────── */
.artists-teaser {
  background: var(--bg-primary);
}

.artists-teaser__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}

.artists-teaser__header .h2 {
  margin-bottom: 0;
}

.artists-teaser__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.artist-card {
  position: relative;
  overflow: hidden;
}

.artist-card__image {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(0.85);
}

.artist-card:hover .artist-card__image {
  transform: scale(1.06);
  filter: brightness(1);
}

.artist-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(7, 7, 7, 0.95) 0%,
    rgba(7, 7, 7, 0.3) 45%,
    transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  transition: background 0.5s;
}

.artist-card:hover .artist-card__overlay {
  background: linear-gradient(to top,
    rgba(7, 7, 7, 0.9) 0%,
    rgba(7, 7, 7, 0.15) 50%,
    transparent 100%);
}

.artist-card__name {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 0.88;
  letter-spacing: 0.04em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.artist-card__role {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.artist-card__bio {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 280px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s, transform 0.5s var(--ease-out-expo);
}

.artist-card:hover .artist-card__bio {
  opacity: 1;
  transform: translateY(0);
}

.artist-card--rivellino .artist-card__image {
  object-position: center 46%;
}

.artist-card--andrea .artist-card__image {
  object-position: center 36%;
  transform: scale(1.1);
  transform-origin: center 58%;
}

.artist-card--andrea:hover .artist-card__image {
  transform: scale(1.21);
}

/* ── Past Events Gallery ──────────────────────────── */
.gallery {
  background: var(--bg-secondary);
  overflow: hidden;
}

.gallery__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}

.gallery__header .h2 {
  margin-bottom: 0;
}

.gallery__scroll {
  display: flex;
  gap: 3px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 8px;
}

.gallery__scroll::-webkit-scrollbar {
  display: none;
}

.gallery__item {
  flex: 0 0 auto;
  width: clamp(280px, 28vw, 400px);
  position: relative;
  overflow: hidden;
}

.gallery__item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  filter: brightness(0.7) saturate(0.85);
  transition: filter 0.6s, transform 0.8s var(--ease-out-expo);
}

.gallery__item:hover img {
  filter: brightness(0.95) saturate(1.05);
  transform: scale(1.04);
}

.gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 7, 7, 0.8) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.gallery__item:hover .gallery__item-overlay {
  opacity: 1;
}

.gallery__item-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
}

/* ── Marquee ──────────────────────────────────────── */
.marquee-wrap {
  padding: 20px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
  background: var(--bg-secondary);
}

.marquee {
  display: flex;
  white-space: nowrap;
  animation: ticker 60s linear infinite;
}

.marquee span {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 0 40px;
}

.marquee span::after {
  content: '\00B7';
  padding-left: 40px;
  color: var(--accent);
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Newsletter ───────────────────────────────────── */
.newsletter {
  background: var(--bg-primary);
  text-align: center;
}

.newsletter__inner {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter .h2 {
  margin-bottom: 16px;
}

.newsletter__desc {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 48px;
  line-height: 1.8;
}

.newsletter__form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter__input {
  flex: 1;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-medium);
  border-right: none;
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 300;
  transition: border-color 0.3s;
}

.newsletter__input::placeholder {
  color: var(--text-dim);
}

.newsletter__input:focus {
  border-color: var(--accent);
}

.newsletter__btn {
  padding: 18px 28px;
  background: var(--accent);
  border: 1px solid var(--accent);
  color: var(--white);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  transition: background 0.3s;
  white-space: nowrap;
}

.newsletter__btn:hover {
  background: var(--accent-hover);
}

/* ── Stats Bar ────────────────────────────────────── */
.stats {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 48px 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat__number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  color: var(--white);
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 8px;
}

.stat__label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 960px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__image img {
    height: 420px;
  }

  .featured__grid {
    grid-template-columns: 1fr;
  }

  .featured__image img {
    height: 360px;
  }

  .featured__body {
    border: 1px solid var(--border-subtle);
    border-top: none;
  }

  .artists-teaser__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .artists-teaser__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .gallery__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .hero__title {
    font-size: clamp(2.8rem, 12vw, 5rem);
  }

  .artists-teaser__grid {
    grid-template-columns: 1fr;
  }

  .newsletter__form {
    flex-direction: column;
  }

  .hero__ctas .btn {
    width: min(100%, 280px);
  }

  .newsletter__input {
    border-right: 1px solid var(--border-medium);
    border-bottom: none;
  }

  .stats__grid {
    grid-template-columns: 1fr 1fr;
  }
}
