/* ============================================
   UMBRI — Groove Melodic Metal
   Melancholic Gray Theme
   ============================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-darkest:  #ffffff;
  --bg-dark:     #f5f5f5;
  --bg-card:     #eeeeee;
  --bg-hover:    #e4e4e4;
  --text-primary:#1a1a1a;
  --text-muted:  #555555;
  --text-dim:    #999999;
  --accent:      #2a2a2a;
  --accent-light:#444444;
  --accent-glow: rgba(0, 0, 0, 0.08);
  --border:      #d8d8d8;
  --font-heading:'Oswald', sans-serif;
  --font-body:   'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

/* ---------- FILM SCRATCHES CANVAS ---------- */
#dust-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 999;
  opacity: 0.15;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background-color: #ffffff;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='a'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23a)' opacity='.03'/%3E%3C/svg%3E");
}

a {
  color: var(--accent-light);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: #fff;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* ---------- SECTION DEFAULTS ---------- */
section {
  padding: 100px 0;
}

section:nth-child(even) {
  background: var(--bg-dark);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 8px;
  text-align: center;
  margin-bottom: 0.6em;
  color: var(--text-primary);
  position: relative;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent);
  margin: 18px auto 0;
  opacity: 0.6;
}

.section-description {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 50px;
  font-weight: 300;
  font-size: 1.05rem;
}

/* ---------- NAVBAR ---------- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px) saturate(120%);
  transition: background 0.4s, transform 0.4s ease;
}

#navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
}

#navbar.hidden {
  transform: translateY(-100%);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5%;
  height: 88px;
}

.nav-logo {
  display: flex;
  align-items: center;
  margin: 0 40px;
  opacity: 0.88;
  transition: opacity 0.3s;
}

.nav-logo:hover {
  opacity: 1;
}

.nav-logo-img {
  height: 64px;
  width: auto;
  display: block;
  filter: brightness(0);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-left {
  justify-content: flex-end;
}

.nav-right {
  justify-content: flex-start;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- HERO ---------- */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  padding: 0;
  background: url('../images/main.jpg') center/cover no-repeat;
  animation: heroReveal 1.6s ease-out both;
}

/* White reveal overlay — fades out after load */
#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #ffffff;
  animation: whiteOut 2.2s ease-out forwards;
  pointer-events: none;
  z-index: 2;
}

@keyframes heroReveal {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes whiteOut {
  0%   { opacity: 1; }
  25%  { opacity: 1; }
  100% { opacity: 0; }
}

/* ---------- NEWS ---------- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 35px 30px;
  transition: transform 0.3s, border-color 0.3s;
}

.news-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.news-date {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 12px;
}

.news-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.news-card--featured {
}

.news-video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  margin: 16px 0 20px;
  cursor: pointer;
  background: var(--bg-hover);
}

.news-video .video-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transition: filter 0.3s;
}

.news-video:hover .video-thumb {
  filter: brightness(0.9);
}

.news-video .video-play-btn {
  width: 56px;
  height: 56px;
}

.news-video .video-play-btn svg {
  width: 28px;
  height: 28px;
}

.news-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.news-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-primary);
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s;
}

.news-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg-darkest);
}

.news-link:hover svg {
  fill: var(--bg-darkest);
}

.news-card--featured p strong {
  font-weight: 600;
}

.news-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.7;
}

/* ---------- MUSIC ---------- */
.music-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 30px;
  margin-top: 40px;
  align-items: start;
}

.music-main,
.music-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.music-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  transition: border-color 0.3s;
}

.music-card:hover {
  border-color: #333;
}

.music-card-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.music-card-label svg {
  color: var(--accent);
  flex-shrink: 0;
}

.music-card-label--link {
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s;
}

.music-card-label--link:hover {
  color: var(--text-primary);
}

/* Follow & Save buttons row */
.spotify-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.spotify-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 12px;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.2s;
}

.spotify-btn:hover {
  transform: translateY(-2px);
}

.spotify-btn--follow {
  background: var(--accent);
  color: var(--bg-darkest);
  border: 1px solid var(--accent);
}

.spotify-btn--follow svg {
  color: var(--bg-darkest);
}

