*{   margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
 body{
    font-family: Space Grotesk;
 }
 :root {
  --rouge: #9D0017;      
  --fond-fonce: #2b2a29; 
  --blanc: #ffffff;}

  .burger-btn {
  display: none;
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 200;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.burger-btn span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--blanc);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.burger-btn.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger-btn.open span:nth-child(2) { opacity: 0; }
.burger-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background-size: cover;
    background-position: center top;}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index:0;}


.hero-titre {
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  font-family: Space Grotesk, serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #9D0017;}

  
.hero-titre-top {
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  z-index: 2;
}
 
.hero-titre-bottom {
  padding-top: 0px;
}
 

.hero-logo {
  position: absolute;
  right: 6%;
  top: 55%;
  transform: translateY(-50%);
  font-family:  'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(4rem, 20vw, 15rem);
  color: var(--rouge);
  line-height: 1;
  z-index: 2;
}
.side-nav {
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  z-index: 2;
}
 
.side-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
 
.side-nav-links a {
  text-decoration: none;
  color: var(--blanc);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}
 
.side-nav-links a:hover {
  color: var(--rouge);
}
 
.side-nav-links a.active {
  color: var(--rouge);
  font-weight: 600;
}
 

.side-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
 
.side-line {
  width: 1px;
  height: 50px;
  background-color: var(--blanc);
}
 

.side-cta-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-decoration: none;
  color: var(--blanc);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s ease;
}
 
.side-cta-text:hover {
  color: var(--rouge);
}




.page-tour {
  min-height: 100vh;
  /* Dégradé qui imite le fond rose/orange de la maquette.
     Si tu as l'image exportée depuis Figma, tu peux la mettre
     à la place : background-image: url("images/tour-bg.jpg");
     background-size: cover; */
 
}
 
/* "LIVE 2026" au centre du bandeau R O S É */
.hero-titre-live {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.1rem;
  letter-spacing: 1px;
  font-weight: 700;
  z-index: 3;
}
 
.tour-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 6% 80px;
  padding-left: 12%; /* laisse la place à la nav fixe à gauche */
}
 
.tour-list {
  list-style: none;
}
 
.tour-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
 
.tour-date {
  width: 140px;
  flex-shrink: 0;
  font-weight: 600;
  color: #1a1a1a;
}
 
.tour-venue {
  flex: 1;
  display: flex;
  flex-direction: column;
  font-weight: 600;
  color: #1a1a1a;
}
 
.tour-city {
  font-weight: 400;
  font-size: 0.9rem;
  color: #333;
}
 
.tour-ticket-btn {
  background-color: #111;
  color: var(--blanc);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 10px 18px;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}
 
.tour-ticket-btn:hover {
  background-color: var(--rouge);
}

 
.site-footer {
  background-color: var(--fond-fonce);
  padding-bottom: 20px;
}
 
.footer-info {
  text-align: center;
  color: var(--blanc);
  font-size: 0.8rem;
  margin-top: 0px;
}
 
.footer-info p {
  margin-bottom: 6px;
}
 
.footer-info a {
  color: var(--blanc);
  text-decoration: underline;
}
 
.footer-info a:hover {
  color: var(--rouge);
}
 
/* ============================================
   RESPONSIVE (petits écrans / mobile)
   ============================================ */
@media (max-width: 700px) {
  .hero-title {
    padding: 0 20px;
    font-size: 1.2rem;
  }
 
  .side-nav {
    left: 4%;
    gap: 14px;
  }
 
  .hero-logo {
    right: 5%;
    font-size: clamp(3rem, 18vw, 5rem);
  }
}

/* ============================
   ABOUT HERO CONTENT
============================ */

.about-hero-content {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: flex-start;
  gap: 40px;
  z-index: 3;
  width: 80%;
  max-width: 1200px;
}

.about-hero-photo img {
  width: 300px;        
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  margin-left: 40px;  
}


.about-hero-text p {
  font-size: 0.85rem;  
  line-height: 1.6;
  margin-bottom: 14px;
  color: #000;         
  opacity: 0.85;      
}


