
/*--------------------------------------------------------------------------------------------------------*/
/*GENERAL */
/*--------------------------------------------------------------------------------------------------------*/

/*TYPOGRAPHIES */ 

@import url('https://fonts.googleapis.com/css2?family=Trade+Winds&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');


* {
    margin: 0;
    padding: 0;
}

/* On donne les fonts aux titres et aux paragraphes  */
body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
}

h1 {
    font-family: 'Trade Winds', cursive;
}

h2 {
    font-family: 'Open Sans', sans-serif;
    color: #EA6B38;
}

p {
    font-family: 'Open Sans', sans-serif;
}

/* Boutons retour pour les évènements et la partie admin */

.boutonRetour {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #EA6B38;
    color: white;
    font-size: 40px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50%;
    cursor: pointer;
}

.boutonRetour:hover {
    background-color: #EA6B38;
}

/*Bannières */ 
.section-bannière {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 3rem;
}

.section-bannière img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.section-bannière h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Trade Winds";
    font-size: 3rem;
    font-weight: 1000;
    color: white;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    width: 100%;
    text-align: center;
}

/* Séparateurs */

.separateurGauche, .separateurDroite {
    height: 6px;
    background: linear-gradient(to right, #EA6B38, #ffffff);
    margin: 30px 0;
    width: 70%;
}

.separateurDroite {
    margin-left: auto;
    background: linear-gradient(to right, #ffffff, #EA6B38);
}

/* Boutons classiques */

.conteneur-bouton-rse {
    text-align: center;
    margin-bottom: 3rem;
}

.bouton-rse,
.bouton-plus, .boutonAccueil {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 1rem;
    background-color: #000000;
    color: #fff;
    border: none;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.bouton-rse:hover,
.bouton-plus:hover, .boutonAccueil:hover {
    background-color: #EA6B38;
    transform: scale(1.1);
}

/*--------------------------------------------------------------------------------------------------------*/
/* HEADER */
/*--------------------------------------------------------------------------------------------------------*/

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    padding: 20px 120px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    height: 80px;
    z-index: 1000;

    /* z-index pour que le header reste au-dessus des autres éléments vu qu'il est en position fixe*/
}

/* ajout de padding au body pour compenser le header fixe */
main {
    padding-top: 120px;
}

.logo-header {
    display: flex;
    align-items: center;
}

/* taille du logo du header */
.logo {
    height: 52px;
    width: auto;
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

nav ul li a {
    text-decoration: none;
    color: #343330;
    font-weight: 500;
    padding: 10px 15px;
    display: block;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color : #EA6B38;
}
 
.nav-user img{
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

/* menu déroulant */
.menu-deroulant {
    position: relative;
}
/* taille et marge pour la flèche qui indique le menu deroulant */
.menu-deroulant-arrow {
    font-size: 10px;
    margin-left: 5px;
}

.menu-deroulant img{
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #EA6B38;
}

/* menu deroulant avec un z-index pour qu'il reste au-dessus du reste (il est cache quand il n'y a pas de survol)*/
.menu-deroulant-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* ombre pour donner du volume */
    min-width: 200px;
    z-index: 1000;
    flex-direction: column;
    gap: 0;
}

/* affichage du menu deroulant au survol */
.menu-deroulant:hover .menu-deroulant-menu {
    display: flex;
}

.menu-deroulant-menu li {
    width: 100%;
}

/* taille et marge pour les liens du menu deroulant */
.menu-deroulant-menu li a {
    padding: 12px 20px;
    white-space: nowrap;
    transition: 0.3s;
}

.menu-deroulant-menu li a:hover {
    background-color: #343330;
    color: #ffffff;
}


/* -------------------------------------------------------------------------------------------------------- */
/* FOOTER */
/* -------------------------------------------------------------------------------------------------------- */
footer {
    background-color: #ffffff;
    color: #343330;
    padding: 50px 0 0;
    margin-top: 50px;
}

/* disposition du contenu du footer */
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    gap: 30px;
}


.logo-container {
    display: flex;
    align-items: center;
}

.logo-container img {
    height: 40px;
    width: auto;
}
/* un menu simple pour le footer */
.footer-menu {
    display: flex;
    align-items: center;
}

/* disposition pour la liste du menu */
.footer-menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
}

.footer-menu ul li {
    margin-bottom: 0;
}


.footer-menu ul li a {
    color: #343330;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* changement de couleur au survol */
.footer-menu ul li a:hover {
    color: #EA6B38;
}

.icones-reseaux {
    display: flex;
    gap: 20px;
    flex-direction: row;
}

/* liens pour les réseaux sociaux */
.icones-reseaux a {
    text-decoration: none;
    transition: all 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* icones pour les réseaux sociaux */
.icones-reseaux a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* scale au survol */
.icones-reseaux a:hover {
    transform: scale(1.1);
}

/* disposition pour les droits d'auteur */
.copyright {
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(52, 51, 48, 0.08);
    background: transparent;
}

.copyright p {
    font-size: 14px;
    color: #343330;
}

/* Styles pour la page Mentions légales */
.mentions-legales {
    max-width: 900px;
    margin: 100px auto;
    padding: 40px 28px;
    background: #ffffff;
    color: #343330;
    line-height: 1.7;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}

.mentions-legales h1 {
    font-family: "Trade Winds", cursive;
    font-size: 2.4rem;
    color: #EA6B38;
    margin-bottom: 0.5rem;
    text-align: center;
}

.mentions-legales h2 {
    font-size: 1.2rem;
    color: #EA6B38;
    margin-top: 1.2rem;
    margin-bottom: 0.6rem;
}

.mentions-legales p,
.mentions-legales li {
    font-size: 1rem;
    color: #343330;
}

.mentions-legales a {
    color: #EA6B38;
    text-decoration: underline;
}

@media only screen and (max-width: 900px) {
    .mentions-legales {
        padding: 20px;
        margin: 1rem;
    }
    .mentions-legales h1 {
        font-size: 1.8rem;
    }
}

/*--------------------------------------------------------------------------------------------------------*/
/* RESPONSIVE HEADER ET FOOTER */
/*--------------------------------------------------------------------------------------------------------*/

/* Menu burger pour la version mobile responsive */

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.burger span {
    width: 25px;
    height: 3px;
    background: #000;
    border-radius: 2px;
}

/* media only screen and queries qui 900mettent le responsive */

@media only screen and (max-width: 900px) {

    .burger {
        display: flex;
        position: absolute;
        top: 50px;
        right: 32px;
    }

    /* menu qui est caché de base */
    nav {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
    }

    /* Menu visible quand le js ajoute .open */
    nav.open {
        display: flex;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
        padding: 10px 20px;
    }

    .menu-deroulant-menu {
        display: none;
        flex-direction: column;
        padding-left: 10px;
    }
}

/* Footer responsive */

@media only screen and (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        text-align: center;
    }

    .footer-menu ul {
        flex-direction: column;
        gap: 10px;
    }

    .icones-reseaux {
        justify-content: center;
    }
}


/*------------------------------------------------------------------------*/
/* STYLE PAGE PROGRAMMATION */
/*------------------------------------------------------------------------*/

/* Liste des cartes */

.listeCartes {
    margin-top: 4rem;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

/* Carte avec image à gauche et texte à droite */

.carteEvenement {
    display: grid;
    grid-template-columns: 1fr 2fr;
    max-width: 1100px;
    width: 100%;
    margin: 10px auto;
    margin-bottom: 50px;
    background-color: #EA6B38;
    color: white;
    font-family: "Open Sans", sans-serif;
    font-style: italic;
    border-radius: 1rem;
}


/*Zone avec image et infos clés*/

.carteGauche {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 15px;
}

.conteneurVisuel {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    border-radius: 0.6rem;
}

.visuelArtiste {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logoCarte {
    position: absolute;
    top: -8px;
    left: -8px;
    width: 100px;
    z-index: 10;
    padding: 0.7rem;
    background-color: #EA6B38;
    border-radius: 0.4rem;
}

.nomArtiste {
    position: absolute;
    bottom: -5px;
    left: -5px;
    background-color: #EA6B38;
    color: white;
    padding: 6px 12px;
    border-radius: 0.4rem;
    font-family: "Trade Winds";
    font-size: 2rem;
    margin: 0;
    z-index: 5;
}

.infosCles {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    padding: 0;
    font-size: 1rem;
}

.infosCles li {
    border: solid 0.1rem white;
    padding: 5px;
    border-radius: 0.4rem;
}

.infosCles li.genre {
    border-radius: 0.6rem;
    font-weight: bold;
    font-size: 1.2rem;
    padding: 3px 6px;
}

/*Zone avec le texte et prix*/

.carteDroite {
    position: relative;
    padding: 15px 20px 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ouverture {
    font-size: 1rem;
    font-weight: 300;
    font-style: normal;
}

.description {
    display: flex;
    flex-direction: column;
    gap: 8px;
    line-height: 1.3;
    font-size: 1rem;
}

.signature {
    font-weight: 1000;
    text-transform: uppercase;
}

.prix {
    position: absolute;
    bottom: -20px;
    right: 20px;
    font-size: 2rem;
    font-weight: 1000;
    background-color: #EA6B38;
    color: white;
    padding: 8px 18px;
    border: solid 0.5rem white;
    border-radius: 3rem;
}

/* Responsive */

@media only screen and (max-width: 900px) {
    .carteEvenement {
        display: flex;
        flex-direction: column;
    }

    .carteEvenement.inverse .carteGauche {
        order: 1;
    }

    .carteEvenement.inverse .carteDroite {
        order: 2;
    }

    .prix {
        align-self: center;
    }
}


/*-------------------------------------------------------------------------*/
/* STYLE PAGE ACCUEIL */ 
/*-------------------------------------------------------------------------*/

/* Général pour la page */ 

.banniere {
    max-width: 100%;
}

.titresAccueil {
    font-family: "Trade Winds";
    font-size: 3rem;
    font-weight: 1000;
    text-align: center;
    margin-top: 5rem;
}

.boutonCentre {
    display: flex;
    justify-content: center;
}

/* Programmation de l'accueil */ 

.carteAccueil {
    display: flex;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    color: white;
    font-family: "Open Sans";
    font-style: italic;
    border-radius: 1rem;
    justify-content: center;
}

.carteGaucheAccueil {
    display: flex;
    flex-direction: column;
    width: 300px;
    gap: 10px;
    padding: 15px;
    background-color: #EA6B38;
    border-radius: 1rem;
}

.listeCartesAccueil {
    max-width: 1200px;   
    margin: 4rem auto;        
    padding: 0 20px;
    display: flex;
    gap: 30px;
    justify-content: space-between;
}
@media only screen and (max-width: 900px) {
.listeCartesAccueil {
   flex-direction: column;
}
}
/* Article Tannerie de l'accueil */ 

.tannerieAccueil {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    margin: 40px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.articleTannerieGauche {
    flex: 1 1 400px;
}

.articleTannerieGauche .imageTannerie {
    width: 90%;
    height: auto;
    border-radius: 1rem;
    display: block;
}

.articleTannerieDroite {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.texteTannerie {
    font-family: "Open Sans";
    font-size: 1.1rem;
    color: #343330;
}

/* Services tannerie accueil */ 

.service {
    margin: 100px 100px 100px 100px !important;
}

.listeServices {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.carteService {
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-family: "Open Sans";
}

.imageService {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.titreService {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    color: #343330;
}

.texteService {
    font-size: 1rem;
    line-height: 1.4;
    color: #343330;
    flex-grow: 1;
}

/* Galerie accueil */

.galerie {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.galerie img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s;
}

/* Partenaires de l'accueil */ 

.partenaires {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.partenaires img {
    height: 80px;
    width: auto;
    transition: transform 0.6s;
    object-fit: contain;
}

.galerie img:hover, .partenaires img:hover {
    transform: scale(1.05);
    filter: brightness(85%);
}

/* Responsive Accueil */ 

@media only screen and (max-width: 900px) {
    .listeCartesAccueil, .listeServices, .galerie {
        grid-template-columns: 1fr;
    }

    .partenaires {
        flex-direction: column;
    }

    .partenaires img {
        height: 60px;
    }
}


/*-------------------------------------------------------------------------*/
/* Filtre programmation */
/*-------------------------------------------------------------------------*/

.filtre {
    margin: 16px auto;
    max-width: 1100px;
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    font-family: "Open Sans", sans-serif;
}
.filtre label { 
    font-weight:700; 
    margin-right:6px; 
}

.filtre select, .filtre input[type="search"] {
    padding:8px 10px;
    border:1px solid #ddd;
    border-radius:8px;
    background:#fff;
    color:#343330;
}
.filtre .btn { 
    background:#EA6B38;
    color:#fff; padding:8px 12px;
    padding:8px 12px;
    border-radius:8px;
    text-decoration:none;
    border:none;
    font-weight:700;
}

/*-------------------------------------------------------------------------*/
/* Cartes évènement détaillées */
/*-------------------------------------------------------------------------*/

.enteteDate {
    font-family: "Open Sans";
    font-weight: 800;
    font-size: 1.1rem;
    color: #343330;
    margin-bottom: 15px;
}


.enteteDate .barres {
    color: #333333;
    margin-right: 10px;
    letter-spacing: -2px;
}


/* Bloc accessibilité pmr et tarifs */


.blocInfosSup {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-style: normal;
}


.infoPmr {
    font-weight: 600;
}


.grillePrixDetail {
    text-align: right;
    padding-top: 30px;
}


/* Bouton billetterie */


.boutonBilletterie {
    display: inline-block;
    align-self: center;
    background-color: white;
    color: #343330;
    text-decoration: none;
    font-weight: 800;
    padding: 12px 35px;
    border-radius: 50px;
    margin-top: 25px;
    font-family: "Open Sans";
    letter-spacing: 1px;
    transition: transform 0.2s ease;
}


.boutonBilletterie:hover {
    transform: scale(1.05);
    background-color: #f0f0f0;
}


/* Lien vers les cartes */

#carteEvenement{
display: flex ;
align-items: center;
flex-direction: column;
}

.lienCartes{
    display: inline-block;
    width: fit-content;      
    text-decoration: none;
    color: inherit;
    padding: 0;
}

.lienCartes:hover .carteEvenement {
     transition: transform  0.3s ease-in-out;
    cursor: pointer;
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/*-------------------------------------------------------------------------*/
/* PARTIE ADMIN */
/*-------------------------------------------------------------------------*/

/*Style page de redirection vers les actions admin*/

.actionsAdmin {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 40rem;
  gap: 25px;
}

.actionBouton {
  width: 350px;
  padding: 18px 24px;
  font-size: 20px;
  border-radius: 40px;
  background-color: #EA6B38;
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.actionsAdmin a {
  text-decoration: none;
}


.actionBouton::after {
  content: "→";
  font-size: 25px;
}



/* Formulaire pour ajouter un événement */


.formulaireEvenement {
  max-width: 500px;
  margin: 40px auto;
  padding: 25px;
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.formulaireEvenement.modification {
  display: none;
}

.actif {
    display: block !important;
}

.titreFormulaire {
  font-family: "Trade Winds";
  text-align: center;
  color: #333;
  margin-bottom: 20px;
}

.labelFormulaire {
  display: block;
  margin-bottom: 5px;
  font-family: "Open Sans";
  font-weight: 800;
  color: #000000;
}

.champFormulaire {
    width: 100%;
    padding: 10px 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 1rem;
    box-sizing: border-box;
}


.boutonFormulaire {
  font-family: "Open Sans";
    background-color: #EA6B38;
    color: #ffffff;
    padding: 10px 15px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    width: 35%;
    font-size: 15px;
    font-weight: bold;
    display: block;
    margin: 20px auto 0 auto;
}

.boutonFormulaire:hover {
    background-color: #484444;
}

/* Formulaire pour supprimer un événement */

.optionsEvenement {
  width: 100%;
  padding: 1rem;
  margin-bottom: 15px;
  border: 2px solid #000000;
  border-radius: 1rem;
  box-sizing: border-box;
}

/*-------------------------------------------------------------------------*/
/* STYLE TANNERIE */
/*-------------------------------------------------------------------------*/

/* SECTION : GRILLE DES ACTIONS RSE */

.titre-rse-accueil {
    font-family: "Trade Winds";
    font-size: 3rem;
    text-align: center;
    margin-bottom: 10px;
    color: #343330;
}

.liste-actions-rse {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 3rem auto;
    padding: 0 20px;
}

.carte-action-rse {
    text-align: center;
}

.lien-action-rse {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: inherit;
}

.image-action-rse {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 1rem;
    margin-bottom: 15px;
}

.titre-action-rse {
    font-family: "Open Sans";
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.texte-action-rse {
    font-size: 0.95rem;
    text-align: center;
} 

/* SECTION : ACTIONS CULTURELLES (BLOCK IMAGE + TEXTE) */
.section-actions {
    padding: 3rem 0;
}

.conteneur-actions {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.image-mise-en-avant {
    flex: 1;
    width: 50%;
    height: 400px;
    object-fit: cover;
    border-radius: 1rem;
}

.texte-actions {
    flex: 1;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.texte-actions h2 {
    font-family: "Trade Winds";
    font-size: 2.5rem;
}

@media only screen and (max-width: 900px) {
    .liste-actions-rse {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 10px;
    }
    .image-action-rse {
        height: 180px;
    }
    .conteneur-actions {
        flex-direction: column;
        gap: 15px;
    }
    .titre-action-rse, .texte-action-rse {
        text-align: center;
        font-size: 1rem;
    }
}

/*-------------------------------------------------------------------------*/
/* STYLE PAGE STRUCTURE */
/*-------------------------------------------------------------------------*/

/* structure de la page */

.structure {
  max-width: 1100px;
  margin: 0 auto;
}

.section-bannière,
.separateur-gauche,
.separateur-droite {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.section {
  margin-bottom: 80px;
}

.texteStructure {
  margin-bottom: 20px;
}

.titreStructure {
    margin-bottom: 20px;
}
/* partie salariés */
.centre {
  text-align: center;
}

.salariés {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}

.personne {
  width: 25%; /* 3 par ligne */
  padding: 20px;
}

.personne img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.personne p {
  margin: 4px 0; /* pour réduire l’espace entre les lignes */
}

/* les liens */
.section a {
  color: #EA6B38;
  text-decoration: none;
}

.section a:hover {
  text-decoration: underline;
}

/*-------------------------------------------------------------------------*/
/* STYLE PAGE RSE */
/*-------------------------------------------------------------------------*/

.conteneur {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.conteneur-etroit {
    max-width: 800px;
    margin: 0 auto;
}

.en-tete-principale {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    border-bottom: 1px solid #eee;
}

.en-tete-principale nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.en-tete-principale nav a {
    text-decoration: none;
    color: #343330;
    font-size: 14px;
    font-weight: 700;
}


.actions {
    padding: 4rem 5%;
    text-align: center;
}

.actions h2 {
    font-family: "Trade Winds";
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.liste-accordeons {
    max-width: 850px;
    margin: 40px auto;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    overflow: hidden;
    text-align: left;
}

.liste-accordeons details {
    background-color: #fcfcfc;
    border-bottom: 1px solid #eeeeee;
    transition: background-color 0.3s ease;
}

.liste-accordeons details:hover {
    background-color: #f0f0f0;
    cursor: pointer;
}

summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2rem;
    font-weight: 600;
    list-style: none;
}

.fleche-accordeon {
    color: #EA6B38;
    transition: transform 0.3s ease;
}

details[open] .fleche-accordeon {
    transform: rotate(180deg);
}

details[open] summary {
    background-color: #ffffff;
    color: #EA6B38;
}

.Description-action,
.contenu-action {
    padding: 0 25px 25px 25px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.Description-action img,
.contenu-action img {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 10px 0;
    object-fit: contain;
}

.explicationRSE,
.pourquoiRSE {
    padding: 1rem 10%;
    text-align: center;
}

.explicationRSE img,
.pourquoiRSE img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
}
.titre {
    font-family: "Trade Winds", cursive;
}

.PourquoiRSE {
    background-color: #f9f9f9;
    padding: 2rem;
}

.grille-valeurs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 2rem;
}

.double {
    display: flex;
    align-items: center;
    max-width: 1100px;
    margin: 4rem auto;
    gap: 50px;
    padding: 0 20px;
}

.double.inverse {
    flex-direction: row-reverse;
}

.texte,
.image {
    flex: 1;
}

.image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 1.5rem;
}

.texte h2 {
    font-family: "Trade Winds";
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.grille-rse-infos {
    display: flex;
    justify-content: center;
    gap: 25px;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 20px;
}

.carte-rse {
    flex: 1;
    border-radius: 12px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.contenu-rse h2 {
    font-family: "Trade Winds";
    font-size: 1.8rem;
    color: #343330;
    margin-bottom: 1.2rem;
}

.contenu-rse p {
    font-size: 1rem;
    color: #343330;
    line-height: 1.6;
}


.conteneurrse {
    padding: 2rem 5%;
}

.liste-valeurs {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 1rem;
}

.liste-valeurs li {
    background-color: #ffffff;
    border: 1px solid #343330;
    color: #343330;
    padding: 5px 15px;
    font-size: 0.85rem;
    border-radius: 50px;
    font-weight: 600;
}

/*-------------------------------------------------------------------------*/
/* STYLE PAGE ACTIONS CULTURELLES */
/*-------------------------------------------------------------------------*/


.conteneurActionsCulturelles {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* TITRES ET CONTENU */

.titre-principal {
    font-family: "Trade Winds", cursive;
    font-size: 2.5rem;
    margin: 40px 0 20px 0;
}

.introduction {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* GRILLE ET CARTES */
.grille-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.carte-simple {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #EA6B38;
    /* Petite touche de couleur sur le côté */
    transition: transform 0.3s;
}

.carte-simple:hover {
    transform: translateY(-5px);
}

.carte-simple h3 {
    margin-top: 0;
    color: #EA6B38;
}

details {
    border: 1px solid #343330;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}

summary {
    padding: 15px 20px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
}

summary:hover {
    background: #EA6B38;
    color: white;
}

.contenu-texte {
    padding: 20px;
    background: #fdfdfd;
}

/* RESPONSIVE */

@media only screen and (max-width: 900px) {
    .section-banniere {
        height: 300px;
    }
    .titre-sur-image {
        font-size: 2rem;
    }
}

summary {
    padding: 15px 20px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}


.fleche {
    display: inline-block;
    transition: transform 0.3s ease;
}

details[open] .fleche {
    transform: rotate(90deg);
}

/*-------------------------------------------------------------------------*/
/* STYLE PAGE SERVICES */
/*-------------------------------------------------------------------------*/

.service {
  margin-bottom: 80px;
}

.service ul {
  margin-left: 20px; /* décale la liste vers la droite */
  margin-bottom: 16px;
}

/* vidéos youtube affichées côte à côte */
.videos {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.videos iframe {
  width: 90%;
  height: 350px;
  border: none;
}

.mailServices {
  color: #EA6B38; 
  text-decoration: none;
}

.mailServices:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 900px) {

    

    .videos {
     flex-wrap: wrap;
     justify-content: center;
    }

.videos iframe {
  width: 80%;

}
}



/*-------------------------------------------------------------------------*/
/* STYLE PAGE NOUS TROUVER */
/*-------------------------------------------------------------------------*/

/* container qui centre le contenu et limite la largeur */
.containerTrouver {
  max-width: 1100px;
  /* margin: 0 auto; centre horizontalement */
  margin: 100px auto 0 auto;
  padding: 50px 20px; /* espace intérieur */
}

/* espace entre section contact et map */
.contact {
  margin-bottom: 60px;
}

/* aligne icône et texte de contact sur une même ligne */
.contact-symbole {
  display: flex; /* permet d’aligner image + texte */
  align-items: center; /* centre verticalement */
  margin-bottom: 12px;
}

/* taille icônes */
.contact-symbole img {
  width: 22px;
  height: auto;
  margin-right: 10px; /* espace entre icône et texte */
}

/* map */
.contact-map {
  margin-top: 40px;
}

.map {
  width: 100%;
  max-width: 1000px; 
  height: 360px;
  border: none;
  margin: 0 auto; /* centre la carte */
  display: block;
}

/* espace sous la section points de vente */
.points-vente {
  margin-bottom: 60px;
}

.points-vente p {
  max-width: 800px;
}

.contact-membres ul {
  list-style: none; 
  max-width: 900px;
}

/* espacement entre chaque contact */
.contact-membres li {
  margin-bottom: 10px;
}

/* les liens spécifiques aux mails*/ 
a.mail {
  color: #EA6B38;
  text-decoration: none;
}

a.mail:hover {
  text-decoration: underline;
}

/*-------------------------------------------------------------------------*/
/* STYLE PAGE CONNEXION */
/*-------------------------------------------------------------------------*/

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column; /* ça place le titre au-dessus du formulaire */
  align-items: center;
  padding-top: 60px;
}

/* conteneur du formulaire */
.seconnecter {
  width: 100%;
  max-width: 420px;
}

/* bloc connexion/inscription */
.connexion{
  background-color: #ffffff;
  padding: 40px;
}

/* champs de formulaire */
.connexionInput {
  width: 100%;
  padding: 12px;
  margin-bottom: 22px;
  border: none;
  background-color: #f5f5f5;
  font-size: 0.9rem;
}

/* la largeur des champs va jusquau bouton se connecter/s'inscrire */
input,
.boutonConnexion{
  box-sizing: border-box;
}


/*------------------------------------------------------------
 PAGE RGPD
------------------------------------------------------------*/
.titre-sur-image {
    font-family: "Trade Winds", cursive;
    color: #ffffff;
    font-size: 2.8rem;
    text-align: center;
    margin: 0;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    padding: 0 40px;
    line-height: 1.2;
}

.fondNoir {
    background-color: #000000;
    padding: 60px 0;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* TITRES ET TEXTES DE PRÉSENTATION*/
.bloc-presentation {
    padding: 60px 0 20px 0;
    text-align: center;
}

.liste-accordeonsRGPD {
    margin-bottom: 60px;
}

.detailsRGPD {
    border: 1px solid #343330;
    margin-bottom: 12px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.summaryRGPD {
    padding: 18px 25px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    /* Cache la flèche par défaut sur certains navigateurs */
    transition: background 0.3s ease, color 0.3s ease;
}


.summaryRGPD:hover {
    background-color: #EA6B38;
    color: #ffffff;
}

.DescriptionAction {
    padding: 25px;
    background-color: #fdfdfd;
    border-top: 1px solid #eee;
    line-height: 1.6;
}

.DescriptionAction ul {
    margin-top: 10px;
    padding-left: 20px;
}

.DescriptionAction li {
    margin-bottom: 8px;
}

/* Section contact */
.QuestionsRGPD {
    background-color: #f9f9f9;
    padding: 60px 0;
    margin-top: 40px;
}

.QuestionsRGPD .titre {
    font-family: "Trade Winds", cursive;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.grilleValeurs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: center;
}

.grilleValeurs p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.grilleValeurs strong {
    color: #EA6B38;
    display: block;
    margin-bottom: 5px;
}


/*------------------------------------------------------------
 PAGE 404
------------------------------------------------------------*/

.message-404 {
    padding: 80px 0;
}

.message-404 p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}
