@charset "UTF-8";

/* ===================
   FOND ET TEXTE GLOBAL
   =================== */
body {
  font-family: "Roboto Flex", sans-serif; 
  background: rgba(19, 54, 87, 1); 
  color: #133657; 
  transition: background 0.3s;
  padding-top: 64px;  
}

/* ===================
   LIENS GÉNÉRAUX
   =================== */
a, a:visited, a:active {
  color: #b0873f !important;                  /* Doré pour les liens */
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #80652c !important;                  /* Doré foncé au hover/focus */
  text-decoration: underline;
}

/* ===================
   BOUTONS GÉNÉRAUX (Bootstrap)
   =================== */
.btn {
  background-color: #b0873f !important;       /* Fond doré */
  color: #fff !important;                     /* Texte blanc */
  border: none !important;
  border-radius: 0 !important;                /* Carré pour l’esprit classique */
  transition: background 0.2s, color 0.2s;
}
.btn:hover, .btn:focus {
  background-color: #80652c !important;
  color: #fff !important;
}
/* Boutons outline Bootstrap */
.btn-outline-primary, .btn-outline-secondary, .btn-outline-success, .btn-outline-danger,
.btn-outline-warning, .btn-outline-info, .btn-outline-light, .btn-outline-dark {
  border-color: #b0873f !important;
  color: #b0873f !important;
  background: transparent !important;
  border-radius: 0 !important;
}
.btn-outline-primary:hover, .btn-outline-secondary:hover, .btn-outline-success:hover, .btn-outline-danger:hover,
.btn-outline-warning:hover, .btn-outline-info:hover, .btn-outline-light:hover, .btn-outline-dark:hover {
  background: #b0873f !important;
  color: #fff !important;
}
.btn-nav {
  color: #b0873f !important;
  background: transparent !important;
  border-radius: 0 !important;
}
.btn-nav:hover {
  color: #80652c !important;
  background: transparent !important;
}

/* ===================
   SÉLECTION DE TEXTE
   =================== */
::selection {
  background-color: #bcd2e1;                  /* Bleu clair en sélection */
  color: #416982;
}
::-moz-selection {
  background-color: #bcd2e1;
  color: #416982;
}

/* ===================
   FOCUS CHAMPS DE FORMULAIRE
   =================== */
.form-control:focus, 
.form-select:focus, 
input:focus, 
textarea:focus, 
select:focus, 
button:focus {
  border-color: #b0873f !important;
  box-shadow: 0 0 0 0.25rem rgba(176, 135, 63, 0.25) !important;
  outline: none !important;
}

/* ===================
   TITRES SPÉCIFIQUES
   =================== */
#topTitle h1 {
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
}
#topTitle h6 {
  font-family: "Roboto Flex", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

#topTitleBilletterie h1 {
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
}
#topTitleBilletterie h6 {
  font-family: "Roboto Flex", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}


/* ===================
   NAVBAR CUSTOM
   =================== */
.navbar-custom {
  background: #fff;
  height: 64px;
  z-index: 1030;
  transition: top 0.4s cubic-bezier(.4,0,.2,1), background 0.3s, color 0.3s;
  position: fixed;
  top: 0; left: 0; right: 0; width: 100%;
}
.navbar-hide { top: -80px !important; }           /* Masquer la navbar quand scroll down */
.navbar-logo { height: 40px; width: auto; display: block; transition: filter 0.3s; }
.navbar .navbar-logo-wrapper {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  z-index: 1;
}
.navbar .navbar-left,
.navbar .navbar-right { z-index: 2; }
.navbar .navbar-right .nav-link {
  color: #22223b;
  font-size: 1.35rem;
  margin-left: 1rem;
  transition: color 0.3s;
}
.navbar .navbar-right .nav-link:hover { color: #343a40; }

:root {
    --white-translucent: rgba(255, 255, 255, 0.8);
 --white: #fff;
  --gold: #b0873f;
  --gold-dark: #80652c;
  --blue-dark: #133657;
  --text-white: #fff;
}

/* === MENU OVERLAY FINAL === */

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform-origin: top center;
  transform: scaleY(0);
  transition: opacity 0.25s ease, transform 0.4s cubic-bezier(0.45, 0, 0.15, 1);
}


.menu-overlay.active {
  opacity: 1;
  pointer-events: all;
  transform: scaleY(1);
}