.about-hero-text h2 {

  width: 100%;
  display: block;
  text-transform: uppercase;
}

.about-hero-content {
  gap: 60px;
}
.about-hero-photo img {
    width: 70%;
    margin: 0 auto;
  }
.side-nav--page {
    position: relative;
    top: 0;
    left: 0;
    margin: 0 0 30px 20px;
  }

  .albums-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-left: 0;
  }

  .featured-track {
    margin-left: 0;
  }




  /* ============================================
   PAGES "SOMBRES" MULTI-SECTIONS (music, tour, merch...)
   Contrairement à .hero, ces pages n'ont pas de photo
   plein écran : juste un fond sombre uni.
   ============================================ */
.page-dark {
  background-color: var(--fond-fonce);
}

/* Le bandeau "R O S É" en haut n'est plus superposé à une
   photo ici : il flotte simplement en haut du fond sombre */
.page-dark > .hero-titre-top {
  position: relative;
  top: 0;
  padding-top: 24px;
  padding-bottom: 16px;
}

/* Variante de la nav pour les pages longues : on la fixe à
   l'écran (au lieu de la centrer dans un hero de 100vh) pour
   qu'elle reste accessible pendant le défilement */
.side-nav--page {
  position: fixed;
  top: 160px;
  transform: none;
}

.music-page {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 6% 60px;
}

/* ---- Grille des 5 pochettes d'album ---- */
.albums-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-left: 12%;
  margin-bottom: 50px;
}

.album-cover img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.2s ease;
}

.album-cover:hover img {
  transform: scale(1.03);
}

/* ---- Morceau mis en avant + lecteur ---- */
.featured-track {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-left: 12%;
  flex-wrap: wrap;
}

.track-cover {
  width: 260px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 4px;
}

.track-info {
  flex: 1;
  min-width: 260px;
}

.track-title {
  color: var(--blanc);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.player {
  background-color: var(--blanc);
  border-radius: 6px;
  padding: 16px 20px;
  max-width: 420px;
}

.player-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 10px;
}

.player-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
  display: flex;
}

.player-btn--play {
  background-color: #8a2be2;
  color: var(--blanc);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
}

.player-progress {
  display: flex;
  align-items: center;
  gap: 10px;
}

.player-time {
  font-size: 0.7rem;
  color: #666;
}

.progress-bar {
  flex: 1;
  height: 3px;
  background-color: #ddd;
  border-radius: 2px;
}

.progress-bar-fill {
  width: 0%;
  height: 100%;
  background-color: #8a2be2;
  border-radius: 2px;
}

.scroll-hint {
  text-align: center;
  color: var(--rouge);
  font-size: 1.3rem;
  margin: 30px 0;
}

/* ---- Section vidéo ---- */
.video-section {
  border-left: 10px solid var(--rouge);
}

.video-thumbnail {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.85);
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}



.page-tour {
  min-height: 100vh;
 background: linear-gradient(rgba(255,255,255,0.2), rgba(255,255,255,0.2)), url(../images/background02.jpeg);

  background-size: cover;
  background-position: center top;
  background-attachment: fixed; /* optionnel : effet de profondeur au scroll */
}


.tour-ticket-btn {
  padding: 8px 20px; /* hauteur réduite */
  font-size: 0.9rem; /* texte plus fin */
  border-radius: 6px; /* arrondi léger */
  .tour-ticket-btn {
  background-color: var(--rouge);
  color: #fff;
  transition: all 0.3s ease;
}

.tour-ticket-btn:hover {
  background-color: #000; /* noir */
  color: #fff;
}



}

.hero-titre-live {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  letter-spacing: -2.5px;
  font-weight: 1100;
}



.merch-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 6% 40px;
  padding-left: 12%; /* laisse la place à la nav fixe à gauche */
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
}

.product-card {
  text-align: center;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background-color: #3a3937;
  border-radius: 4px;
  margin-bottom: 12px;
}