.spotify-btn--follow:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  color: var(--bg-darkest);
}

.spotify-btn--save {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.spotify-btn--save svg {
  color: var(--accent);
}

.spotify-btn--save:hover {
  border-color: var(--accent);
  background: var(--bg-hover);
  color: var(--text-primary);
}

.spotify-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}

.spotify-cta svg {
  color: var(--accent);
  transition: transform 0.3s;
}

.spotify-cta:hover {
  background: var(--bg-hover);
  border-color: var(--accent);
  color: var(--text-primary);
}

.spotify-cta:hover svg {
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .music-layout {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    padding-bottom: 8px;
    scrollbar-width: none;
  }
  .music-layout::-webkit-scrollbar {
    display: none;
  }
  .music-main,
  .music-sidebar {
    flex: 0 0 85vw;
    scroll-snap-align: start;
  }
}

.embed-placeholder {
  text-align: center;
  color: var(--text-dim);
  font-size: 0.8rem;
  margin-top: 12px;
  font-style: italic;
}

/* ---------- VIDEO ---------- */
.video-carousel {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}

.video-track-wrapper {
  flex: 1;
  overflow: hidden;
  border-radius: 12px;
}

.video-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.video-card {
  width: 460px;
  min-width: 460px;
  flex-shrink: 0;
}

.video-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.video-card:hover {
  border-color: #333;
  transform: translateY(-3px);
}

.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-title {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  letter-spacing: 1px;
  transition: color 0.3s;
  text-decoration: none;
}

.video-title svg {
  color: var(--accent);
  flex-shrink: 0;
}

.video-title:hover {
  color: #fff;
}

/* Video facade */
.video-facade {
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.video-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(50%);
  transition: filter 0.35s;
}

.video-facade:hover .video-thumb {
  filter: grayscale(0%);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.72);
  border: 2px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.3s, border-color 0.3s;
  pointer-events: none;
}

.video-play-btn svg {
  width: 36px;
  height: 36px;
  margin-left: 4px;
}

.video-facade:hover .video-play-btn {
  background: rgba(0, 0, 0, 0.92);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%) scale(1.08);
}

/* YouTube action buttons */
.yt-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.yt-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.2s;
}

.yt-btn:hover {
  transform: translateY(-2px);
}

.yt-btn--more {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-primary);
}

.yt-btn--more svg {
  color: var(--accent);
}

.yt-btn--more:hover {
  border-color: var(--accent);
  background: var(--bg-hover);
  color: var(--text-primary);
}

.yt-btn--subscribe {
  background: var(--accent);
  border: 1px solid var(--accent);
  color: var(--bg-darkest);
}

.yt-btn--subscribe svg {
  color: var(--bg-darkest);
}

.yt-btn--subscribe:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  color: var(--bg-darkest);
}

@media (max-width: 768px) {
  .video-card {
    width: 300px;
    min-width: 300px;
  }
  .yt-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 480px) {
  .video-card {
    width: 85vw;
    min-width: 85vw;
  }
}

/* ---------- GALLERY / CAROUSEL ---------- */
.ig-link {
  color: var(--accent-light);
  transition: color 0.3s;
}
.ig-link:hover {
  color: var(--text-primary);
}

.gallery-carousel {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  position: relative;
}

.carousel-track-wrapper {
  flex: 1;
  overflow: hidden;
  border-radius: 12px;
}

.carousel-track {
  display: flex;
  gap: 16px;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.carousel-slide {
  width: 220px;
  min-width: 220px;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  cursor: pointer;
  flex-shrink: 0;
  overflow: hidden;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(30%);
  transition: filter 0.4s;
}

.carousel-slide:hover img {
  filter: grayscale(0%);
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-size: 1.2rem;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s, transform 0.2s;
}

.carousel-btn:hover {
  background: var(--bg-hover);
  border-color: var(--accent);
  transform: scale(1.1);
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: default;
  transform: none;
}

/* Instagram CTA */
.ig-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 35px auto 0;
  padding: 16px 32px;
  width: fit-content;
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.2s, background 0.3s, border-color 0.3s, color 0.3s;
}

