/* ============================================
   DEEYUG - DJ Portfolio
   ============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { height: 100%; overflow: hidden; }
body {
  background: #0a0a0a;
  color: #fff;
  font-family: 'Inter', -apple-system, sans-serif;
  height: 100%;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}

.scroll-container {
  height: 100vh;
  overflow-y: auto;
  scroll-snap-type: y proximity;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
}

.section {
  width: 100%;
  min-height: 100vh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
}

/* NAV */
.main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 18px 40px;
  z-index: 1000;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 30px;
  transition: color 0.3s ease, background 0.3s ease;
}
.nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.archive-link {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 1000;
}

/* SHARED TITLES */
.section-title {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: 73px;
  line-height: 0.92;
  color: #fff;
  letter-spacing: -1px;
}
.title-line { display: block; }
.section-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  margin-top: 16px;
  line-height: 1.5;
  max-width: 200px;
}

/* ============================================
   HOME — Screenshot background
   ============================================ */
.section-home {
  background: url('images/hero-bg.png') center center / cover no-repeat;
  background-color: #0a0a0a;
}

/* Mobile hero image (hidden on desktop) */
.hero-mobile-img {
  display: none;
}

/* Scroll arrow */
.hero-scroll-arrow {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 28px;
  color: rgba(255,255,255,0.45);
  z-index: 10;
  animation: arrowBounce 2s ease infinite;
}

@keyframes arrowBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* ============================================
   BIO — "The Story"
   3 columns: title left | photo center | text right
   Matches original Readymag layout exactly
   ============================================ */
.section-bio {
  display: grid;
  grid-template-columns: 200px 1fr 1.3fr;
  align-items: start;
  background: #0a0a0a;
}

.bio-col-left {
  padding: 70px 20px 40px 30px;
}

.bio-col-left .section-title {
  font-size: 80px;
  line-height: 0.88;
}

.bio-col-left .section-subtitle {
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  margin-top: 20px;
  max-width: 180px;
  line-height: 1.5;
}

.bio-col-center {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  height: 100vh;
  padding: 40px 10px 20px 10px;
}

.bio-photo {
  position: relative;
}

.bio-photo img {
  width: 100%;
  max-width: 500px;
  max-height: 92vh;
  object-fit: cover;
  display: block;
}

.bio-col-right {
  height: 100vh;
  display: flex;
  align-items: flex-start;
  padding-top: 60px;
}

.bio-text {
  padding: 30px 40px 60px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: #fff;
  text-align: justify;
  overflow-y: auto;
  max-height: 88vh;
}

.bio-text p {
  margin-bottom: 20px;
}

.bio-text::-webkit-scrollbar { width: 2px; }
.bio-text::-webkit-scrollbar-track { background: transparent; }
.bio-text::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 2px; }

/* ============================================
   GIGS
   ============================================ */
.section-gigs { display: flex; align-items: center; }
.gigs-inner { display: grid; grid-template-columns: 260px 1fr; width: 100%; height: 100%; align-items: center; }
.gigs-left { padding: 0 30px 0 40px; align-self: start; padding-top: 120px; }
.gigs-right { display: flex; align-items: center; justify-content: center; padding: 100px 60px; }
.venues-grid { display: flex; flex-wrap: wrap; gap: 12px; max-width: 800px; justify-content: center; }
.venue-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.85);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.venue-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #fff;
  border-radius: 40px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}
