@import url('https://fonts.googleapis.com/css2?family=Elsie');

/* ------------------------------- */
/* BASE STYLES                      */
/* ------------------------------- */

html {
  height: 100%;
}

html, body {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-family: 'Elsie', Calibri, sans-serif;
  font-weight: 300; /* Light par défaut */
  background-color: white;
  color: black;
  min-height: 100vh;
}

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

main {
  flex: 1 0 auto;
}

.standard{
  margin-bottom: 2em;
  margin-top :0;
  white-space: pre-line;
  padding: 0;
}

h1 {
  color: rgb(215,154,16);
  text-align: center;
  font-weight: 400; /* Regular pour les titres */
}


h2 {
  font-size: 1rem;
  text-align: center;
  padding: 0.1rem;
  margin: 0;
  color: rgb(137,137,137);
  font-variant: small-caps;
  font-weight: 300; /* Light */
}

h3 {
  font-size: 1.2rem;
  text-align: center;
  color: black;
  margin: auto;
  padding: 0.5rem;
  font-weight: 400; /* Regular */
}

/* ------------------------------- */
/* BLOC AVEC TITRE (INDEX)         */
/* ------------------------------- */
.bloc-avec-titre {
  display: flex;
  align-items: stretch;
  justify-content: center;
  margin: auto;
  width: 70%;
  padding: 2em 0;
  gap: 1em;
  margin-top: 0;
}

.col-titre {
  display: flex;
  align-items: flex-start;   /* titre en haut */
  padding-top: 0;
  padding-right: 1.5em;
  border-right: 2px solid rgb(215,154,16);
}

.col-titre h1 {
  margin: 0;
}


.bloc-avec-titre img {
  width: 32%;
  min-width: 250px;
  max-width: 350px;
  height: auto;
  flex-shrink: 0;
}

.bloc-avec-titre .standard {
  margin: 0;
  margin-top: 0;
  text-align: justify;
  font-weight: 300; /* Light */
  font-size: 1rem;
  line-height: 1.5;
}

/* ------------------------------- */
/* BLOC PROJETS (TEXTE + IMAGE)    */
/* ------------------------------- */
.bloc {
  /*display: flex;*/
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 50%;
  margin: auto;
  gap: 1em;
}

.bloc-texte {
  flex: 1;
  text-align: justify;
  max-width: 100%;
  font-weight: 300; /* Light */
}

/* ------------------------------- */
/* TITRES - HIÉRARCHIE HARMONISÉE  */
/* ------------------------------- */
.titre {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 2.5rem;
  font-weight: 600; /* Regular */
  letter-spacing: 0.3em;
  margin-right: 1em;
  /*white-space: nowrap;*/
  position: relative;
  /*align-self: center;*/
  color: rgb(215,154,16);
  text-align: right;
}

.titre2 {
  font-size: 2rem;
  font-weight: 400; /* Regular */
  letter-spacing: 0.2em;
  margin: 0.2em auto 1em;
  white-space: nowrap;
  position: relative;
  align-self: center;
  text-align: center;
  padding: 0.2em 1em 0.2em 1em;
  color: rgb(215,154,16);
  border-bottom: 0.1rem solid rgb(215,154,16);
  
}


.titre5 {
  font-size: 2rem;
  font-weight: 500; /* Regular */
  letter-spacing: 0.3em;
  white-space: nowrap;
  text-align: left;
  position:relative;
  align-self: center;
  padding: 0;
  margin : 0;
}

/* ------------------------------- */
/* TEXTE ACCUEIL                    */
/* ------------------------------- */
.texte-accueil {
  text-align: center;
  width: 90%;
  margin: auto;
  margin-top: 2em;
  margin-bottom: 1em;
  font-size: 1.3rem;
  font-variant: small-caps;
  font-style: italic;
  letter-spacing: 0.05em;
  line-height: 1.8;
  font-weight: 400; /* Light */
}

/* ------------------------------- */
/* HEADER / MENU / HAMBURGER       */
/* ------------------------------- */
header {
  position: relative;
  width: 100%;
  background-color: white;
}

.logo {
  display: block;
  width: 100%;
  object-fit: cover;
  height: clamp(180px,34vh,380px);
  transition: height 0.01s linear, opacity 1s linear;
}


.liseret {
  height: 4px;
  background-color: rgb(215,154,16);
  margin-bottom: 0.2em;
}

.menu-desktop{

    position: sticky;
    top: 0;
    z-index: 1000;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;

    background: rgba(255,255,255,.94);
    backdrop-filter: blur(10px);

    border-top: none;
    border-bottom: 1px solid rgba(215,154,16,.10);

}

nav {
  font-variant: small-caps;
  font-size: 1.1rem;
  color: rgb(215,154,16);
  letter-spacing: 0.3em;
  font-weight: 400; /* Regular */
  text-align: center;
  margin: 0;
  padding: 0;
}