.ig-cta:hover {
  transform: translateY(-2px);
  background: var(--bg-hover);
  border-color: var(--accent);
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .carousel-slide {
    width: 160px;
    min-width: 160px;
    aspect-ratio: 16 / 9;
  }
  .carousel-btn {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
  .gallery-carousel {
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .carousel-slide {
    min-width: 100%;
  }
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 2rem;
  cursor: pointer;
  padding: 10px;
  transition: color 0.3s;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  color: #fff;
}

.lightbox-close { top: 20px; right: 30px; font-size: 2.5rem; }
.lightbox-prev  { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 20px; top: 50%; transform: translateY(-50%); }

/* ---------- SHOWS ---------- */
.shows-list {
  max-width: 750px;
  margin: 40px auto 0;
}

.show-item {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 25px 0;
  border-bottom: 1px solid var(--border);
}

.show-date {
  text-align: center;
  min-width: 70px;
}

.show-day {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text-primary);
}

.show-month {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.show-info {
  flex: 1;
}

.show-info h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-primary);
}

.show-info p {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 300;
}

.show-tickets {
  padding: 10px 22px;
  border: 1px solid var(--accent);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-primary);
  white-space: nowrap;
  transition: background 0.3s, color 0.3s;
}

.show-tickets:hover {
  background: var(--accent);
  color: var(--bg-darkest);
}

/* ---------- CONTACT ---------- */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  margin-top: 40px;
}

.form-group {
  margin-bottom: 18px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: border-color 0.3s;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-dim);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
}

.contact-form select {
  appearance: none;
  cursor: pointer;
}

.contact-form select option {
  background: var(--bg-darkest);
  color: var(--text-primary);
}

.btn-submit {
  display: inline-block;
  padding: 14px 40px;
  background: none;
  border: 1px solid var(--accent);
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}

.btn-submit:hover {
  background: var(--accent);
  color: var(--bg-darkest);
  box-shadow: 0 0 20px var(--accent-glow);
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}

.contact-item h4,
.contact-socials h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.contact-item p {
  color: var(--text-primary);
  font-weight: 300;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}

.social-links a:hover {
  color: #fff;
  border-color: var(--accent);
  background: var(--bg-hover);
}

/* ---------- FOOTER ---------- */
#footer {
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid var(--border);
  background: var(--bg-darkest);
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 6px;
  color: var(--text-dim);
  text-transform: uppercase;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 8px;
  letter-spacing: 1px;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 16px 0;
}

.footer-socials a {
  color: var(--text-dim);
  transition: color 0.3s;
}

.footer-socials a:hover {
  color: var(--text-primary);
}

/* ---------- SCROLL ANIMATIONS ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  /* Hero — less zoomed on mobile */
  #hero {
    height: 50vh;
    min-height: 280px;
    background-position: top center;
  }

  /* Mobile nav */
  .nav-toggle {
    display: flex;
  }

  .nav-left,
  .nav-right {
    display: none;
  }

  .nav-container {
    justify-content: space-between;
  }

  .nav-links {
    position: fixed;
    top: 88px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    padding: 30px 0;
    gap: 0;
    align-items: center;
    transform: translateY(-120%);
    transition: transform 0.4s ease;
  }

  .nav-links.open {
    display: flex;
    transform: translateY(0);
  }

  .nav-links li {
    padding: 12px 0;
  }

  /* News — horizontal scroll */
  .news-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    padding-bottom: 8px;
    scrollbar-width: none;
    margin-top: 40px;
  }
  .news-grid::-webkit-scrollbar {
    display: none;
  }
  .news-card {
    flex: 0 0 85vw;
    scroll-snap-align: start;
  }
  /* Force cards visible — IntersectionObserver doesn't fire for off-screen scroll items */
  #news .news-card.fade-in,
  #music .music-card.fade-in,
  #music .spotify-actions.fade-in,
  #music .spotify-cta.fade-in {
    opacity: 1;
    transform: none;
  }

  /* Video */
  .video-grid {
    grid-template-columns: 1fr;
  }

  /* Shows */
  .show-item {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  /* Contact */
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    letter-spacing: 10px;
  }
}