.venue-btn:hover { color: #000; border-color: #fff; transform: translateY(-3px); box-shadow: 0 10px 30px rgba(255,255,255,0.12); }
.venue-btn:hover::before { transform: scaleX(1); }

/* VENUE MODAL */
.venue-modal { position: fixed; inset: 0; z-index: 2000; display: flex; align-items: center; justify-content: center; pointer-events: none; opacity: 0; visibility: hidden; transition: opacity 0.35s, visibility 0.35s; }
.venue-modal.is-open { pointer-events: auto; opacity: 1; visibility: visible; }
.venue-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.85); backdrop-filter: blur(12px); }
.venue-modal-content { position: relative; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: 20px; padding: 50px 60px; text-align: center; max-width: 460px; width: 90%; transform: translateY(30px) scale(0.95); transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1); backdrop-filter: blur(20px); }
.venue-modal.is-open .venue-modal-content { transform: translateY(0) scale(1); }
.venue-modal-close { position: absolute; top: 16px; right: 20px; background: none; border: none; color: rgba(255,255,255,0.5); font-size: 28px; cursor: pointer; transition: color 0.2s, transform 0.3s; line-height: 1; padding: 4px; }
.venue-modal-close:hover { color: #fff; transform: rotate(90deg); }
.venue-modal-icon { margin-bottom: 20px; color: rgba(255,255,255,0.4); }
.venue-modal-name { font-family: 'Instrument Serif', serif; font-size: 42px; color: #fff; margin-bottom: 10px; }
.venue-modal-location { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.5); letter-spacing: 1px; text-transform: uppercase; }

/* ============================================
   FLOOR
   ============================================ */
.section-floor { display: flex; align-items: stretch; }
.floor-inner { display: grid; grid-template-columns: 200px 1fr; width: 100%; height: 100%; }
.floor-left { padding: 120px 20px 40px 40px; }
.floor-right { padding: 80px 30px 30px 10px; overflow: hidden; }
.floor-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 6px; height: 100%; align-content: center; }

/* FLOOR CARDS — Hover overlay animation */
.floor-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 2px;
  aspect-ratio: 1 / 1;
}

.floor-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.floor-card:hover .floor-img {
  transform: scale(1.04);
}

/* Tinted cards — red/pink filter for visual consistency */
.floor-card--tinted::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(180, 40, 70, 0.25);
  mix-blend-mode: color;
  pointer-events: none;
  z-index: 1;
  transition: background 0.4s ease;
}
.floor-card--tinted:hover::after {
  background: rgba(180, 40, 70, 0.15);
}

.floor-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  padding: 12px 8px;
  gap: 2px;
}

.floor-card:hover .floor-overlay {
  opacity: 1;
}

.floor-venue {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  text-align: center;
  line-height: 1.2;
}

.floor-city {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.8px;
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.05s, opacity 0.4s ease 0.05s;
  text-align: center;
}

.floor-coords {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 1.5px;
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.1s, opacity 0.4s ease 0.1s;
  text-align: center;
  margin-top: 2px;
}

.floor-card:hover .floor-venue,
.floor-card:hover .floor-city,
.floor-card:hover .floor-coords {
  transform: translateY(0);
  opacity: 1;
}

