*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0a0a0a;
  --white: #f5f5f5;
  --gray: #999;
  --border: rgba(255,255,255,0.1);
}

#site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 4px 16px;
}

.site-logo {
  position: absolute;
  left: 10px;
  z-index: 110;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-logo img {
  width: auto;
  height: 24px;
  display: block;
}

#banner-container {
  max-width: calc(100% - 140px);
}

html, body {
  height: 100%;
  background: var(--black);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* SECTION ACTUALITÉ (page d'accueil) */
.news-summary {
  max-width: 480px;
  margin: 0 auto 16px;
  padding: 10px 24px;
  background: #111;
  border: 0px solid var(--border);
  border-radius: 6px;
  text-align: center;
  transition: opacity 2s ease;
}

.news-summary:empty {
  display: none;
}

.news-summary h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.news-summary p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(245,245,245,0.75);
}

.news-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 560px;
  margin: 0 auto;
}

.carousel-arrow:hover {
  background: var(--white);
  color: var(--black);
}

.carousel-indicator {
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--gray);
  text-transform: uppercase;
}

.carousel-indicator:empty {
  display: none;
}


/* NAVIGATION SIMPLE (pages secondaires) */
.site-nav {
  text-align: center;
  margin-bottom: 8px;
}

.site-nav a {
  display: inline-block;
}

.site-nav img {
  width: 100px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* HEADER (page d'accueil) — logo et sous-titre uniquement */
header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 24px 0;
}

/* MAIN (page d'accueil) — tout le contenu, centré */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px 60px;
  position: relative;
}

h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: clamp(2.5rem, 8vw, 6rem);
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.subtitle {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--gray);
  text-transform: uppercase;
  margin: 0 auto;
}

.section {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--white);
  text-transform: uppercase;
  margin: 30px 0 24px;
}

/* BOUTONS */
.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--border);
  color: var(--white);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  border-radius: 2px;
}

.btn:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn img {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  transition: filter 0.2s;
}

.btn:hover img {
  filter: invert(1);
}

.btn.btn-epk {
  border-color: rgba(255,255,255,0.5);
}

.btn-small {
  padding: 8px 18px;
  font-size: 9px;
  margin-top: 14px;
}


/* DIVIDER */
.divider {
  width: 40px;
  height: 1px;
  background: var(--border);
  margin: 48px auto 48px;
}

/* PAGE ACTUALITÉ / ARTICLE */

.page-title {
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray);
  margin: 56px 0 40px;
}

.article {
  max-width: 720px;
  margin: 0 auto 0px;
  padding: 0 24px;
  scroll-margin-top: 60px;
}

.article img {
  width: 80%;
  height: auto;
  display: center;
  border-radius: 2px;
  margin-bottom: 28px;
}

.article-date {
  font-size: 9px;
  color: var(--gray);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.article h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: clamp(1.6rem, 2vw, 2rem);
  letter-spacing: -0.01em;
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.article p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(245,245,245,0.82);
  margin-bottom: 18px;
}

.article img {
  cursor: zoom-in;
}

.article .btn img {
  width: 15px;
  height: 15px;
  margin: 0;
  border-radius: 0;
}
 

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 24px;
  text-align: center;
}

.legal {
  font-size: 10px;
  font-weight: 300;
  color: var(--gray);
  letter-spacing: 0.08em;
  line-height: 2;
  max-width: 640px;
  margin: 0 auto;
}

.legal strong {
  color: rgba(255,255,255,0.4);
  font-weight: 400;
}

.legal a {
  color: var(--gray);
  text-decoration: none;
  border-bottom: 1px solid rgba(153,153,153,0.3);
  transition: color 0.2s;
}

.legal a:hover {
  color: var(--white);
}

/* MODAL MENTIONS LÉGALES / CONTACT */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: #111;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px;
  max-width: 540px;
  width: 100%;
  position: relative;
}

.modal h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--white);
}

.modal p {
  font-size: 12px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 12px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--gray);
  font-size: 20px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
  transition: color 0.2s;
}

.modal-close:hover { color: var(--white); }

/* BANDEAU BILLETTERIE */
.ticket-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 8px;
  text-align: center;
  clip-path: inset(0 100% 0 0);
  animation: unroll-banner 2s ease-out forwards;
  animation-delay: 0.5s;
}

.ticket-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--black);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: opacity 0.2s;
}

.ticket-btn:hover {
  opacity: 0.85;
}