nav ul {
  margin: 0;
  padding: 0;
}

nav ul li {
  display: inline-block;
  margin: 0 1%;
  padding: 0.2%;
}


.menu-desktop ul{

    display:flex;
    justify-content:center;
    align-items:center;
    gap:40px;

    list-style:none;

    margin:0;
    padding:14px 20px;

}

.menu-desktop li{

    margin:0;
    padding:0;

}

.menu-desktop a{

    display:block;

    color:rgb(215,154,16);

    text-decoration:none;

    text-transform:uppercase;

    letter-spacing:.18em;

    transition:color .25s ease;

}

.menu-desktop a:hover{

    color:#a88c63;

}

.menu-desktop a{

    position:relative;

}

.menu-desktop a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-6px;

    width:0;

    height:2px;

    background:rgb(215,154,16);

    transition:width .25s ease;

}

.menu-desktop a:hover::after{

    width:100%;

}


.menu-desktop a.actif{

    color:rgb(215,154,16);

    position:relative;

}

.menu-desktop a.actif::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:100%;

    height:2px;

    background:rgb(215,154,16);

}

a {
  text-decoration: none;
  color: rgb(215,154,16);
}

.hamburger {
  display: none;
  position: fixed;
  border-radius: 3px;
  width: 40px;
  height: 40px;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  line-height: 1;
  color: rgba(255,255,255,0.6);
  background: rgba(215,154,16,0.6);
  z-index: 9999;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hamburger.active {
  background: rgba(215,154,16,0.6);
  color: rgba(255,255,255,0.6);
}

.menu-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9998;
}

.menu-mobile-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.menu-mobile-inner a {
  color: white;
  font-size: 1.8rem;
  font-variant: small-caps;
  font-weight: 300; /* Light */
  text-decoration: none;
}

.menu-mobile-inner a:hover {
  text-decoration: underline;
}

.reseaux-icones {
  display: flex;
  gap: 20px;
  align-items: center;
}

.reseaux-icones img {
  width: 32px;
  height: 32px;
  transition: transform 0.2s ease;
  filter: grayscale(1);
}

.reseaux-icones img:hover {
  transform: scale(1.15);
  filter: grayscale(0);
}

/* ------------------------------- */
/* OVERLAY CONTACT                  */
/* ------------------------------- */
.contact-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 10000;
  justify-content: center;
  align-items: center;
}

.contact-overlay .titre2 {
  font-size: 2rem;
  font-weight: 400; /* Regular */
  letter-spacing: 0.3em;
  margin: 0.5em auto;
  white-space: nowrap;
  position: relative;
  align-self: center;
  padding: 0;
}

.contact-overlay.active {
  display: flex;
}

.contact-box {
  background: rgba(255,255,255,0.9);
  color: black;
  padding: 2em;
  border-radius: 8px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  position: relative;
}

.contact-content {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  align-items: flex-start;
  font-weight: 300; /* Light */
}

.close-contact {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ------------------------------- */
/* GALLERIE                         */
/* ------------------------------- */
.masonry {
  column-count: 4;
  column-gap: 15px;
  padding: 20px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1em;
  width: 100%;
  display: block;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
}

.masonry-item img {
  width: 100%;
  display: block;
  object-fit: cover;
  min-height: 500px;
}

.masonry-item iframe {
  width: 100%;
  transform: scale(1.07);
  min-height: 500px;
  display: block;
}

@media (max-width: 1100px) {
  .masonry { column-count: 3; }
}
@media (max-width: 800px) {
  .masonry { column-count: 2; }
}
@media (max-width: 500px) {
  .masonry { column-count: 1; }
}

.masonry-item.size-small img,
.masonry-item.size-small iframe {
  min-height: 350px;
}

.masonry-item.size-medium img,
.masonry-item.size-medium iframe {
  min-height: 500px;
}

.masonry-item.size-large img,
.masonry-item.size-large iframe {
  min-height: 650px;
}

.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
}

.lightbox-content img,
.lightbox-content iframe {
  width: 100%;
  height: auto;
  max-height: 90vh;
  display: block;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  font-size: 2.5rem;
  color: white;
  cursor: pointer;
}

/* ------------------------------- */
/* PIED DE PAGE                     */
/* ------------------------------- */
#piedpage {
  flex-shrink: 0;
  font-size: 0.9rem !important;
  font-weight: 300;
  text-align: center;
  color: #6b655f;
  margin-top: 60px;
  padding: 30px 20px 22px;
  border-top: 1px solid rgba(215,154,16,.15);
  line-height: 1.55;
  background: #faf8f5;
  display: inline-block;
}

.lienpied {
 display: inline-block;
 color: white;
}