.product-name {
  color: var(--blanc);
  font-size: 0.8rem;
  margin-bottom: 4px;
}

.product-price {
  color: #bbb;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.product-order-btn {
  display: inline-block;
  border: 1px solid var(--rouge);
  color: var(--blanc);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 1px;
  padding: 8px 20px;
  border-radius: 3px;
  transition: background-color 0.2s ease;
}

.product-order-btn:hover {
  background-color: var(--rouge);
}

/* ---- Section "sign up" newsletter ---- */
.newsletter-signup {
  position: relative;
  padding: 80px 20px;
  text-align: center;

  /* Superpose un voile blanc semi-transparent sur la photo, pour
     que le texte reste lisible. Remplace l'image par la tienne. */
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.72)),
    url("images/newsletter-photo.jpg");
  background-size: cover;
  background-position: center;
}

.newsletter-box h2 {
  font-weight: 700;
  margin-bottom: 30px;
  color: #1a1a1a;
}

.newsletter-form {
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.newsletter-form input[type="email"],
.newsletter-form input[type="text"] {
  border: none;
  border-radius: 4px;
  padding: 14px 16px;
  background-color: rgba(255, 255, 255, 0.85);
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
}

.newsletter-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
  font-size: 0.75rem;
  color: #333;
  margin: 6px 0;
}

.newsletter-checkbox input {
  margin-top: 3px;
}

.newsletter-submit {
  background-color: var(--rouge);
  color: var(--blanc);
  border: none;
  border-radius: 4px;
  padding: 14px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.newsletter-submit:hover {
  background-color: #7a0011;
}

/* ============================================
   PAGE NEWSLETTER (Velvet Thorns) — fond rose clair,
   texte sombre, différent du reste du site sombre
   ============================================ */
.page-newsletter {
  background-color: #fbe4e6;
  color: #1a1a1a;
}

.newsletter-header {
  text-align: center;
  padding: 30px 20px 10px;
}

/* Bandeau R O S É en noir sur cette page (pas rouge) */
.newsletter-titre {
  position: static;
  color: #1a1a1a;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-subtitle {
  color: var(--rouge);
  font-weight: 700;
  letter-spacing: 2px;
  margin-top: 10px;
}

.newsletter-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.7rem;
  letter-spacing: 1px;
  color: #555;
  margin-top: 10px;
}

.newsletter-caption .dash {
  width: 30px;
  height: 1px;
  background-color: #999;
}

.newsletter-page {
  max-width: 500px;
  margin: 0 auto;
  padding: 20px 20px 60px;
}

.newsletter-hero-img {
  width: 100%;
  border-radius: 4px;
  margin-bottom: 24px;
}

.newsletter-body p {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 14px;
}

.newsletter-body hr {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  margin: 20px 0;
}

.newsletter-signature {
  font-family: 'Space Grotesk', cursive;
  font-size: 1.8rem;
  font-style: italic;
}

.tracklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 30px 0;
}

.track-tile {
  position: relative;
  display: block;
  text-decoration: none;
  aspect-ratio: 1 / 1;
  border-radius: 4px;
  overflow: hidden;
}

.track-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.track-tile span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.75);
  color: var(--blanc);
  font-size: 0.65rem;
  text-align: center;
  padding: 6px 4px;
}

.newsletter-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.btn-pill {
  background-color: var(--rouge);
  color: var(--blanc);
  text-decoration: none;
  text-align: center;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 14px;
  border-radius: 30px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.newsletter-footer {
  text-align: center;
  font-size: 0.75rem;
  color: #555;
  padding-bottom: 30px;
}

.newsletter-footer p {
  margin-bottom: 5px;
}

.newsletter-footer a {
  color: #555;
}

/* ============================================
   RESPONSIVE (petits écrans / mobile)
   ============================================ */
@media (max-width: 700px) {
  .hero-title {
    padding: 0 20px;
    font-size: 1.2rem;
  }

  .side-nav {
    left: 4%;
    gap: 14px;
  }

  .hero-logo {
    right: 5%;
    font-size: clamp(3rem, 18vw, 5rem);
  }

  .side-nav--page {
    position: relative;
    top: 0;
    left: 0;
    margin: 0 0 30px 20px;
  }

  .albums-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-left: 0;
  }

  .featured-track {
    margin-left: 0;
  }

  .tour-page {
    padding-left: 6%;
  }

  .tour-row {
    flex-wrap: wrap;
  }

  .tour-date {
    width: auto;
  }

  .merch-page {
    padding-left: 6%;
  }

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

/* ============================================
   GRILLE DE PRODUITS (noms utilisés dans merch.html :
   merch-grid / merch-item / merch-price / merch-btn)
   ============================================ */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 6% 60px;
  padding-left: 12%;
}