/* Animation */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* === CONTENU CENTRAL === */
.menu-center {
  margin-top: 120px;
  padding: 2.5rem 1rem 2rem;
  width: 100%;
  max-width: 720px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

/* === LIENS === */
.menu-main {
  font-size: 2.2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-white);
  margin-bottom: 2.6rem;
  text-decoration: none;
}
.menu-main:hover,
.menu-main:focus {
  text-decoration: underline;
  color: var(--text-white);
}

.menu-section {
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-white);
  margin: 1.3em 0 0.5em;
}

.menu-sub {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5em 1.4em;
  margin-bottom: 1.4em;
  padding: 0;
}

.menu-subitem {
  font-size: 1.07rem;
  font-weight: 700;
  color: var(--text-white);
  text-transform: uppercase;
  background: none;
  border: none;
  padding: 0.2em 0.4em;
  text-decoration: none;
}
.menu-subitem:hover,
.menu-subitem:focus {
  text-decoration: underline;
  color: var(--text-white);
}
.menu-subitem::after {
  content: "|";
  margin: 0 0.55em;
  color: var(--text-white);
  opacity: 0.6;
}
.menu-subitem:last-child::after {
  content: "";
}

/* === VISUELS === */
.menu-visuals {
  display: none;
  margin-top: 3rem;
  gap: 2rem;
  flex-wrap: nowrap;              /* ❗️forcera tout sur une ligne */
  overflow-x: auto;  
  justify-content: center;
}
.menu-visuals img {
  object-fit: cover;
  border-radius: 0.5rem;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
}
.menu-concert {
  width: 160px;
  height: 220px;
}
.menu-musicien {
  width: 220px;
  height: 160px;
}

@media (min-width: 768px) {
  .menu-visuals {
    display: flex;
  }
}

/* === RESPONSIVE === */
@media (max-width: 700px) {
  .menu-center {
    align-items: flex-start;
    text-align: left;
    padding: 0 1.5rem;
    margin-top: 90px;
  }
  .menu-main {
    font-size: 1.6rem;
    text-align: left;
  }
  .menu-section {
    font-size: 1.1rem;
    text-align: left;
  }
  .menu-sub {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }
  .menu-subitem {
    font-size: 0.95rem;
    display: block;
    text-align: left;
    padding: 0.2em 0;
  }
}
.menu-main,
.menu-subitem {
  outline: none;
}
.menu-main:focus,
.menu-subitem:focus {
  outline: none !important;
  box-shadow: none !important;
}

.menu-list li::marker,
.menu-sub li::marker {
  display: none;
}

.menu-list li::before,
.menu-sub li::before {
  display: none;
}

.menu-list li::before,
.menu-list li::after,
.menu-sub li::before,
.menu-sub li::after,
.menu-list li::marker,
.menu-sub li::marker {
  content: none !important;
  display: none !important;
}


/* ======================
   NAVBAR AU-DESSUS (toujours cliquable)
   ====================== */
.navbar-custom {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 4000; /* bien au-dessus de l'overlay */
}

/* ===================
   TOGGLE LANGUES (pills FR/EN)
   =================== */
.lang-toggle-switch {
  position: relative;
  display: flex;
  align-items: center;
  background: transparent;
  border-radius: 999px;
  min-width: 78px;
  min-height: 30px;
  height: 30px;
  padding: 2px;
  border: 2px solid #b0873f;
  box-sizing: border-box;
}

.lang-toggle-bg {
  position: absolute;
  left: 2px; top: 2px; bottom: 2px;
  width: calc(50% - 4px);
  border-radius: 999px;
  background: #b0873f;
  transition: left 0.23s cubic-bezier(.6,.2,.3,1);
  z-index: 1;
}

.lang-toggle-bg.right {
  left: 50%;
}