/* Mobile: tap to reveal (toggle class via JS or :active fallback) */
@media (hover: none) {
  .floor-card.is-tapped .floor-overlay {
    opacity: 1;
  }
  .floor-card.is-tapped .floor-img {
    transform: scale(1.06);
    filter: brightness(0.7);
  }
  .floor-card.is-tapped .floor-venue,
  .floor-card.is-tapped .floor-city,
  .floor-card.is-tapped .floor-coords {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ============================================
   GALLERY
   ============================================ */
/* Gallery: accelerated horizontal scroll on vertical wheel input */
.section-gallery {
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
}
.gallery-left {
  position: absolute;
  top: 60px;
  left: 30px;
  z-index: 10;
  pointer-events: none;
}
.gallery-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.gallery-track {
  display: flex;
  gap: 4px;
  height: 100%;
  will-change: transform;
  padding: 0;
}
.gallery-img {
  height: 100%;
  width: auto;
  object-fit: cover;
  flex-shrink: 0;
  filter: grayscale(100%);
  transition: filter 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-img:hover {
  filter: grayscale(0%) brightness(1.05);
  transform: scale(1.02);
  z-index: 2;
}

/* ============================================
   VIDEO (YouTube)
   ============================================ */
.section-video { display: grid; grid-template-columns: 220px 1fr; align-items: start; }
.video-left { padding: 120px 30px 0 40px; }
.video-player { padding: 80px 60px 80px 20px; height: 100%; display: flex; align-items: center; }
.video-player iframe { width: 100%; height: 70vh; border-radius: 8px; border: 1px solid rgba(255,255,255,0.08); }

/* ============================================
   RIDER
   ============================================ */
.section-rider { display: grid; grid-template-columns: 220px 1fr; align-items: start; }
.rider-left { padding: 120px 20px 0 40px; }
.rider-content { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100vh; padding: 80px 60px 40px 0; gap: 32px; }
.rider-regie { display: flex; align-items: center; justify-content: center; width: 100%; }
.rider-regie-img { width: 90%; max-width: 950px; height: auto; object-fit: contain; transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s; }
.rider-regie-img:hover { transform: scale(1.02); filter: brightness(1.08); }

/* Specs lines under equipment */
.rider-specs-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.rider-specs-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 0 20px;
}
.rider-spec-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-right: 18px;
}
.rider-spec-item {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.8px;
  transition: color 0.3s ease;
}
.rider-spec-item:hover {
  color: rgba(255, 255, 255, 1);
}
.rider-spec-sep {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 200;
  color: rgba(255, 255, 255, 0.15);
  margin: 0 12px;
}

/* ============================================
   ABOUT — Full-screen photo with overlay text
   ============================================ */
.section-about {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-bg-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.about-bg-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  filter: grayscale(100%);
}
.about-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}
.about-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  height: 100vh;
  padding: 40px;
}
.about-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.about-name {
  font-family: 'Instrument Serif', serif;
  font-size: 80px;
  font-weight: 400;
  color: #fff;
  letter-spacing: -2px;
  line-height: 1;
  margin: 0 0 20px;
}
.about-line {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin-bottom: 20px;
}
.about-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.5px;
  margin-bottom: 40px;
}
.about-links {
  display: flex;
  gap: 32px;
  margin-bottom: 28px;
}
.about-link {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.about-link:hover {
  color: #000;
  background: #fff;
  border-color: #fff;
  transform: translateY(-2px);
}
.about-email {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.5px;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.section-bio .bio-col-left, .section-bio .bio-col-center, .section-bio .bio-col-right,
.section-gigs .gigs-left, .section-gigs .gigs-right,
.section-gallery .gallery-left, .section-gallery .gallery-slider,
.section-video .video-left, .section-video .video-player,
.section-rider .rider-left, .section-rider .rider-content,
.section-about .about-content,
.section-floor .floor-left {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.section.in-view .bio-col-left, .section.in-view .gigs-left, .section.in-view .gallery-left,
.section.in-view .video-left, .section.in-view .rider-left, .section.in-view .floor-left {
  opacity: 1; transform: translateY(0);
}
.section.in-view .bio-col-center, .section.in-view .gigs-right, .section.in-view .gallery-slider,
.section.in-view .video-player, .section.in-view .rider-content, .section.in-view .floor-right {
  opacity: 1; transform: translateY(0); transition-delay: 0.15s;
}
.section.in-view .bio-col-right { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.section-about .about-content { opacity: 0; transform: translateY(20px); transition: opacity 1s ease, transform 1s cubic-bezier(0.16, 1, 0.3, 1); }
.section-about.in-view .about-content { opacity: 1; transform: translateY(0); }
.section-floor .floor-right { opacity: 0; transform: translateY(30px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.section-floor.in-view .floor-right { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }

.section-gigs.in-view .venue-btn { animation: venueIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) both; }
@keyframes venueIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.section-gigs.in-view .venue-btn:nth-child(1) { animation-delay: 0.05s; }
.section-gigs.in-view .venue-btn:nth-child(2) { animation-delay: 0.08s; }
.section-gigs.in-view .venue-btn:nth-child(3) { animation-delay: 0.11s; }
.section-gigs.in-view .venue-btn:nth-child(4) { animation-delay: 0.14s; }
.section-gigs.in-view .venue-btn:nth-child(5) { animation-delay: 0.17s; }
.section-gigs.in-view .venue-btn:nth-child(6) { animation-delay: 0.2s; }
.section-gigs.in-view .venue-btn:nth-child(7) { animation-delay: 0.23s; }
.section-gigs.in-view .venue-btn:nth-child(8) { animation-delay: 0.26s; }
.section-gigs.in-view .venue-btn:nth-child(9) { animation-delay: 0.29s; }
.section-gigs.in-view .venue-btn:nth-child(10) { animation-delay: 0.32s; }
.section-gigs.in-view .venue-btn:nth-child(11) { animation-delay: 0.35s; }
.section-gigs.in-view .venue-btn:nth-child(12) { animation-delay: 0.38s; }
.section-gigs.in-view .venue-btn:nth-child(13) { animation-delay: 0.41s; }
.section-gigs.in-view .venue-btn:nth-child(14) { animation-delay: 0.44s; }
.section-gigs.in-view .venue-btn:nth-child(15) { animation-delay: 0.47s; }
.section-gigs.in-view .venue-btn:nth-child(16) { animation-delay: 0.5s; }
.section-gigs.in-view .venue-btn:nth-child(17) { animation-delay: 0.53s; }
.section-gigs.in-view .venue-btn:nth-child(18) { animation-delay: 0.56s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .main-nav { padding: 12px 20px; }
  .nav-link { font-size: 14px; }
  .section-bio { grid-template-columns: 1fr; }
  .bio-col-left { padding: 80px 20px 10px; }
  .bio-col-left .section-title { font-size: 56px; }
  .bio-col-center { height: auto; padding: 10px 20px; }
  .bio-photo img { max-width: 280px; max-height: 40vh; }
  .bio-col-right { height: auto; padding-top: 0; }
  .bio-text { padding: 10px 20px 40px; max-height: 35vh; font-size: 13px; }
  .gigs-inner { grid-template-columns: 1fr; }
  .gigs-left { padding: 90px 20px 10px; }
  .gigs-right { padding: 20px; }
  .floor-inner { grid-template-columns: 1fr; }
  .floor-left { padding: 90px 20px 10px; }
  .floor-right { padding: 10px 20px 30px; }
  .floor-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery-left { top: 40px; left: 16px; }
  /* Gallery: vertical stack on mobile */
  /* Home: show portrait image full screen, hide desktop bg */
  .section-home {
    background: none !important;
  }
  .hero-mobile-img {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  /* Hide nav & arrow on home, show when scrolled */
  .main-nav {
    transform: translateY(-100%);
    transition: transform 0.3s ease;
  }
  .main-nav.nav-visible {
    transform: translateY(0);
  }
  .hero-scroll-arrow { display: none; }
  .archive-link { display: none; }

  /* Gallery: 2 rows horizontal scroll */
  .section-gallery { min-height: auto; scroll-snap-align: none; overflow: visible; }
  .gallery-left { position: relative; top: auto; left: auto; padding: 80px 20px 16px; pointer-events: auto; }
  .gallery-left .section-title { font-size: 56px; }
  .gallery-slider { position: relative; inset: auto; overflow: visible; }
  .gallery-track {
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-auto-flow: column;
    grid-auto-columns: 80vw;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 8px;
    height: auto;
    padding: 0 16px 40px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .gallery-track::-webkit-scrollbar { display: none; }
  .gallery-img {
    width: 100%;
    height: 55vw;
    object-fit: cover;
    flex-shrink: unset;
    border-radius: 4px;
    filter: grayscale(100%);
  }
  .section-video { grid-template-columns: 1fr; }
  .video-left { padding: 90px 20px 10px; }
  .video-player { padding: 10px 20px 40px; }
  .video-player iframe { height: 50vh; }
  .section-rider { grid-template-columns: 1fr; }
  .rider-left { padding: 90px 20px 10px; }
  .rider-content { padding: 10px 20px 30px; height: auto; }
  .rider-cdj, .rider-mixer { max-height: 25vh; }
  .rider-spec-item { font-size: 11px; }
  .rider-spec-sep { margin: 0 8px; }
  .section-about { grid-template-columns: 1fr; }
  .section-about { grid-template-columns: 1fr; }
  .about-left { padding: 90px 20px 10px; }
  .about-name { font-size: 48px; }
  .about-links { flex-direction: column; gap: 16px; }
  .about-content { padding: 20px 20px 40px; align-items: center; text-align: center; }
  .about-bg-photo { width: 100%; opacity: 0.3; }
}

@media (max-width: 640px) {
  .main-nav { gap: 12px; padding: 12px 16px; flex-wrap: wrap; justify-content: center; }
  .nav-link { font-size: 11px; }
  .section-title { font-size: 48px; }
  .floor-grid { grid-template-columns: repeat(3, 1fr); }
  .venues-grid { gap: 8px; }
  .venue-btn { font-size: 12px; padding: 8px 16px; }
  .rider-notes { gap: 12px; }
  .rider-note { width: 100px; }
  .about-card { width: 95vw; }
  .about-polaroid-frame { width: 140px; }
  .about-polaroid-photo { width: 125px; }
  .about-link img { max-width: 140px; }
  .venue-modal-content { padding: 40px 30px; }
  .venue-modal-name { font-size: 32px; }
}