.merch-item {
  text-align: center;
}

.merch-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background-color: #3a3937;
  border-radius: 4px;
  margin-bottom: 12px;
}

.merch-price {
  color: #bbb;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.merch-btn {
  display: inline-block;
  border: 1px solid var(--rouge);
  color: var(--blanc);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 1px;
  padding: 8px 20px;
  border-radius: 3px;
  transition: background-color 0.2s ease;
}

.merch-btn:hover {
  background-color: var(--rouge);
}

/* ---- Section newsletter (nom utilisé : .newsletter) ---- */
.newsletter {
  position: relative;
  padding: 80px 20px;
  text-align: center;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.72)),
    url(../images/newsletter.jpg);
  background-size: cover;
  background-position: center;
}

.newsletter h3 {
  font-weight: 700;
  margin-bottom: 30px;
  color: #1a1a1a;
}

.newsletter form {
  max-width: 380px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.newsletter input {
  border: none;
  border-radius: 4px;
  padding: 14px 16px;
  background-color: rgba(255, 255, 255, 0.85);
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
}

.newsletter button[type="submit"] {
  background-color: var(--rouge);
  color: var(--blanc);
  border: none;
  border-radius: 4px;
  padding: 14px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.newsletter button[type="submit"]:hover {
  background-color: #7a0011;}

  .back-arrow {
  position: absolute;
  top: 20px;
  left: 20px;
  color: var(--rouge);
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  z-index: 10;
  transition: color 0.2s ease;
}

.back-arrow:hover {
  color: #7a0011;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 20px;}

  .social-icons a {
  color: #1a1a1a; /* couleur des icônes */
  transition: color 0.2s ease;
}
  

.social-icons a:hover {
  color: #7a0011;
}


/* Responsive */
@media (max-width: 700px) {
  .about-hero-content {
    flex-direction: column;
    text-align: center;
    top: 60%;
  }

  
}

/* --- Correction bug + ajout merch-grid dans le bloc mobile existant --- */
@media (max-width: 700px) {
  .hero-titre-top,
  .hero-titre-bottom {
    padding: 0 20px;
    font-size: 1.2rem;
     top: 50px;
  }

  .merch-grid {
    grid-template-columns: repeat(2, 1fr);
    padding-left: 6%;
  }

  .about-hero-photo img {
    width: 90%;
  }
}

/* --- Nouveau palier tablette (à placer avant les blocs @media 700px) --- */
@media (max-width: 1024px) {

  .side-nav {
    left: 3%;
    gap: 16px;
  }

  .hero-logo {
    right: 4%;
    font-size: clamp(3rem, 16vw, 9rem);
  }

  .about-hero-content {
    width: 90%;
    gap: 30px;
  }

  .about-hero-photo img {
    width: 220px;
  }

  .albums-grid,
  .merch-grid,
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-left: 6%;
  }

  .featured-track {
    margin-left: 6%;
  }

  .tour-page,
  .music-page,
  .merch-page {
    padding-left: 8%;
  }
}

@media (max-width: 400px) {
  .burger-btn { display: flex; }

  .side-nav,
  .side-nav--page {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 220px;
    background-color: var(--fond-fonce);
    padding: 80px 24px;
    align-items: flex-start;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 150;
  }



  .side-nav.open,
  .side-nav--page.open {
    transform: translateX(0);
  }


 
}