/* ------------------------------- */
/* RESPONSIVE LAPTOP / PETITS ÉCRANS */
/* ------------------------------- */
@media (min-width: 769px) and (max-width: 1024px) {
  
  
  .bloc-avec-titre .standard {
    font-size: 0.95rem;
  }
  
  
  .col-titre {
  border-bottom: 2px solid rgb(215,154,16);
  border-right: none;
}
  

.bloc-avec-titre {
    flex-direction: column;
    width: 90%;
    gap: 10px;
    padding: 1.5em 0;
    text-align: center;
  }

  .bloc-avec-titre img {
    width: 50%;
    max-width: 350px;
    margin: 0 auto;
  }

  .titre {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 1.4rem;
    letter-spacing: 0.15em;
    margin: 1rem 0;
  }

  .contenu-presentation {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1em;
  }

  .contenu-presentation img {
    width: 50%;
    max-width: 350px;
    margin: 0 auto 1.5em;
  }

  .contenu-presentation .standard {
    width: 100%;
    text-align: justify;
    line-height: 1.65;
  }


}


/* ------------------------------- */
/* RESPONSIVE MOBILE               */
/* ------------------------------- */
@media (max-width: 768px) {

  .logo {
    height: 15vh !important;
    transition: none !important;
  }
  
  body {
    min-height: 100vh;
    min-height: 100dvh; /* dvh = dynamic viewport height, mieux pour mobile */
  }
  
  main {  
   padding-top: 0; 
   flex: 1 0 auto; 
   min-height: auto;
  }
  
  
  .col-titre {
  border-bottom: 2px solid rgb(215,154,16);
  border-right: none;
  margin-bottom: 0.5em;
}

  nav, .standard, .texte-accueil {
    font-size: 0.9rem;
  }


  .menu-desktop {
    display: none;
  }

  .hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .titre {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 1.4rem;
    letter-spacing: 0.15em;
    margin: 1rem 0;
  }

  .titre2 {
    font-size: 1.4rem;
    letter-spacing: 0.15em;
    margin: 0em auto;
  }

  
  .titre5 {
    font-size: 1.4rem;
    letter-spacing: 0.15em;
    text-align: left;
    max-width: 90%;
    margon-bottom: 0.2rem;
  }


  h3 {
    font-size: 1rem;
  }

  .bloc-avec-titre {
    flex-direction: column;
    width: 90%;
    gap: 10px;
    padding: 1.5em 0;
    text-align: center;
  }

  .bloc-avec-titre img {
    width: 50%;
    max-width: 350px;
    margin: 0 auto;
  }

  .bloc {
    width: 80%;
    max-width: none;
    flex-direction: column;
    text-align: center;
    margin: 1.5em auto;
  }

  .bloc-texte {
    order: 2;
    width: 100%;
    max-width: none;
    margin: 0 auto;
    text-align: justify;
  }

  .texte-container {
    flex-direction: column;
  }

  .reseaux-icones img {
    width: 32px;
    height: 32px;
    transition: transform 0.2s ease;
    filter: grayscale(0);
  }

  .reseaux-icones img:hover {
    transform: scale(1.15);
    filter: grayscale(0);
  }

  #piedpage {
    margin-top: 70px;
    margin-bottom: 0;
    padding: 36px 16px 28px;
  }

}

/* ------------------------------- */
/* BOUTON SCROLL TO TOP             */
/* ------------------------------- */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: rgba(215,154,16,0.6);
  color: rgba(255,255,255,0.8);
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.2s ease;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  opacity: 1;
  transform: translateY(-3px);
}

/* Responsive mobile */
@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 2rem;
    line-height: 1;
    padding: 0;
  }
}


/* ------------------------------- */
/* INDEX – TEXTE QUI ENTOURE IMAGE */
/* ------------------------------- */

@media (min-width: 769px) {

  .contenu-presentation {
    display: block;
    margin-top: 1em;
  }


  .contenu-presentation .standard::first-letter {
    float: left;
    font-size: 4.2rem;
    line-height: 0.9;
    padding-right: 0.15em;
    padding-top: 0.1em;
    font-weight: 700;
    color: rgb(215,154,16);
  }

  .contenu-presentation img {
    float: left;
    width: 32%;
    max-width: 350px;
    margin: 0 2.5em 1.2em 1em;
  }

  .contenu-presentation .standard {
    line-height: 1.65;
    letter-spacing: 0.01em;
  }

  .contenu-presentation::after {
    content: "";
    display: block;
    clear: both;
  }

}

/* ==========================================================
   PAGE PROJETS V2
   ========================================================== */

.page-projets{

    max-width:1200px;
    margin:0 auto;
    padding:0 25px 80px;
}

.page-header{

    text-align:center;
    margin:40px auto 90px;
}

.intro-projets{

    max-width:700px;
    margin:20px auto 0;

    font-size:1.05rem;
    line-height:1.9;
    color:#666;
    font-style:italic;
}


/* ---------- PROJET ---------- */