.lang-toggle-btn {
  flex: 1 1 50%;
  z-index: 2;
  text-align: center;
  font-family: 'Roboto Flex', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 999px;
  padding: 0.15em 0.2em;
  color: #b0873f;
  background: transparent;
  text-decoration: none;
  transition: color 0.18s, background 0.22s;
  cursor: pointer;
  border: none;
  height: 26px;
  line-height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lang-toggle-btn.active,
.lang-toggle-btn[aria-current="true"] {
  color: #fff !important;
  background: transparent;
  cursor: default;
  pointer-events: none;
}
.lang-toggle-btn:not(.active):hover {
  color: #80652c;
}

@media (max-width: 576px) {
  .lang-toggle-switch {
    min-width: 62px;
    min-height: 26px;
    height: 26px;
  }
  .lang-toggle-btn {
    font-size: 0.95rem;
    height: 24px;
    line-height: 24px;
    padding: 0.10em 0.1em;
  }
}

/* ===================
   SEARCH OVERLAY & CHAMPS
   =================== */
#searchOverlay .search-form input[type="search"] {
  font-size: 1.3rem;
  text-align: center;
  background: rgba(255,255,255,0.95);
  border: 2px solid #b0873f;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  font-family: "Roboto Flex", sans-serif;
  font-weight: 400;
}
#searchOverlay .search-form button { min-width: 120px; }
.search-underline-group {
  background: transparent !important;
  border: none !important;
  align-items: center;
}
.search-icon-bg {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
.search-underline {
  background: transparent !important;
  border: none !important;
  border-bottom: 2px solid #b0873f !important;
  border-radius: 0 !important;
  color: #fff !important;
  font-family: "Roboto Flex", sans-serif !important;
  font-size: 2rem !important;
  outline: none !important;
  box-shadow: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  width: 100%;
  caret-color: #b0873f;
  transition: border-color 0.2s, color 0.2s;
  font-weight: 400;
  font-style: italic;
  text-align: center;
}
.search-underline:focus {
  border-bottom: 2.5px solid #fff;
  background: transparent;
  outline: none !important;
  box-shadow: none !important;
  color: #fff !important;
}
.search-underline::placeholder {
  color: #fff !important;
  opacity: 0.7;
  font-family: "Roboto Flex", sans-serif !important;
  font-size: 1.1rem;
  font-style: italic;
  text-align: center;
}
#searchOverlay {
  position: fixed;
  inset: 0;
  background: rgba(19,54,87,0.97); /* fond bleu foncé */
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#searchOverlay.active {
  opacity: 1;
  pointer-events: all;
  animation: fadeInUp 0.5s ease-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.search-box-wrapper {
  position: relative;
  max-width: 520px;
  width: 100%;
  padding-left: 2.4rem;
}

.search-box-icon {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 1.4rem;
}

.search-box-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid #b0873f;
  color: white;
  font-size: 1.6rem;
  font-style: italic;
  font-family: "Roboto Flex", sans-serif;
  padding: 0.4rem 0.6rem;
  outline: none;
  transition: border-color 0.3s;
}

.search-box-input::placeholder {
  color: #fff;
  opacity: 0.6;
}

.search-box-input:focus {
  border-bottom: 2px solid #fff;
}

/* ===================
   FOOTER & PARTENAIRES
   =================== */
#footer {
  background: rgba(19, 54, 87, 1);
  color: white;
}
#footer ~ * { background: #133657 !important; color: white; }
#nav-link-footer a, #nav-link-footer p {
  color: white;
  text-decoration: none;
  position: relative;
}
#nav-link-footer a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background-color: white;
  transition: width 0.3s ease;
}
#nav-link-footer a:hover::after { width: 100%; }
.socialinks .icon-circle a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2em; height: 2em;
  background: transparent;
  color: #fff;
  font-size: 2em;
  position: relative;
}
.socialinks .icon-circle a:focus,
.socialinks .icon-circle a:hover {
  color: #b0873f;
  outline: none;
}
/* Bande logos partenaires (fond image) */
.footer-bg-section {
  position: relative;
  height: 100px;
  background-color: white;
  background-image: url('../website/home_footer_2025.webp');
  background-size: auto;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0px;
}
.footer-bg-content { text-align: center; z-index: 2; }
.svg-blanc {
  fill: #fff !important;
  filter: brightness(0) invert(1);
  height: 80px; width: auto;
}
.logo-link img { transition: filter 0.3s ease; }
.logo-link:hover img { filter: brightness(0.8) saturate(1.2); }
@media (min-width: 1200px) {
  .svg-blanc { height: 70px; }
}

/* ===================
   SCROLL TO TOP BUTTON
   =================== */
#scrollToTopBtn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: none;
  z-index: 2000;
  background: rgba(176,135,63,0.8);
  border: none;
  bottom: 1rem;
  right: 1rem;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
