/* PAGE */
.concert-page {
  background: #fff9f3
}

/* HERO */
.concert-hero {
  max-width: 1000px;
  margin: 0 auto;
  padding: 100px 20px 40px;
}

.concert-hero h1 {
  font-family: 'Quicksand', serif;
  font-size: 48px;
  margin-bottom: 20px;
  text-align: center;
  font-family: 'The Seasons', serif;
}

.concert-intro {
  max-width: 1000px;
  font-size: 20px;
  opacity: 0.8;
  line-height: 1.6;
  text-align: center;
  font-family: 'Quicksand', serif;
}

/* TEXTE */
.concert-text {
  max-width: 700px;
  margin: 80px auto;
  padding: 0 20px;
text-align: center;
font-size:35px
font-family 'Quicksand', serif;
}

.concert-text h2 {
  font-family: 'The Seasons', serif;
  font-size: 35px;
  margin-bottom: 20px;
}

.concert-text p {
  line-height: 1.8;
  opacity: 0.85;
}

/* CITATION */
.concert-quote {
  text-align: center;
  margin: 100px 20px;
}

.concert-quote blockquote {
  font-family: 'The Seasons', serif;
  font-size: 22px;
  font-style: italic;
  opacity: 0.8;
}

/* GALERIE */
.concert-gallery {
  padding: 40px 20px;
}

.gallery-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

/* IMAGES */
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;

  filter: brightness(0.75);
  transition: all 0.5s ease;

  opacity: 0;
  transform: translateY(30px);
  animation: fadeImage 1.2s ease forwards;
}

/* HOVER */
.gallery-grid img:hover {
  filter: brightness(1);
  transform: scale(1.02);
}

/* CASCADE */
.gallery-grid img:nth-child(1) { animation-delay: 0.2s; }
.gallery-grid img:nth-child(2) { animation-delay: 0.4s; }
.gallery-grid img:nth-child(3) { animation-delay: 0.6s; }
.gallery-grid img:nth-child(4) { animation-delay: 0.8s; }

/* ANIMATION */
@keyframes fadeImage {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CTA */
.concert-cta {
  text-align: center;
  margin: 100px 0;
}

.cta-btn {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid rgba(255,255,255,0.2);
  text-decoration: none;
  color: #f4eee9;
  transition: 0.3s;
}

.cta-btn:hover {
  background: rgba(255,255,255,0.1);
}

/* MOBILE */
@media (max-width: 768px) {
  .concert-hero h1 {
    font-size: 32px;
  }

  .concert-intro {
    font-size: 16px;
  }

  .concert-text {
    padding: 0 15px;
    font-size: 18px;
  }

  .concert-text h2 {
    font-size: 24px;
  }

  .concert-quote blockquote {
    font-size: 18px;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 480px) {
  .concert-hero h1 {
    font-size: 24px;
  }

  .concert-intro {
    font-size: 14px;
  }

  .concert-text {
    padding: 0 10px;
    font-size: 16px;
    margin: 40px auto;
  }

  .concert-text h2 {
    font-size: 20px;
  }

  .concert-quote {
    margin: 30px 10px;
  }

  .concert-quote blockquote {
    font-size: 16px;
  }

  .cta-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
  }
}