.projet{

    display:grid;
    grid-template-columns:42% 1fr;

    gap:70px;

    align-items:center;

    margin-bottom:120px;

}

.projet:nth-child(even){

    grid-template-columns:1fr 42%;

}

.projet:nth-child(even) .projet__image{

    order:2;

}

.projet:nth-child(even) .projet__contenu{

    order:1;

}


/* ---------- IMAGE ---------- */

.projet__image img{

    width:100%;
    display:block;

    border-radius:10px;

    transition:.35s ease;

    box-shadow:0 18px 45px rgba(0,0,0,.15);

}

.projet:hover img{

    transform:scale(1.02);

}


/* ---------- TITRES ---------- */

.projet__titre{

    margin:0;

    font-size:2.2rem;

    color:rgb(215,154,16);

    letter-spacing:.04em;

}

.projet__style{

    margin-top:10px;

    text-transform:uppercase;

    letter-spacing:.25em;

    font-size:.78rem;

    color:#888;

}

.projet__style::after{

    content:"";

    display:block;

    width:70px;

    height:2px;

    margin-top:20px;

    /*background:rgb(215,154,16);*/

}


/* ---------- DESCRIPTION ---------- */

.projet__description{

    margin-top:35px;

}

.projet__description p{

    margin-bottom:18px;

    line-height:1.9;

}


/* ---------- EQUIPE ---------- */

.projet__equipe{

    margin-top:45px;

    padding-top:25px;

    border-top:1px solid rgba(215,154,16,.15);

}

.projet__equipe h3{

    margin-bottom:20px;

    font-size:.85rem;

    text-transform:uppercase;

    letter-spacing:.25em;

    color:rgb(215,154,16);

}


/* ---------- MEMBRES ---------- */

.membre{

    display:flex;

    justify-content:space-between;

    gap:20px;

    padding:10px 0;

    border-bottom:1px solid rgba(0,0,0,.05);

}

.membre:last-child{

    border-bottom:none;

}

.nom{

    font-weight:700;

}

.role{

    color:#777;

    text-align:right;

}

.principal .nom{

    color:rgb(215,154,16);

}


/* ---------- RESPONSIVE ---------- */

@media (max-width:900px){

.projet{

    display:block;

    margin-bottom:70px;

}

.projet__image{

    margin-bottom:30px;

}

.projet__titre{

    font-size:1.8rem;

}

.membre{

    display:block;

}

.role{

    display:block;

    margin-top:4px;

    text-align:left;

}

}

/* ==========================================================
   PAGE CONCERTS
========================================================== */

.page-concerts{

    max-width:1100px;
    margin:auto;
    padding:0 25px 80px;

}

.concert-groupe{

    margin:90px 0;

    padding-bottom:70px;

    border-bottom:1px solid rgba(215,154,16,.15);

}

.concert-groupe:last-child{

    border-bottom:none;

}

.concert-header{

    margin-bottom:45px;

}

.concert-titre{

    font-size:2rem;

    font-weight:300;

    color:rgb(215,154,16);

    letter-spacing:.08em;

    text-transform:uppercase;

    margin:0;

}

.concert-sous-titre{

    margin:0 0 30px;

    font-size:1rem;

    text-transform:uppercase;

    letter-spacing:.18em;

    color:rgb(215,154,16);

}

.concert-timeline{

    position:relative;

    padding-left:30px;

}

.concert-timeline::before{

    content:"";

    position:absolute;

    left:8px;

    top:0;

    bottom:0;

    width:2px;

    background:rgba(215,154,16,.18);

}

.concert-item{

    position:relative;

    display:flex;

    align-items:flex-start;

    gap:25px;

    margin-bottom:30px;

}

.concert-point{

    width:14px;

    height:14px;

    border-radius:50%;

    background:rgb(215,154,16);

    margin-left:-29px;

    margin-top:7px;

    flex-shrink:0;

    box-shadow:0 0 0 6px white;

}

.concert-point-passe{

    background:#c8c8c8;

}

.concert-contenu{

    flex:1;

}

.concert-date{

    font-weight:600;

    color:rgb(215,154,16);

    margin-bottom:6px;

    letter-spacing:.04em;

}

.concert-lieu{

    color:#444;

    line-height:1.7;

    font-size:1rem;

}

.concert-item-futur .concert-date{

    font-size:1.08rem;

}

.concert-toggle{

    margin-top:30px;

    padding:12px 22px;

    border:1px solid rgba(215,154,16,.25);

    border-radius:30px;

    background:white;

    color:rgb(215,154,16);

    font-size:.95rem;

    cursor:pointer;

    transition:.25s;

}

.concert-toggle:hover{

    background:rgb(215,154,16);

    color:white;

}

.concert-passes{

    margin-top:45px;

}

.concert-timeline-passee{

    margin-top:35px;

    opacity:.82;

}

.hidden{

    display:none;

}