#scrollToTopBtn svg {
  position: absolute; top: 0; left: 0; transform: rotate(-90deg);
  width: 40px; height: 40px;
}
#scrollToTopBtn .circle-bg {
  fill: none; stroke: rgba(255, 255, 255, 0.3); stroke-width: 3.8;
}
#scrollToTopBtn .circle {
  fill: none; stroke-width: 3.8; stroke: #fff;
  stroke-linecap: round; transition: stroke-dasharray 0.3s ease;
}
#scrollToTopBtn i {
  position: relative; z-index: 1; color: #fff; font-size: 1.2rem;
}

/* ===================
   CONTENT - TEXTES
   =================== */
.maincontent {
  font-family: "Libre Baskerville", serif;
  text-align: justify;
  font-weight: 400;
  line-height: 2.0;
  padding: 2rem 2.5rem 1.2rem 2.5rem;
  background: #ffffff;
}
.secondcontent {
  font-family: "Roboto Flex", sans-serif;
  font-weight: 400;
  background: #ffffff;
}

/* ===================
   LOADING SCREEN
   =================== */
#loading-screen {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s;
}
#loading-svg .st0 {
  fill: #B0873F;
  clip-path: inset(100% 0 0 0);
  animation: maskFill 2s ease-in-out forwards;
}
@keyframes maskFill {
  0% { clip-path: inset(100% 0 0 0); }
  100% { clip-path: inset(0 0 0 0); }
}
@keyframes fillAnimation {
  0% { fill: transparent; }
  100% { fill: #B0873F; }
}

/* ===================
   HERO & TITRAGE
   =================== */
.topTitleImg {
  position: relative;
  width: 100%;
  height: 500px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.topTitleImg .text-container {
  position: absolute; left: 0; top: 0; right: 0; bottom: 0; width: 100%; height: 100%;
  padding: 0;
  color: #fff;
  background: rgba(15, 55, 87, 0.48);
  display: flex;
  align-items: flex-end;
}

.topTitleImgBilletterie {
  position: relative;
  width: 100%;
  height: 100px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.topTitleImgBilletterie .text-container {
  position: absolute; left: 0; top: 0; right: 0; bottom: 0; width: 100%; height: 100%;
  padding: 0;
  color: #fff;
  background: rgba(15, 55, 87, 0.48);
  display: flex;
  align-items: flex-end;
}
.text-inner {
  padding: 2rem 2.5rem 1.2rem 2.5rem;
  width: 100%;
}

/* ===================
   MEDIA QUERIES MOBILE
   =================== */
@media (max-width: 576px) {
  .navbar-logo { height: 32px; }
  .navbar-custom { height: 56px; }
  body { padding-top: 56px; }
  .menu-links a { font-size: 1.4rem; }
  .menu-item .submenu {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }
  .topTitleImg { height: 180px; }
  .topTitleImg .text-container { padding: 0.7rem 1.1rem; max-width: 100%; font-size: 0.97rem; }
  .text-inner { padding: 0.7rem 1.1rem; }
}
@media (min-width: 1200px) {
  .svg-blanc { height: 70px; }
}

/* ===================
   LISTES DE PERSONNES/ROLES
   =================== */
.peoplelinks {
  font-weight: 300;
  line-height: 1.1;
}

/* Nouvelle présentation harmonisée des réseaux sociaux */
.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  margin-top: 0.5rem;
}

.social-icons a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  font-size: 1.45rem;
  color: #b0873f;
  transition: color 0.2s, transform 0.2s;
}

.social-icons a:hover,
.social-icons a:focus {
  color: #80652c;
  transform: scale(1.1);
}

.social-icons a span {
  font-size: 0.72rem;
  font-weight: 500;
  margin-top: 0.2rem;
  text-transform: uppercase;
  color: #133657;
}

/* ===================
   GALERIE AFFICHES CONCERTS
   =================== */
.concerts-gallery {
  margin-top: 1.2rem;
  margin-bottom: 1.8rem;
}
.concertAffiche-card {
  overflow: hidden;
  border-radius: 0px;
  position: relative;
  min-height: 180px;
  background: #f7f8fa;
  box-shadow: 0 2px 12px rgba(19,54,87,0.08);
  transition: transform 0.2s;
}
.concertAffiche-card:hover,
.concertAffiche-card:focus-within {
  transform: translateY(-7px) scale(1.025);
  box-shadow: 0 6px 22px rgba(176,135,63,0.13), 0 1.5px 8px rgba(19,54,87,0.13);
  z-index: 3;
}
.concertAffiche-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 0px;
  transition: filter 0.18s;
  filter: grayscale(1) brightness(0.95) contrast(1.06);
}
.concertAffiche-card:hover .concertAffiche-img,
.concertAffiche-card:focus-within .concertAffiche-img {
  filter: grayscale(0) brightness(1) contrast(1.09);
}
.concertAffiche-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  min-height: 30%;
  background: linear-gradient(0deg, rgba(19,54,87,0.94) 65%, rgba(19,54,87,0.07) 100%);
  color: #fff;
  padding: 0.4rem 0.4rem 0.4rem 0.4rem;
  opacity: 0.98;
  pointer-events: none;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.concertAffiche-title {
  font-family: "Roboto Flex", sans-serif;
  font-size: 1.0rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: #ffe9b0;
  text-shadow: 0 1px 4px rgba(19,54,87,0.33);
  margin-bottom: 0;
}
.concertAffiche-date {
  font-family: "Roboto Flex", sans-serif;
  font-size: 0.8rem;
  color: #fff;
  opacity: 0.85;
  margin-top: 0.05em;
  text-shadow: 0 1px 4px rgba(19,54,87,0.25);
  line-height: 1.05;
}