.ticket-btn img {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.ticket-text {
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.01em;
}

@keyframes unroll-banner {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticket-banner {
    animation: none;
    clip-path: none;
  }
}

/* PAGE AGENDA */
.agenda-list {
  max-width: 720px;
  margin: 0 auto 96px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.event-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: border-color 0.2s;
}

.event-item:hover {
  border-color: rgba(255,255,255,0.3);
}

.event-date {
  flex-shrink: 0;
  text-align: center;
  min-width: 64px;
  padding: 10px 8px;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
}

.event-date .day {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}

.event-date .month {
  display: block;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 4px;
}

.event-info {
  flex: 1;
  min-width: 0;
}

.event-info h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.event-info p {
  font-size: 12px;
  font-weight: 300;
  color: var(--gray);
}

.event-link {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--white);
  text-decoration: none;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}

.event-link:hover {
  background: var(--white);
  color: var(--black);
}



/* PAGE MENTIONS LÉGALES */
.legal-page {
  max-width: 640px;
  margin: 0 auto 96px;
  padding: 0 24px;
  text-align: left;
}

.legal-page p {
  font-size: 10px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 24px;
}

.legal-page strong {
  color: rgba(255,255,255,0.4);
  font-weight: 400;
}

.legal-page a {
  color: var(--gray);
  text-decoration: none;
  border-bottom: 1px solid rgba(153,153,153,0.3);
  transition: color 0.2s;
}

.legal-page a:hover {
  color: var(--white);
}

/* PAGE 404 */
.error-page {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  text-align: center;
  padding: 40px 24px 96px;
}

.error-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.error-text {
  font-size: 13px;
  font-weight: 300;
  color: var(--gray);
  margin-bottom: 32px;
}

/* MENU LATÉRAL */
.menu-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 110;
  width: 36px;
  height: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: transform 0.2s, opacity 0.2s;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 260px;
  background: #111;
  border-left: 1px solid var(--border);
  z-index: 105;
  padding: 80px 24px 24px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.menu-panel.open {
  transform: translateX(0);
}

.menu-link {
  display: block;
  padding: 14px 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  border-bottom: 1px solid var(--border);
  transition: opacity 0.2s;
}

.menu-link:hover {
  opacity: 0.6;
}

.menu-logo {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: inline-flex;
}

.menu-logo img {
  width: 32px;
  height: 32px;
  display: block;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.menu-logo:hover img {
  opacity: 1;
}

/* ============================================= */
/* RESPONSIVE — tous les ajustements mobile ici   */
/* ============================================= */
@media (max-width: 480px) {
  .modal {
    padding: 32px 24px;
  }

  h1 {
    font-size: 2.8rem;
  }

  .ticket-banner {
    padding: 6px 4px;
    gap: 8px;
  }

  .ticket-btn {
    padding: 4px 8px;
    font-size: 9px;
    gap: 6px;
  }

  .ticket-btn img {
    width: 12px;
    height: 12px;
  }

  .ticket-text {
    font-size: 10px;
  }

  .event-item {
    flex-wrap: wrap;
  }

  .event-link {
    width: 100%;
    justify-content: center;
  }

  .bio-image.bio-portrait {
    max-width: 100%;
  }

  .bio-portrait-row.bio-row-reverse {
    flex-direction: row-reverse;
  }

}

/* PAGE BIOGRAPHIE */
.bio-section {
  max-width: 720px;
  margin: 0 auto 64px;
  padding: 0 24px;
  text-align: left;
}
 
.bio-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
 
.bio-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(245,245,245,0.82);
  margin-bottom: 18px;
}
 
.bio-image {
  margin: 24px 0;
}
 
.bio-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}

/* Paysage et portrait isolé : image pleine largeur, légende en dessous */
.bio-image.bio-landscape{
  display: block;
}

.bio-image.bio-portrait {
  display: block;
  max-width: 320px;
}
 
/* Image portrait accolée au paragraphe qui la suit */
.bio-portrait-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin: 24px 0;
}
 
.bio-portrait-row .bio-image {
  flex: 1;
  margin: 0;
}

.bio-portrait-row.bio-row-reverse {
  flex-direction: row-reverse;
}
 
.bio-portrait-row .bio-text {
  flex: 1;
  margin: 0;
}
 
.bio-caption {
  font-size: 12px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.7;
  margin: 8px 0 0;
}

.bio-image img {
  cursor: zoom-in;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  display: block;
  border-radius: 2px;
}

/* BANDEAU LOGOS FOOTER */
.footer-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 10px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.footer-bar.visible {
  transform: translateY(0);
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-icon img {
  width: 18px;
  height: 18px;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.footer-icon:hover img {
  opacity: 1;
}

.player-embed {
  max-width: 480px;
  margin: 0 auto 20px;
}

.player-embed iframe {
  width: 100%;
  display: block;
  border-radius: 4px;
}

.player-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  background: #111;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.player-placeholder:hover {
  background: #333;
}

.player-placeholder img {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.player-notice {
  font-size: 10px;
  font-weight: 300;
  color: var(--gray);
  text-align: center;
  margin-top: 6px;
}