/* ===========================
   MOBILE
=========================== */

@media (max-width:768px){

.page-concerts{

    padding:0 20px 50px;

}

.concert-groupe{

    margin:60px 0;

}

.concert-titre{

    font-size:1.6rem;

}

.concert-item{

    gap:18px;

}

.concert-date{

    font-size:.95rem;

}

.concert-lieu{

    font-size:.95rem;

}

.concert-toggle{

    width:100%;

}

}

/* ==========================================================
   GALERIE V2
========================================================== */

.page-galerie{

    max-width:1400px;
    margin:auto;
    padding:0 25px 80px;

}

/*=========================
MASONRY
=========================*/

.masonry{

    margin-top:50px;

}

.masonry-item{

    position:relative;

    overflow:hidden;

    border-radius:16px;

    cursor:pointer;

    background:#f5f5f5;

    transition:
        transform .35s ease,
        box-shadow .35s ease;

}

.masonry-item:hover{

    transform:translateY(-6px);

    box-shadow:0 18px 45px rgba(0,0,0,.12);

}

.masonry-item img{

    display:block;

    width:100%;

    transition:
        transform .6s ease,
        filter .5s ease;

    filter:saturate(.95);

}

.masonry-item:hover img{

    transform:scale(1.05);

    filter:saturate(1.05);

}

.masonry-item iframe{

    display:block;

    width:100%;

    border:none;

}

/*=========================
OVERLAY
=========================*/

.gallery-overlay{

    position:absolute;

    inset:0;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(0,0,0,.18);

    opacity:0;

    transition:.35s;

    backdrop-filter:blur(1px);

}

.gallery-overlay span{

    color:white;

    padding:10px 18px;

    border:1px solid rgba(255,255,255,.4);

    border-radius:30px;

    font-size:.9rem;

    letter-spacing:.08em;

    backdrop-filter:blur(8px);

}

.masonry-item:hover .gallery-overlay{

    opacity:1;

}

/*=========================
VIDEOS
=========================*/

.masonry-item.video::before{

    content:"▶";

    position:absolute;

    top:14px;

    right:14px;

    width:38px;

    height:38px;

    border-radius:50%;

    background:rgba(255,255,255,.92);

    color:rgb(215,154,16);

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:1rem;

    z-index:5;

    box-shadow:0 5px 20px rgba(0,0,0,.15);

}

/*=========================
APPARITION
=========================*/

.reveal{

    opacity:0;

    transform:translateY(35px);

    transition:
        opacity .8s ease,
        transform .8s ease;

}

.reveal.visible{

    opacity:1;

    transform:none;

}

/*=========================
LIGHTBOX
=========================*/

.lightbox-overlay{

    position:fixed;

    inset:0;

    background:rgba(20,20,20,.45);

    backdrop-filter:blur(14px);

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:99999;

}

.lightbox-overlay.active{

    opacity:1;

    visibility:visible;

}

.lightbox-content{

    max-width:90vw;

    max-height:90vh;

    animation:zoomLightbox .35s ease;

}

.lightbox-content img{

    display:block;

    max-width:100%;

    max-height:90vh;

    border-radius:12px;

    box-shadow:0 20px 60px rgba(0,0,0,.35);

}

.lightbox-content iframe{

    width:min(90vw,1100px);

    height:min(50vw,620px);

    border:none;

    border-radius:12px;

}

/*=========================
BOUTONS
=========================*/

.lightbox-close,

.lightbox-prev,

.lightbox-next{

    position:absolute;

    width:54px;

    height:54px;

    border:none;

    border-radius:50%;

    background:rgba(255,255,255,.18);

    backdrop-filter:blur(8px);

    color:white;

    font-size:1.5rem;

    cursor:pointer;

    transition:.25s;

}

.lightbox-close:hover,

.lightbox-prev:hover,

.lightbox-next:hover{

    background:rgba(255,255,255,.3);

}

.lightbox-close{

    top:35px;

    right:35px;

}

.lightbox-prev{

    left:35px;

    top:50%;

    transform:translateY(-50%);

}

.lightbox-next{

    right:35px;

    top:50%;

    transform:translateY(-50%);

}

/*=========================
ANIMATION
=========================*/

@keyframes zoomLightbox{

from{

opacity:0;

transform:scale(.92);

}

to{

opacity:1;

transform:scale(1);

}

}

/*=========================
MOBILE
=========================*/

@media(max-width:768px){

.page-galerie{

padding:0 15px 40px;

}

.gallery-overlay{

display:none;

}

.lightbox-prev,

.lightbox-next{

display:none;

}

.lightbox-close{

top:15px;

right:15px;

width:44px;

height:44px;

}

}

/* ==========================================================
   PAGE ACCUEIL - Ajustement éditorial V4
   Mise en valeur artiste / concerts
   Compatible structure existante
   ========================================================== */