/* Responsive pour la galerie concerts */
@media (max-width: 576px) {
  .concertAffiche-card { min-height: 165px; }
  .concertAffiche-title { font-size: 0.97rem; }
  .concertAffiche-date { font-size: 0.78rem; }
}

/* ===================
   GALERIE/CARROUSEL PHOTOS
   =================== */
.photo-figure {
  margin: 0;
  border-radius: 2px;
  overflow: hidden;
  background: #f7f8fa;
  box-shadow: 0 2px 12px rgba(19,54,87,0.08);
  position: relative;
}
.photo-carousel-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 0px;
  transition: filter 0.17s;
  filter: brightness(0.97) contrast(1.05);
}
.photo-figure:hover .photo-carousel-img,
.photo-figure:focus-within .photo-carousel-img {
  filter: brightness(1.05) contrast(1.09) blur(0.6px);
}
.photo-caption-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(0deg, rgba(19,54,87,0.93) 80%, rgba(19,54,87,0.07) 100%);
  color: #fff;
  padding: 0.8rem 1rem 0.5rem 1rem;
  font-family: "Roboto Flex", sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 4px rgba(19,54,87,0.35);
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.carousel-control-prev,
.carousel-control-next {
  filter: drop-shadow(0 0 5px #133657);
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #b0873f;
  border-radius: 50%;
  width: 2.3rem;
  height: 2.3rem;
  opacity: 0.93;
  transition: background 0.2s;
}
.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
  background-color: #80652c;
  opacity: 1;
}
/* Responsive pour la galerie photos */
@media (max-width: 576px) {
  .photo-figure { border-radius: 0px; }
  .photo-caption-overlay { font-size: 0.87rem; padding: 0.6rem 0.5rem 0.45rem 0.5rem; }
  .photMo-carousel-img { border-radius: 0px; }
}
/* Indicateurs personnalisés carrousel (petits rectangles dorés) */
.carousel-indicators-custom button[type="button"] {
  width: 12px;
  height: 4px;
  border-radius: 0px;
  margin: 0 6px;
  background-color: #b0873f;
  opacity: 0.45;
  border: none;
  transition: opacity 0.25s, box-shadow 0.25s;
  display: inline-block;
  box-shadow: none;
  padding: 0;
}
.carousel-indicators-custom button.active {
  opacity: 1;
  background-color: #b0873f;
  box-shadow: 0 0 0 3px #fff, 0 0 4px #b0873f;
}
.carousel-indicators-custom button:focus {
  outline: 2px solid #b0873f;
}

/* ===================
   DISTRIBUTION ROLES/PERSONNES
   =================== */
.roles-list {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
  font-size: 0.8rem;
}
.roles-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.2em;
}
.role {
   font-family: "Roboto Flex", sans-serif; 
    text-transform: uppercase;
  flex: 0 0 auto;
  white-space: nowrap;
  font-weight: 600;
  color: #133657;
}
.person {
  font-family: "Roboto Flex", sans-serif; 
    text-transform: uppercase;
  flex: 0 0 auto;
  white-space: nowrap;
  margin-left: 6px;
  font-weight: 600;
}
.dots {
  flex: 1 1 auto;
  border-bottom: 1px dotted #b6a26d;
  height: 0.9em;
  margin: 0 5px;
  position: relative;
  top: 1px;
}
/* Mini-retouches responsive pour team-card */
.team-photo-link {
  display: inline-block;
  position: relative;
}

.team-photo-circle {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #fff2dc;
  background: #ececec;
  box-shadow: 0 2px 12px #bcd2e1a8;
  filter: grayscale(100%);
  transition: transform 0.18s, filter 0.15s;
  position: relative;
  z-index: 1;
}

.team-photo-link .team-photo-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(19,54,87,0.20); /* bleu foncé, ajuste l’opacité si besoin */
  pointer-events: none;
  z-index: 2;
  transition: background 0.15s;
}

.team-photo-link:hover .team-photo-circle,
.team-member-card:hover .team-photo-circle {
  transform: scale(1.05);
  filter: grayscale(0.15) contrast(1.04);
}