/* ==========================================================
   CITATION D'INTRODUCTION
   ========================================================== */


.texte-accueil.citation {

    width:70%;
    max-width:900px;

    margin:3em auto 4em;

    text-align:center;

    font-size:1.15rem;

    font-style:italic;

    line-height:1.8;

    color:rgb(90,90,90);

    letter-spacing:.03em;

}


.texte-accueil.citation:first-letter {

    color:rgb(215,154,16);

    font-size:1.8em;

}



/* ==========================================================
   GROUPES MUSICAUX
   ========================================================== */


.groupes-accueil {

    display:flex;

    gap:2em;

    margin:2em 0 2.5em;

}



.groupes-accueil div {

    flex:1;

    border-left:1px solid rgb(215,154,16);

    padding-left:1em;

    line-height:1.5;

}



.groupes-accueil strong {

    color:rgb(215,154,16);

    letter-spacing:.12em;

    font-weight:500;

}

/* ==========================================================
   CONCERTS A VENIR
   ========================================================== */


.concerts-avenir {

    width:90%;

    max-width:800px;

    margin:auto;

}

.concert-card {

    display:flex;

    align-items:center;

    justify-content:center;

    gap:2em;

    padding:1.5em 0;

    border-bottom:1px solid rgba(215,154,16,.25);

}

.concert-card:last-child {

    border-bottom:none;

}

/* Date */


.concert-date {

    min-width:80px;

    text-align:center;

    color:rgb(215,154,16);

    text-transform:uppercase;

    letter-spacing:.12em;

    font-size:.9rem;

}

.concert-date span {

    display:block;

    font-size:2.2rem;

    line-height:1;

    font-weight:500;

}

/* Informations concert */


.concert-info {

    flex:1;

    text-align:center;

}

.concert-info h2 {

    margin:0 0 .4em;

    font-size:1.15rem;

    font-weight:500;

    letter-spacing:.08em;

    color:rgb(215,154,16);

}

.concert-info p {

    margin:0;

    color:rgb(90,90,90);

}

/* ==========================================================
   RESPONSIVE MOBILE
   ========================================================== */


@media(max-width:700px){


    .texte-accueil.citation {

        width:90%;

        margin-top:2em;

        font-size:1rem;

    }

    .groupes-accueil {

        flex-direction:column;

        gap:1.5em;

    }

    .concert-card {

        flex-direction:column;

        gap:.8em;

        padding:1.5em 0;

    }

    .concert-date {

        min-width:auto;

    }

    .concert-date span {

        font-size:1.8rem;

    }

    .concert-info {

        text-align:center;

    }


}

.texte-accueil.citation q {

    quotes:"«" "»";

}


/*==================================================
COURS
==================================================*/

.page-cours{

max-width:900px;

margin:auto;

padding:0 20px 80px;

}

.carte-cours{

background:white;

border-radius:18px;

padding:45px;

box-shadow:0 10px 35px rgba(0,0,0,.06);

text-align:center;

}


.carte-cours h2{

font-weight:400;

font-size:1.8rem;

margin-bottom:25px;

color:rgb(215,154,16);

}

.carte-cours p{

max-width:620px;

margin:auto;

line-height:1.8;

}

.tarif-cours{

margin:35px auto;

padding:14px 30px;

display:inline-block;

border-top:1px solid rgba(215,154,16,.2);

border-bottom:1px solid rgba(215,154,16,.2);

font-size:1.4rem;

letter-spacing:.08em;

color:rgb(215,154,16);

}

.contact-cours{

margin-top:15px;

margin-bottom:35px;

}

.bouton-cours{

display:inline-block;

padding:14px 34px;

border-radius:40px;

background:rgb(215,154,16);

color:white;

transition:.3s;

}

.bouton-cours:hover{

transform:translateY(-2px);

box-shadow:0 8px 20px rgba(0,0,0,.12);

}

/*==================================================
FOOTER
==================================================*/

/* Logo + nom */

.footer-logo{

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    gap:8px;

    margin-bottom:20px;

    text-align:center;

}

.footer-logo div{

    display:flex;

    flex-direction:column;

    align-items:center;

}

.footer-logo strong{

    display:block;

    font-size:1.05rem;
    font-weight:500;

    color:#4f4841;

    letter-spacing:.04em;
    margin:0;

    line-height:1.2;

}

.footer-logo span{

    color:#857053;
    font-size:.92rem;
    letter-spacing:.08em;
    text-transform:uppercase;
    margin-top:2px;

    line-height:1.2;

}

/* Monogramme */

.footer-p{

    width:56px;
    height:56px;

    object-fit:contain;
    flex-shrink:0;

}

/* Liens */

.footer-links{

    margin:16px 0 10px;

}

.footer-links span{

    margin:0 12px;

    color:#b7aa97;

}

/* IMPORTANT : on force la couleur des liens du footer */