.team-member-names {
  line-height: 1.05;
}
.team-member-name-link {
  color: #b0873f;
  font-size: 1.14rem;
  text-decoration: none;
  text-underline-position: under;
  text-decoration-thickness: 2px;
  transition: color 0.17s;
}
.team-member-name-link:hover,
.team-member-name-link:focus {
  color: #80652c;
  text-decoration: underline;
}
.team-member-instrument {
  font-family: "Roboto Flex", sans-serif;
  color: #222;
  margin-top: 0.15em;
  font-weight: 600;
  font-size: 0.85em;
  letter-spacing: 0.06em;
  background: none;
  text-transform: uppercase;
}
.team-member-team {
  margin-top: 0.15em;
  font-family: "Roboto Flex", sans-serif;
  font-weight: 600;
  font-size: 0.85em;
  letter-spacing: 0.06em;
  color: #b0873f;
  background: none;
  text-transform: uppercase;
}
.team-badge-team-jeunes-talents   { color: #80652c; }
.team-badge-team-artistique       { color: #133657; }
.team-badge-team-production       { color: #21665e; }
.team-badge-team-communication    { color: #b0873f; }
.team-badge-team-bureau           { color: #134874; }
.team-badge-team-logistique       { color: #994425; }
@media (max-width: 700px) {
  .team-photo-circle { width: 72px; height: 72px; }
  .team-member-card { min-height: 175px; padding: 0.7rem 0.3rem;}
}




/* Nouvelle présentation Timeline Historique */

.pb-timeline-label {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  min-width: 115px;
  flex-direction: column;
  position: relative;
}

.pb-timeline-bar {
  width: 4px;
  height: 44px;
  background: linear-gradient(180deg, #ffe9b0 20%, #b0873f 90%);
  border-radius: 2px;
  margin-bottom: 0.5em;
  opacity: 0.72;
}

.pb-timeline-annee {
  font-family: "Libre Baskerville", serif;
  font-size: 1.34rem;
  font-weight: 600;
  color: #b0873f;
  letter-spacing: 0.03em;
  background: #fff8e3;
  border-radius: 13px;
  padding: 0.18em 1.13em 0.12em 1.13em;
  box-shadow: 0 1.5px 8px #ffe9b044;
  margin-bottom: 0.2em;
  border: 1px solid #ffe9b0;
}

.pb-timeline-affiche-link {
  display: block;
  width: 62px;
  height: 90px;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 2px 8px #bcd2e144;
  transition: transform 0.18s;
}
.pb-timeline-affiche-link:hover, .pb-timeline-affiche-link:focus {
  transform: scale(1.07) rotate(-2deg);
  box-shadow: 0 4px 18px #b0873f55;
}
.pb-timeline-affiche {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 7px;
}

.btn-pb-timeline-minimal, .pb-timeline-toggle {
  background: none !important;
  color: #b0873f !important;
  font-family: "Libre Baskerville", serif;
  font-size: 1.02em;
  font-weight: 500;
  border-radius: 50px !important;
  border: 1.5px solid #b0873f !important;
  box-shadow: none;
  padding: 0.28em 1.25em;
  margin: 0.75em 0 0.3em 0;
  transition: background 0.13s, color 0.13s;
  display: inline-block;
  letter-spacing: 0.02em;
}
.btn-pb-timeline-minimal:hover, .pb-timeline-toggle:hover,
.btn-pb-timeline-minimal:focus, .pb-timeline-toggle:focus {
  background: #b0873f11 !important;
  color: #80652c !important;
  border-color: #80652c !important;
}

@media (max-width: 700px) {
  .pb-timeline-label {
    flex-direction: row;
    min-width: 0;
    gap: 0.75rem;
    margin-bottom: 0.6em;
  }
  .pb-timeline-bar { height: 38px; width: 3px; }
  .pb-timeline-affiche-link, .pb-timeline-affiche { width: 40px; height: 60px; }
  .pb-timeline-annee { font-size: 1.04rem; padding: 0.14em 0.7em; }
}

.pb-timeline-year:not(:last-child) .pb-timeline-label::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(100% + 8px);
  transform: translateX(-50%);
  width: 4px;
  height: 45px;
  background: linear-gradient(180deg, #ffe9b0 20%, #b0873f 90%);
  opacity: 0.4;
  border-radius: 2px;
  z-index: 0;
}
@media (max-width: 700px) {
  .pb-timeline-year:not(:last-child) .pb-timeline-label::after {
    width: 3px; height: 30px; top: calc(100% + 4px);
  }
}



/*Photographies*/
.pb-photo-wall {
  margin-top: 1.2rem;
  margin-bottom: 2rem;
}
.pb-photo-thumb {
  padding: 0.1rem;
}
.pb-photo-img {
  border-radius: 8px;
  transition: box-shadow 0.2s, border 0.18s;
  border: 2px solid transparent;
  box-shadow: 0 2px 8px rgba(176,135,63,0.08);
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  background: #f7f8fa;
}
.pb-photo-img:hover,
.pb-photo-thumb:focus-within .pb-photo-img {
  border-color: #b0873f;
  box-shadow: 0 6px 24px rgba(176,135,63,0.15), 0 2px 12px #13365713;
  z-index: 2;
}
/* Responsive pour mur d'image */
@media (max-width: 576px) {
  .pb-photo-img { border-radius: 4px; }
}
.pb-photo-lightbox-content h4 { color: #b0873f; font-family: "Libre Baskerville", serif; }
.pb-photo-lightbox-content a { color: #133657; }
.pb-photo-lightbox-content { font-size: 1.08em; }

.pb-photo-lightbox-personnes li {
  font-size: 1.02em;
  margin-bottom: 0.15em;
}
.pb-photo-lightbox-personnes a {
  color: #b0873f;
  font-weight: 500;
}
.pb-photo-lightbox-personnes span {
  color: #888ca1;
}
.pb-photo-summary {
  font-size: 1.08em;
  color: #133657;
  margin-bottom: 1rem;
}
.pb-photo-summary strong {
  color: #b0873f;
}

/* =========================
  PROGRAMME
   ========================= */
.date-block {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 3rem;
  position: relative;
}

.date-sticky {
  position: sticky;
  top: 2rem;
  text-align: center;
  min-width: 90px;
  font-family: "Libre Baskerville", serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #133657;
  background: #fff;
  z-index: 1;
  padding-right: 0.6rem;
  border-right: 1px solid #ccc;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 0.8rem;
}

.date-sticky small,
.date-sticky .datelong {
  display: block;
  font-family: "Roboto Flex", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #666;
  margin-top: 0.3rem;
  text-transform: none;
}

/* Ligne mobile sous la date */
.date-separator {
  display: none;
  border: none;
  border-top: 1px solid #ccc;
  margin-top: 0.6rem;
  margin-bottom: 0;
  width: 100%;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInImg {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

.event-panel {
  background: #fff;
  padding: 1.5rem 0;
  width: 100%;
  display: block;
  min-height: 250px;
}

.event-title {
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  color: #133657;
}

.event-meta {
  font-family: "Roboto Flex", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #333;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

.event-meta span {
  color: #666;
  font-size: 0.95rem;
}

.event-description {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1rem;
}

.btn-action {
  margin-right: 1rem;
  font-size: 0.9rem;
  padding: 0.5rem 1.2rem;
  border-radius: 0;
  font-weight: 600;
  letter-spacing: 0.03em;
}

img.programme-img {
  height: auto;
  width: 100%;
  max-width: 200px;
  object-fit: contain;
  align-self: center;
  margin-top: 0.6rem;
  animation: fadeInImg 1s ease forwards;
}

@media (max-width: 768px) {
  /* Bloc date */
  .date-block {
    flex-direction: column;
  }

  .date-sticky {
    position: relative;
    text-align: left;
    margin-bottom: 1rem;
    border-right: none;
    align-items: flex-start;
    width: 100%;
    max-width: 100%;
  }

  .date-separator {
    display: block;
  }

  /* Image affiche */
  .programme-img {
    max-height: 250px;
    width: auto;
    margin-bottom: 1rem;
  }

  /* Mise en page des contenus */
  .event-panel .d-flex {
    flex-direction: column !important;
    gap: 1rem !important;
    align-items: center;
    text-align: center;
  }

  .event-panel .flex-grow-1 {
    margin-top: 0 !important;
  }

  .event-meta,
  .event-description {
    text-align: center;
  }

  .event-title {
    font-size: 1.5rem;
  }

  .event-description {
    font-size: 0.96rem;
    line-height: 1.6;
    padding: 0 0.6rem;
  }

  .btn-action {
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-bottom: 0.5rem;
  }

  .d-flex.flex-wrap {
    justify-content: center;
  }
}

/* =========================
  HOMEPAGE
   ========================= */


.scroll-down-indicator {
  position: absolute;
  bottom: 20vh;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  align-items: center;
  cursor: pointer;
  animation: fadeInUp 1.2s ease 0.4s forwards;
  opacity: 0;
}

.arrow-down {
  width: 12px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  display: inline-block;
  transform: rotate(45deg);
  animation: fadeArrow 1.8s infinite ease-in-out;
  opacity: 0;
}

.arrow-down:nth-child(1) { animation-delay: 0s; }
.arrow-down:nth-child(2) { animation-delay: 0.2s; }
.arrow-down:nth-child(3) { animation-delay: 0.4s; }

@keyframes fadeArrow {
  0%   { transform: translateY(0) rotate(45deg); opacity: 0; }
  30%  { opacity: 1; }
  60%  { transform: translateY(6px) rotate(45deg); opacity: 0.5; }
  100% { opacity: 0; transform: translateY(10px) rotate(45deg); }
}



/*Billetterie*/

  .card-profile { border-radius: .75rem; box-shadow: 0 4px 12px rgba(0,0,0,.05); }
  .card-profile .card-header { background: #b0873f; color: #fff; font-family: "Libre Baskerville", serif; font-size: 1.25rem; cursor: pointer; }
  .card-profile .chevron-icon { transition: transform .2s; }
  .card-profile .list-group-item { display: flex; justify-content: space-between; border: none; border-bottom: 1px solid #eee; padding: .75rem 1.25rem; }
  .card-profile .list-group-item:last-child { border-bottom: none; }
  .card-profile .btn-edit { border-radius: .5rem; }
    .card-profile .form-control {
  border-radius: 0.4rem;
  padding: 0.6rem 1rem;
  font-size: 1rem;
  box-shadow: none;
  border: 1px solid #ccc;
  transition: border-color 0.2s ease-in-out;
}

.card-profile .form-control:focus {
  border-color: #b0873f;
  box-shadow: 0 0 0 0.1rem rgba(176, 135, 63, 0.25);
}

.card-profile label {
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #133657;
}

.card-profile .list-group-item {
  flex-direction: column;
  align-items: flex-start;
  background-color: #fff;
}

.card-profile .btn-primary {
  background-color: #b0873f;
  border: none;
}

.card-profile .btn-primary:hover {
  background-color: #9b6f30;
}

.card-profile .btn i {
  vertical-align: baseline;
}
.card-profile .form-control {
  height: auto;
}
    .alert-danger {
  background-color: #f8d7da;
  color: #842029;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
}
.was-validated .form-control:invalid {
  border-color: #dc3545;
  background-image: none;
}
.was-validated .form-control:invalid:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
.concert-card {
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s;
  border: 2px solid transparent;
  border-radius: .25rem;
}
.concert-card.selected {
  border-color: #28a745; /* vert */
  box-shadow: 0 0 10px rgba(40,167,69, .5);
}