#piedpage a,
#piedpage .lienpied{

    color:#857053;
    text-decoration:none;

    transition:
        color .25s ease,
        opacity .25s ease;

}

#piedpage a:hover,
#piedpage .lienpied:hover{

    color:#5f4f39;
    opacity:1;

}

/* Crédit */

.footer-credit{

    margin-top:10px;

    font-size:.88rem;

    color:#8b8379;

}

/* Mobile */

@media (max-width:768px){

    .footer-logo{

        flex-direction:column;
        gap:12px;

    }

    .footer-links{

        display:flex;
        flex-direction:column;
        gap:6px;

    }

    .footer-links span{

        display:none;

    }

}
/*==================================================
404
==================================================*/

.page404{

min-height:60vh;

display:flex;

justify-content:center;

align-items:center;

padding:40px;

}

.erreur404{

text-align:center;

max-width:500px;

}

.erreur404 h1{

font-size:5rem;

margin:20px 0 10px;

color:rgb(215,154,16);

}

.erreur404 h2{

font-weight:400;

margin-bottom:20px;

}

.contact-logo{
    width:72px;
    height:72px;
    margin:0 auto 18px;
    display:block;
    opacity:.95;
}


/*==================================================
MENU STICKY - IDENTITÉ
==================================================*/

/* Logo */

.menu-brand{

    width:42px;
    height:42px;

    display:flex;
    justify-content:center;
    align-items:center;

    flex-shrink:0;

    opacity:0;

    transform:scale(.85);

    transition:
        opacity .35s ease,
        transform .35s ease;

}


.menu-logo{

    display:block;

    width:40px;
    height:40px;

    object-fit:contain;

    transform:translateY(0px);

}



/* Trait vertical */

.menu-separateur{

    width:1px;
    height:24px;

    background:rgba(215,154,16,.18);

    opacity:0;

    transition:opacity .35s ease;

}

/* Apparition lorsque la bannière disparaît */

.menu-desktop.logo-visible .menu-brand{

    opacity:1;

    transform:scale(1);

}

.menu-desktop.logo-visible .menu-separateur{

    opacity:1;

}

/* Menu */

.menu-desktop ul{

    margin:0;
    padding:0;

}

.menu-desktop.page-interne .menu-brand {
    opacity:0.85;
    transform:scale(1);
}

.menu-desktop.page-interne .menu-brand:hover {
    opacity:1;
}




/* Mobile */

@media (max-width:768px){

    .menu-brand,
    .menu-separateur{
    display:none;
    }
    
     .menu-desktop {
        display:none;
    }

}

/* ==========================================================
PAGE LIVRE D'OR
========================================================== */

.livre-or{

max-width:1100px;

margin:0 auto;

padding:0 25px 80px;

}

/* ----------------------------------------------------------
GRILLE DES TÉMOIGNAGES
---------------------------------------------------------- */

.livre-or-cartes{

display:grid;

grid-template-columns:
    repeat(2, minmax(0, 1fr));

gap:35px;

}

/* ----------------------------------------------------------
CARTE
---------------------------------------------------------- */

.livre-or-carte{

overflow:hidden;

background:white;

border:1px solid rgba(0,0,0,.06);

border-radius:14px;

box-shadow:
    0 10px 35px rgba(0,0,0,.07);

transition:
    transform .25s ease,
    box-shadow .25s ease;

}

.livre-or-carte:hover{

transform:translateY(-3px);

box-shadow:
    0 15px 40px rgba(0,0,0,.10);

}

/* ----------------------------------------------------------
PHOTO
---------------------------------------------------------- */

.livre-or-photo-wrapper{

width:100%;

height:230px;

overflow:hidden;

}

.livre-or-photo{

width:100%;

height:100%;

display:block;

object-fit:cover;

transition:transform .4s ease;

}

.livre-or-carte:hover .livre-or-photo{

transform:scale(1.03);

}

/* ----------------------------------------------------------
CONTENU
---------------------------------------------------------- */

.livre-or-contenu{

padding:30px;

}

/* ----------------------------------------------------------
TYPE DE PRESTATION
---------------------------------------------------------- */

.livre-or-prestation{

display:inline-block;

margin-bottom:14px;

padding:6px 12px;

border-radius:20px;

background:rgba(215,154,16,.10);

color:rgb(180,125,10);

font-size:.78rem;

font-weight:400;

letter-spacing:.08em;

text-transform:uppercase;

}

/* ----------------------------------------------------------
ÉVÉNEMENT
---------------------------------------------------------- */

.livre-or-evenement{

margin:0 0 10px;

padding:0;

color:rgb(215,154,16);

font-size:1.45rem;

font-weight:400;

line-height:1.35;

text-align:left;

font-variant:normal;

}

/* ----------------------------------------------------------
LIEU
---------------------------------------------------------- */

.livre-or-lieu{

margin-bottom:30px;

color:#777;

font-size:.90rem;

line-height:1.6;

}

/* ----------------------------------------------------------
COMMENTAIRES
---------------------------------------------------------- */

.livre-or-commentaires{

display:flex;

flex-direction:column;

gap:28px;

}

.livre-or-temoignage{

position:relative;

}

.livre-or-commentaire{

position:relative;

margin:0;

padding:0 0 0 24px;

border-left:3px solid rgba(215,154,16,.35);

color:#444;

font-size:.98rem;

line-height:1.75;

font-style:italic;

}

/*

* Grand guillemet décoratif.
  */

.livre-or-commentaire::before{

content:"“";

position:absolute;

left:-11px;

top:-19px;

color:rgb(215,154,16);

background:white;

font-size:2.7rem;

line-height:1;

font-style:normal;

}

/* ----------------------------------------------------------
AUTEUR
---------------------------------------------------------- */

.livre-or-auteur{

margin-top:8px;

padding-left:27px;

color:#777;

font-size:.84rem;

line-height:1.5;

}

/* ----------------------------------------------------------
AUCUN TÉMOIGNAGE
---------------------------------------------------------- */

.livre-or-vide{

padding:50px 20px;

text-align:center;

color:#777;

font-style:italic;

}

/* ==========================================================
RESPONSIVE
========================================================== */

@media (max-width:900px){

.livre-or-cartes{

    grid-template-columns:1fr;

    gap:25px;

}

}

@media (max-width:768px){

.livre-or{

    padding:0 20px 50px;

}


.livre-or-contenu{

    padding:25px 22px;

}


.livre-or-photo-wrapper{

    height:200px;

}


.livre-or-evenement{

    font-size:1.25rem;

}


.livre-or-commentaire{

    font-size:.94rem;

    line-height:1.7;

}

}

/* ==========================================================
   PAGE BLOG
========================================================== */

.page-blog{

    max-width:1100px;

    margin:auto;

    padding:0 25px 80px;

}


/* ==========================================================
   CARTES
========================================================== */

.blog-cartes{

    display:flex;

    flex-direction:column;

    gap:70px;

}


/* ==========================================================
   ARTICLE
========================================================== */

.blog-carte{

    display:grid;

    grid-template-columns:38% 1fr;

    gap:55px;

    align-items:start;

    padding-bottom:70px;

    border-bottom:1px solid rgba(215,154,16,.18);

}


.blog-carte:last-child{

    border-bottom:none;

}


/* ==========================================================
   IMAGE
========================================================== */

.blog-image-wrapper{

    width:100%;

    overflow:hidden;

    border-radius:10px;

}


.blog-image{

    width:100%;

    aspect-ratio:4 / 3;

    object-fit:cover;

    display:block;

    transition:transform .4s ease;

}


.blog-carte:hover .blog-image{

    transform:scale(1.025);

}


/* ==========================================================
   CONTENU
========================================================== */

.blog-contenu{

    min-width:0;

}


/* ==========================================================
   DATE + CATÉGORIE
========================================================== */

.blog-meta{

    display:flex;

    flex-wrap:wrap;

    align-items:center;

    gap:15px;

    margin-bottom:15px;

}


.blog-date{

    font-size:.85rem;

    color:#888;

    letter-spacing:.08em;

}


.blog-categorie{

    font-size:.75rem;

    text-transform:uppercase;

    letter-spacing:.18em;

    color:rgb(215,154,16);

}


/* ==========================================================
   TITRE
========================================================== */

.blog-titre{

    margin:0 0 22px;

    padding:0;

    font-size:2rem;

    line-height:1.25;

    text-align:left;

    color:rgb(215,154,16);

    font-weight:400;

}


/* ==========================================================
   RÉSUMÉ
========================================================== */

.blog-resume{

    margin:0 0 25px;

    font-size:1.05rem;

    line-height:1.8;

    color:#555;

    font-style:italic;

}


/* ==========================================================
   ARTICLE
========================================================== */

.blog-article{

    font-size:1rem;

    line-height:1.9;

    color:#333;

    white-space:pre-line;

}


.blog-article br{

    line-height:1.5;

}


/* ==========================================================
   PAGE VIDE
========================================================== */

.blog-vide{

    text-align:center;

    padding:60px 20px;

    color:#777;

    font-style:italic;

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width:768px){

    .page-blog{

        padding:0 20px 50px;

    }


    .blog-cartes{

        gap:50px;

    }


    .blog-carte{

        display:block;

        padding-bottom:50px;

    }


    .blog-image-wrapper{

        margin-bottom:30px;

    }


    .blog-titre{

        font-size:1.6rem;

        margin-bottom:18px;

    }


    .blog-resume{

        font-size:1rem;

        line-height:1.7;

    }


    .blog-article{

        font-size:.95rem;

        line-height:1.8;

    }


    .blog-meta{

        gap:10px;

    }

}