/* Variables CSS pour les couleurs et les polices */
:root {
    --primary-color: rgba(43, 35, 84, 0.4);; /* Exemple de couleur */
    --primary-blue: #2b2354;
    --accent-main: #586ae6;
    --text-white: #dfdaf8;
    --accent-yellow: #ffde59;
    --accent-pink: #d147ba;
    --accent-purple-light: #a190f6;
    --accent-purple-alt: #9092f6;
    --text-gray: #dfdaf8;
}
/* Font */
p{
        font-family: 'Poppins', sans-serif;

}
.container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
   
}

.site-logo img,
.custom-logo {
    max-height: 60px;
    height: auto;
    width: auto;
    display: block;
}

#main-menu {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

#main-menu li a {
    text-decoration: none;
    color: #2b2354;
    font-weight: 800;
}


#menu-button {
 display: flex;
 align-items: center;
  padding: 26px 11px;
  z-index: 5;
  cursor: pointer;
  user-select: none;
}
#menu-button span {
  height: 4px;
  width: 35px;
  border-radius: 2px;
  background-color: #2b2354;
  position: relative;
  display: block;
  transition: all 0.2s ease-in-out; 
}
#menu-button span:before {
  top: -10px;
  visibility: visible;
}
#menu-button span:after {
  top: 10px;
}
#menu-button span:before,
#menu-button span:after {
  height: 4px;
  width: 35px;
  border-radius: 2px;
  background-color: #2b2354;
  position: absolute;
  content: "";
  transition: all 0.2s ease-in-out;
}
#menu-button:hover span,
#menu-button:hover span:before,
#menu-button:hover span:after {
  background: #2b2354;
}

#menu-toggle  {
  display: none;
}

input[type="checkbox"]:checked ~ #menu-button:hover span,
input[type="checkbox"]:checked ~ #menu-button span {
  background: transparent;
}
input[type="checkbox"]:checked ~ #menu-button span:before {
  transform: rotate(45deg) translate(7px, 7px);
  opacity: 1;
}
input[type="checkbox"]:checked ~ #menu-button span:after {
  transform: rotate(-45deg) translate(7px, -7px);
}

input[type="checkbox"]:checked ~ #menu {

  transform: translateY(0);
    transition: transform var(--menu-transition-timing) cubic-bezier(1, 0, 0, 1) var(--menu-overlay-transition-timing);
}

/*   TWO SLIDER */
input[type="checkbox"]:checked ~ #menu::before {
  transform: translateY(-100vh);
  transition: transform var(--menu-overlay-transition-timing) ease-in-out;
}

#menu {
  height: 100vh;
  width: 100vw;
  
  z-index: 3;
  position: fixed;


  transform: translateY(100vh);
  

  background: var(--color-primary);
    transition: transform var(--menu-transition-timing) cubic-bezier(1, 0, 0, 1);
}
#menu ul{
    background-color: var(--primary-blue);
}

/*   TWO SLIDER */
#menu::before{
  content:'';
  height: 100vh;
  width: 100vw;
  z-index: 1;
  position: fixed;
  background-color: var(--color-bright);
  opacity: 0.3;
  transform: translateY(0);
  /*   slide down second (overlay) */
    transition: transform var(--menu-overlay-transition-timing) ease var(--menu-transition-timing);
}

#menu ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  height: 100vh;
  padding-left: 0;
  list-style-type: none;
}
#menu ul li {
  padding: 5px;
}
#menu ul li a {
  color: white;
  text-decoration: none;
  font-size: 1.5em;
  z-index: 2;
}
#menu ul li a:hover {
  color: #333332;
}
/* Desktop */
@media (min-width: 769px) {
  #main-menu { display: flex; }
  .header-buttons { display: flex; }
}

/* Mobile */
@media (max-width: 768px) {
  #main-menu { display: none; }
  .header-buttons { display: none; }
}

/* Overlay */

#menu {
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(0,0,0,0.7); /* overlay sombre */
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(0);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  z-index: 9999;
}

/* Contenu du menu */
#menu .menu-content {
  background: var(--color-primary);
  padding: 2rem;
  border-radius: 16px;
  max-width: 90%;
  width: 400px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  text-align: center;
}

/* Liste */
#menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#menu ul li {
  margin: 1rem 0;
}
#menu ul li a,
#menu ul li button {
  font-size: 1.2rem;
  color: white;
  padding: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
#menu ul li a:hover,
#menu ul li button:hover {
  color: #ffd700;
}

/* Animation ouverture */
input[type="checkbox"]:checked ~ #menu {
  transform: scale(1);
  opacity: 1;
  pointer-events: all;
}

/* Burger toujours actif */
#menu-button {
  display: flex;
  align-items: center;
  cursor: pointer;
  z-index: 10000;
}
/* Quand le menu est ouvert en mobile */
@media (max-width: 768px) {
  input[type="checkbox"]:checked ~ #menu-button {
    right: 25px;
    position: absolute;
  }
}

/*FIN FONT*/

/*Popups*/
.container-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}

.site-logo img {
    max-height: 60px;
}

#main-menu {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.header-buttons {
    display: flex;
    gap: 15px;
}




/* Popups */
.popup-overlay {
    display: none; /* caché par défaut */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;

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

    overflow: hidden;
}

/* classe qui affiche la popup */
.popup-overlay.active {
    display: flex;
}


.popup-overlay h2{
    font-family: 'Kooperative', sans-serif;
    color: var(--accent-yellow);
    font-size: 2rem;
    text-align: center;
}

.popup-overlay p{
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.popup-content {
    background: var(--primary-blue);
    border-radius: 15px;
    padding: 2rem;
    max-width: 700px;
    width: 95%;
    border: 1px solid rgba(255, 255, 255, 0.1);

    max-height: 90vh; /* Limite la hauteur visible */
    overflow-y: auto; /* Permet le scroll interne */
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.close-popup {
    position: absolute;
    top: 10px; right: 15px;
    font-size: 24px;
    cursor: pointer;
}

.newsletter-iframe-container iframe {
    width: 100%;
    height: 416px;
    border: none;
    display: block;
    background: white;
}

/*Fin popups*/
/*Contact form*/
.form-group-coche{
    font-size: 12px;
    font-weight: 600;

    display: flex
;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.form-group-coche label{
  
    display: flex;
    align-items: center;
}
.form-group-coche .wpcf7 input[type="checkbox"],
.form-group-coche .wpcf7 input[type="radio"] {
  width: 16px !important;
  min-width: 16px;
  height: 16px;
  border: solid 1px #000;
  border-radius: 0;
  position: relative;
  margin-right: 1rem;
}



.form-group label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 1.2rem;
    font-family: 'Poppins', sans-serif;
}

.contact-form-exposant .wpcf7 input:not([type="checkbox"]):not([type="radio"]),
.contact-form-exposant .wpcf7 textarea {
  width: 95%;
  padding: 10px 20px 10px 10px;
  display: flex;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  margin-top: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.wpcf7 select{
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    margin-top: 10px;
    transition: all 0.3s ease;
}
.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
    background: var(--primary-blue);
    color: var(--text-white);
}

.form-group-submit .wpcf7-submit {
    display: flex;
    margin-top: 10px;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-main), var(--accent-purple-alt));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-family: 'Kooperative', sans-serif;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    width: 100%;
    box-shadow: 0 6px 20px rgba(125, 106, 232, 0.25);
}
/*Fin contact form*/
html, body {
    overflow-x: hidden; /* Empêche tout débordement horizontal */
}
body {
    color: var(--text-color);
    background-color: var(--primary-blue);
    margin: 0;
    padding: 0;
}

p{
    margin: 0;
}
.container-header{
    max-width: 1800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;

}

/* Conteneur principal du menu */
.menu-menu-principal-container {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    right: 0;
    background: #dfdaf8;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    justify-content: center;
}

.menu-menu-principal-container div {
    padding: 1rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Liste des éléments du menu */
.menu-menu-principal-container ul {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-menu-principal-container li a{
    color: var(--text-white);
    text-decoration: none;
    font-family: 'Kooperative', sans-serif;
    font-weight: bold;
    margin: 15px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.3rem 0;
}

.hero_content_text{
  display: flex
;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

/* Contenu principal */
.hero {
    position: relative;
    width: 100%;
    padding-top: 80px;
    overflow: hidden;
}

.hero_content{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
}


@media (max-width: 992px) {
    .emplacement {
        border-left: solid 0px white;
    }
    .hero .hero_content_text h1 {
    font-family: 'Kooperative', sans-serif;
    font-size: 6rem;
    text-align: center;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 0;
    text-shadow: 0 4px 20px rgba(88, 106, 227, 0.5);

}
.hero .hero_content_text h2 {
    font-family: 'Kooperative', sans-serif;
    font-size: 22px;
    text-align: center;
    font-weight: bold;
    color: #ffde59;
    text-transform: uppercase;
    margin-bottom: 1rem;
    padding: 10px;
    text-shadow: 0 4px 20px rgba(88, 106, 227, 0.5);
}
.hero_content_title{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.hero .hero_content_text span {
    font-family: 'Kooperative', sans-serif;
    font-size: 22px;
    text-align: center;
    font-weight: bold;
    color: #ffde59;
    margin-bottom: 0;
    text-transform: uppercase;
    padding: 0px 10px 0px 10px;
    text-shadow: 0 4px 20px rgba(88, 106, 227, 0.5);
}

}

@media (min-width: 993px) {
    .hero .hero_content_text .emplacement{
    border-left: solid 1px white;
    text-align: left;
    color: #dfdaf8;


    
}
.line {
  display: flex;
  flex-direction: column;
}

.hero_content_title{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
   .hero .hero_content_text h1 {
    font-family: 'Kooperative', sans-serif;
    font-size: 10rem;
    margin-top: 2rem;
    text-align: center;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 0;
    text-shadow: 0 4px 20px rgba(88, 106, 227, 0.5);

}
.hero .hero_content_text h2 {
    font-family: 'Kooperative', sans-serif;
    font-size: 22px;
    text-align: right;
    font-weight: bold;
    color: #ffde59;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0px 10px 0px 10px;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(88, 106, 227, 0.5);
}
.emplacement_desc{
  border-left: solid 1px white;
}

.hero .hero_content_text .spec_desc{
 color: #dfdaf8 !important;
}
.hero .hero_content_text span {
    font-family: 'Kooperative', sans-serif;
    font-size: 22px;
    text-align: right;
    font-weight: bold;
    color: #ffde59;
    margin-bottom: 0;
    text-transform: uppercase;
    padding: 0px 10px 0px 10px;
    text-shadow: 0 4px 20px rgba(88, 106, 227, 0.5);
}
}


.organisation-card__link.disabled {
  display: inline-block;
  background: #ccc;
  color: #666;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: not-allowed;
  text-decoration: none;
  text-transform: uppercase;
}

.hero p{
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
    width: 75%;
    text-align: center;
}
.hero img{
    width: 100%;
    height: 100%;
    object-fit: cover;
   
}

.popup-text{
font-style: italic;
color: white;
margin-bottom: 10px;
}

/* Organisations */
/* Structure globale */
.organisations {
  font-family: 'poppins', sans-serif;
  margin-bottom: 2rem;
}



/* Titres */
.organisations__title {
  font-size: 2.5rem;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 25px;
  color: #ffde59;
}

.organisations__subtitle {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 40px;
  color: white;
  text-transform: uppercase;
}

/* Liste des organisations */
.organisations__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Carte individuelle */
.organisation-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.organisation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* Image */
.organisation-card__image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Contenu */
.organisation-card__content {
  padding: 20px;
  flex: 1;
}

.organisation-card__title {
  font-size: 1.4rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #333;
}

.organisation-card__description {
  font-size: 1rem;
  line-height: 1.5;
  color: #666;
  margin-bottom: 15px;
}

/* Lien */
.organisation-card__link {
  display: inline-block;
  padding: 10px 18px;
  background-color: #4B2E83;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

.organisation-card__link:hover {
  background-color: #3a2264;
}

/* Responsive titres */
@media (max-width: 768px) {
  .organisations__title {
    font-size: 2rem;
  }
  .organisations__subtitle {
    font-size: 1rem;
  }
}
/* Fin organisations */
/*Compte à rebours*/
@media (min-width: 993px) {
  .countdown {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 110px;
  right: 25px;

}

.countdown div {
    text-align: center;
  width: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown #days,
.countdown #hours,
.countdown #minutes,
.countdown #seconds {
          font-size: 16px;
        background: #dfdaf8;
        -webkit-text-stroke: 1px #2b2354;
        color: #2b2354;
        padding: 6px;
        border-radius: 10px;
        font-family: 'poppins', sans-serif;
        margin-bottom: 5px;
}

.countdown span {
  font-family: 'poppins', sans-serif;
  font-size: 10px;
  color: white;
}

}

@media (max-width: 992px) {
  .countdown {
    display: flex;
    flex-wrap: wrap; /* Permet le retour à la ligne sur petits écrans */
    gap: 30px;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    }

.countdown div {
  text-align: center;
}

.countdown #days,
.countdown #hours,
.countdown #minutes,
.countdown #seconds {
  font-size: 5rem;
  background: #dfdaf8;
  font-weight: 800;
  -webkit-text-stroke: 1px #2b2354;
  color: #2b2354;
  padding: 10px;
  border-radius: 10px;
  font-family: 'poppins', sans-serif;
}

.countdown span {
  font-family: 'poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: white;
}
}



/* Mobile */
@media (max-width: 600px) {
  .countdown {
    flex-direction: column;
    gap: 15px;
    padding: 20px 0;
  }
  .countdown #days,
  .countdown #hours,
  .countdown #minutes,
  .countdown #seconds {
    font-size: 2.5rem;
  }
  .countdown span {
    font-size: 1.2rem;
  }
}

/*Fin compte à rebours*/




/*Texte*/
@media (max-width: 767px) {
    /* Styles pour les smartphones */
    .first_content {
        margin: 35px;
        margin-bottom: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .first_content .qui_sommes_nous_image_right img{
        width: 250px; 
    }
    .first_content .qui_sommes_nous_content h2{
        font-family: "Zing Rust Base";
        margin: 0;
        font-size: 42px;
    }
    
    .first_content .qui_sommes_nous_content p{
        font-size: 26px;
        margin: 0;
        margin-bottom: 15px;
        font-family: "Merriweather Sans", sans-serif;
    }
    
    .second_content{
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        box-sizing: border-box;
        padding: 0;
        border: none;
    }
    .qui_sommes_nous_banner{
        margin-bottom: 15px;
    }
    .second_content .qui_sommes_nous_banner img{
        width: 100%;
    
    }
  }

@media (min-width: 768px) and (max-width: 1024px) {
    /* Styles pour les tablettes */
    .first_content {
        margin: 35px;
        margin-bottom: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .first_content .qui_sommes_nous_image_right img{
        width: 350px; 
    }
    .first_content .qui_sommes_nous_content h2{
        font-family: "Zing Rust Base";
        margin: 0;
        font-size: 42px;
    }
    
    .first_content .qui_sommes_nous_content p{
        font-size: 22px;
        margin: 0;
        margin-bottom: 15px;
        font-family: "Merriweather Sans", sans-serif;
    }
    
    .second_content{
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        box-sizing: border-box;
        padding: 0;
        border: none;
    }
    .qui_sommes_nous_banner{
        margin-bottom: 15px;
    }
    .second_content .qui_sommes_nous_banner img{
        width: 100%;
    
    }
}
  
@media (min-width: 1025px) {
    /* Styles pour les PC */
    .first_content {
        margin: 35px;
        margin-bottom: 0px;
        display: flex;
        justify-content: space-between;
    }
    .first_content .qui_sommes_nous_image_right img{
        width: 350px; 
    }
    .first_content .qui_sommes_nous_content h2{
        font-family: "Zing Rust Base";
        margin: 0;
        font-size: 42px;
    }
    
    .first_content .qui_sommes_nous_content p{
        font-size: 26px;
        margin: 0;
        font-family: "Merriweather Sans", sans-serif;
    }
    
    .second_content{
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        box-sizing: border-box;
        padding: 0;
        border: none;
    }
    .qui_sommes_nous_banner{
        margin-bottom: 15px;
    }
    .second_content .qui_sommes_nous_banner img{
        width: 100%;
    
    }
  }
  






/*Pouquoi nous*/
@media (max-width: 767px) {
    /* Styles pour les smartphones */
    .first_content_pourquoi_nous {
        margin: 35px;
        margin-bottom: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .first_content_pourquoi_nous .pourquoi_nous_image_right img{
        width: 250px; 
    }
    .first_content_pourquoi_nous .pourquoi_nous_content h2{
        font-family: "Zing Rust Base";
        margin: 0;
        font-size: 42px;
    }
    
    .first_content_pourquoi_nous .pourquoi_nous_content p{
        font-size: 26px;
        margin: 0;
        margin-bottom: 10px;
        font-family: "Merriweather Sans", sans-serif;
    }
    
    .second_content_pourquoi_nous{
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        box-sizing: border-box;
        padding: 0;
        border: none;
    }
    
    .second_content_pourquoi_nous .pourquoi_nous_banner img{
        width: 100%;
    
    }
  }

@media (min-width: 768px) and (max-width: 1024px) {
    /* Styles pour les tablettes */
    .first_content_pourquoi_nous {
        margin: 35px;
        margin-bottom: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .first_content_pourquoi_nous .pourquoi_nous_image_right img{
        width: 350px; 
    }
    .first_content_pourquoi_nous .pourquoi_nous_content h2{
        font-family: "Zing Rust Base";
        margin: 0;
        font-size: 42px;
    }
    
    .first_content_pourquoi_nous .pourquoi_nous_content p{
        font-size: 22px;
        margin: 0;
        margin-bottom: 15px;
        font-family: "Merriweather Sans", sans-serif;
    }
    
    .second_content_pourquoi_nous{
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        box-sizing: border-box;
        padding: 0;
        border: none;
    }
    
    .second_content_pourquoi_nous .pourquoi_nous_banner img{
        width: 100%;
    
    }
}
  
@media (min-width: 1025px) {
    /* Styles pour les PC */
    .first_content_pourquoi_nous {
        margin: 35px;
        margin-bottom: 0px;
        display: flex;
        justify-content: space-between;
    }
    .first_content_pourquoi_nous .pourquoi_nous_image_right img{
        width: 350px; 
    }
    .first_content_pourquoi_nous .pourquoi_nous_content h2{
        font-family: "Zing Rust Base";
        margin: 0;
        font-size: 42px;
    }
    
    .first_content_pourquoi_nous .pourquoi_nous_content p{
        font-size: 26px;
        margin: 0;
        font-family: "Merriweather Sans", sans-serif;
        text-align: center;
    }
    
    .second_content_pourquoi_nous{
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        box-sizing: border-box;
        padding: 0;
        border: none;
    }
    
    .second_content_pourquoi_nous .pourquoi_nous_banner img{
        width: 100%;
    
    }
  }





/*Services*/
@media (max-width: 767px) {
    /* Styles pour les smartphones */
    .first_content_services{
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 35px;
    }
    .nos_services_image_right{
        display: flex;
        align-items: center;
    }
    .nos_services_image_right img{
        width: 250px;
    }
    .nos_services_content h2{
        font-family: "Zing Rust Base";
        margin: 0;
        font-size: 42px;
    }
    .nos_services_content p{
        font-size: 26px;
        margin: 0;
        font-family: "Merriweather Sans", sans-serif;
    }
    
  }

@media (min-width: 768px) and (max-width: 1024px) {
    /* Styles pour les tablettes */
    .first_content_services{
        margin: 35px;
        margin-bottom: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .nos_services_image_right{
        display: flex;
        align-items: center;
    }
    .nos_services_image_right img{
        width: 350px;
    }
    .nos_services_content h2{
        font-family: "Zing Rust Base";
        margin: 0;
        font-size: 42px;
    }
    .nos_services_content p{
        font-size: 22px;
        margin: 0;
        margin-bottom: 15px;
        font-family: "Merriweather Sans", sans-serif;
    }
    
}
  
@media (min-width: 1025px) {
    /* Styles pour les PC */
    .first_content_services{
        display: flex;
        justify-content: space-between;
    }
    .nos_services_image_right{
        display: flex;
        align-items: center;
    }
    .nos_services_image_right img{
        width: 350px;
    }
    .nos_services_content h2{
        font-family: "Zing Rust Base";
        margin: 0;
        font-size: 42px;
    }
    .nos_services_content p{
        font-size: 26px;
        margin: 0;
        font-family: "Merriweather Sans", sans-serif;
        text-align: justify;
    }
    
  }

/*Newsletter*/

.newsletter-banner{
    background-color:#dfdaf8; 
    color:#2b2354; 
    padding: 20px 0;
}
.newsletter-text{
    font-family: 'Poppins', sans-serif;
    
    line-height: 15px;
    color: rgb(255 255 255 / var(--tw-text-opacity));
}

.newsletter-text h2{
    margin-bottom: 10px;
        text-transform: uppercase;
        font-size: 16px;
    margin-top: 0px;
    

}
.newsletter-text p{
    font-size: 12px;
    margin-bottom: 5px;
}



.newsletter-form form {
    display: flex;
    gap: 10px;
    align-items: center;
}
.policy_newsletter{
    margin-top: 10px;
}
.newsletter-form input[type="email"] {
    padding: 10px 15px;
    border: none;
    border-radius: 6px;
    flex: 1;
    margin-right: 15px;
    background: white;
}

.newsletter-form input[type="submit"] {
    width: 50%;
    background: linear-gradient(135deg, #2b2354, var(--accent-purple-alt));
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    height: 100%;
}

/*Page FAQ*/
.faq-container {
    max-width: 800px;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}
.faq-title {
    font-family: 'Poppins', sans-serif;
    color: var(--accent-yellow);
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
}
.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}
.faq-question {
    width: 100%;
    color: white;
    background: none;
    border: none;
    text-align: left;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    padding: 10px;
}
.faq-answer {
    display: none;
    padding: 10px;
    color: white;
    font-family: 'Poppins', sans-serif;
}
.faq-item.active .faq-answer {
    display: block;
}

/*Fin page FAQ*/
/*Page Nos partenaires*/


@media (min-width: 993px){
  .partenaires-page{
    position: relative;
    width: 100%;
    padding-top: 80px;
    padding-bottom: 80px;
    overflow: hidden;
}
/* Forcer la même hauteur sur tous les slides */
.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20%;
    flex-wrap: wrap;
    height: 300px;
    background: white;
    margin: 10px;
    border-radius: 15px;
    padding: 10px;
}
.partner-card {
    position: relative;
    width: 80%;
    height: 300px; /* hauteur fixe pour toutes les cards */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.partner-card img {
    width: 100%;
    height: 100%;       /* remplit toute la card */
    object-fit: contain; /* ou cover selon ce que tu veux */
}
.partenaires-title-h1{
    font-family: 'Kooperative', sans-serif;
    font-size: 6rem;
    text-align: center;
    font-weight: bold;
    color: #ffffff;
    margin-top: 0;
    text-transform: uppercase;
    margin-bottom: 0;
    text-shadow: 0 4px 20px rgba(88, 106, 227, 0.5);
}
.partenaires-title{
    font-family: 'Kooperative', sans-serif;
    font-size: 36px;
    text-align: center;
    font-weight: bold;
    color: #ffde59;
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(88, 106, 227, 0.5);
}
.partner-hover {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    padding: 15px;
}

.partner-hover h2{
    font-family: 'Kooperative', sans-serif;
    font-size: 18px;
    text-align: center;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px
}

.partner-hover p{
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
}

.partner-card:hover .partner-hover {
    opacity: 1;
}
}
@media (max-width: 992px){
.partenaires-page{
    position: relative;
    width: 100%;
    padding-top: 80px;
    padding-bottom: 80px;
    overflow: hidden;
}
/* Forcer la même hauteur sur tous les slides */
.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
    height: 300px;
    background: white;
    margin: 10px;
    border-radius: 15px;
    padding: 10px;
}
.partner-card {
    position: relative;
    width: 80%;
    height: 300px; /* hauteur fixe pour toutes les cards */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.partner-card img {
    width: 100%;
    height: 100%;       /* remplit toute la card */
    object-fit: contain; /* ou cover selon ce que tu veux */
}
.partenaires-title-h1{
    font-family: 'Kooperative', sans-serif;
    font-size: 3rem;
    text-align: center;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 0;
    text-shadow: 0 4px 20px rgba(88, 106, 227, 0.5);
}
.partenaires-title{
    font-family: 'Kooperative', sans-serif;
    font-size: 36px;
    text-align: center;
    font-weight: bold;
    color: #ffde59;
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(88, 106, 227, 0.5);
}
.partner-hover {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    padding: 15px;
}

.partner-hover h2{
    font-family: 'Kooperative', sans-serif;
    font-size: 18px;
    text-align: center;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px
}

.partner-hover p{
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
}

.partner-card:hover .partner-hover {
    opacity: 1;
}

}



/* Partners Banner */
.partners-banner {
  padding: 1rem 0;
  margin-bottom: 15px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
}

.banner-container {
  overflow: hidden;
}

.banner-track {
  display: flex;
  animation: scroll 30s linear infinite;
  gap: 3rem;
}

.partner-logo {
  background: rgba(255, 255, 255, 1);
  padding: 1rem 2rem;
  border-radius: 12px;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  height: 50px;
  transition: all 0.3s ease;
}

.partner-logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 1);
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

/* Agrandir le logo Sheep */
.partner-logo img[src*="sheep"] {
  transform: scale(1.2);
}

.partner-logo:hover img {
  filter: grayscale(0%);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* déplace exactement la moitié si tu as dupliqué le contenu */
  }
}
.swiper-wrapper{
      flex-wrap: wrap;
    display: flex
;
    justify-content: space-evenly;
}


/* Centrer la pagination sous le slider */
.swiper-pagination {
    text-align: center;
    margin-top: 20px;
}


/*Fin page Nos partenaires*/

/*Qui sommes nous ?*/
@media (min-width: 993px){
.qsn-title-h1{
    font-family: 'Kooperative', sans-serif;
    font-size: 6rem;
    text-align: center;
    margin-top: 0;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 0;
    text-shadow: 0 4px 20px rgba(88, 106, 227, 0.5);
}

.btn-popup {
    background: #586ae6 ;
    color: #dfdaf8;
    border: none;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-family: 'poppins', sans-serif;
    font-weight: bold;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin-left: 1rem;
}
.header-buttons a {
    background: #d147ba;
    color: var(--text-white);
    border: none;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-family: 'poppins', sans-serif;
    font-weight: bold;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin-left: 1rem;
}
}
@media (max-width: 992px){
.qsn-title-h1{
    font-family: 'Kooperative', sans-serif;
    font-size: 4rem;
    text-align: center;
    font-weight: bold;
    margin-top: 0;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 0;
    text-shadow: 0 4px 20px rgba(88, 106, 227, 0.5);
}
}

/* ======= SECTION QUI SOMMES-NOUS ======= */
.qui-sommes-nous {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
    font-family: 'Arial', sans-serif;
    color: #222;
}

/* ---- Introduction ---- */
.qui-sommes-nous .intro {
    text-align: center;
    margin-bottom: 4rem;
}

.qui-sommes-nous .intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #4B0082; /* violet esports */
}

.qui-sommes-nous .intro p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.qui-sommes-nous .intro .discord-link {
    display: inline-block;
    background-color: #7289DA; /* Discord blue */
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.qui-sommes-nous .intro .discord-link:hover {
    background-color: #5b6eae;
}

/* ---- Grilles des équipes ---- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

/* ---- Carte membre/fondatrice ---- */
.team-member {
    background-color: #f8f8f8;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.team-member img {
    width: 150px;        /* largeur fixe */
    height: 150px;       /* hauteur fixe */
    border-radius: 50%; /* cercle */
    margin-bottom: 1rem;
    object-fit: cover;  /* couvre tout le cadre, recadrage si nécessaire */
}
.team-member h2{
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #4B0082 !important;
    border-bottom: 2px solid #ddd;
    padding-bottom: 0.5rem;
}
.team-member h4 {
    font-size: 1.25rem;
    margin-bottom: 0;
    color: #4B0082;
    font-weight: 800;
        font-family: 'poppins', sans-serif;

}

.team-member p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #555;
}

.team-member a {
    color: #7289DA;
    text-decoration: none;
    font-weight: bold;
    
}

.team-member a:hover {
    text-decoration: underline;
}
.team-member .pseudo{
    color: #2b2354;
        font-family: 'poppins', sans-serif;

    font-size: 1.05rem;
    font-weight: 800;
}

/* Empêche la sélection et le drag natif (webkit + standard) */
img.no-save {
  -webkit-user-drag: none;
    -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

/* Option : wrapper avec overlay transparent qui capture les clics */
.no-save-wrapper { position: relative; display: inline-block; }
.no-save-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: transparent;
}

/* ---- Titres sections ---- */
.fondatrices h3,
.membres-projet h3 {
    font-family: 'poppins', sans-serif;
    font-size: 36px;
    text-align: center;
    font-weight: bold;
    color: #ffde59;
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(88, 106, 227, 0.5);
}


/* ======= Responsive Mobile ======= */
@media (max-width: 768px) {
    .qui-sommes-nous .intro h2 {
        font-size: 2rem;
    }
    .team-member {
        padding: 1rem;
    }
    .team-member h4 {
        font-size: 1.1rem;
    }
    .team-member p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .qui-sommes-nous {
        padding: 2rem 0.5rem;
    }
    .qui-sommes-nous .intro h2 {
        font-size: 1.8rem;
    }
    .qui-sommes-nous .intro p {
        font-size: 1rem;
    }
    .team-member img {
        max-width: 140px;
    }
}
.intro{
    text-align: center;
    margin: 10px;
    font-family: 'Poppins', sans-serif;

}

.intro-texte{
    color: var(--text-white);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
    line-height: 1.6;

}
.intro-description{
    color: var(--text-white);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    margin-top:  2rem;
}
.button-discord{
    background: linear-gradient(135deg, #5865f2 0%, #7289da 100%);
    color: white;
    text-decoration: none;
    border: none;
    padding: 1rem 2rem;
    border-radius: 15px;
    font-family: "Poppins", sans-serif;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    display: inline-flex
;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 10px 25px rgba(88, 101, 242, 0.3);
}
/*Fin Qui sommes nous ?*/
/*Infos pratiques*/

.infos-pratiques-page{
    position: relative;
    width: 100%;
    padding-top: 80px;
    padding-bottom: 80px;
    overflow: hidden;

}
/* ====== RESET SIMPLE ====== */
.infos-pratiques-page h1,
.infos-pratiques-page h2,
.infos-pratiques-page h3,
.infos-pratiques-page p,
.infos-pratiques-page ul,
.infos-pratiques-page li {
  margin: 0;
  padding: 0;
}

.infos-pratiques-page ul {
  list-style: none;
  padding-left: 0;
}

/* ====== STRUCTURE GLOBALE ====== */
.infos-pratiques-page {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
}

.infos-pratiques-page .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.infos-pratiques-page section {
  margin-bottom: 3rem;
}

.infos-pratiques-page h1 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
}

.infos-pratiques-page h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-family: 'poppins', sans-serif;
  color: #ffde59;
  border-bottom: 2px solid #ddd;
  padding-bottom: 0.5rem;
}

.infos-pratiques-page h3 {
  font-size: 1.4rem;
  margin: 1rem 0 0.5rem;
}
@media (max-width: 992px){

.footer{
        background: linear-gradient(135deg, var(--primary-blue) 0%, #2a1f5c 100%);
    color: var(--text-white);
    padding: 2rem 0 0 0;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column-reverse;
    overflow: hidden;
}

.btn-popup {
    background: #586ae6 ;
    color: #dfdaf8;
    border: none;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-family: 'poppins', sans-serif;
    font-weight: bold;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin-left: 1rem;
}
.header-buttons a {
    background: #d147ba;
    color: var(--text-white);
    border: none;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-family: 'poppins', sans-serif;
    font-weight: bold;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin-left: 1rem;
}
.flex-gare{
    display: flex;
    flex-direction: column;
}
.flex-gare img{
  width: 100%;
  height: 50%;
  object-fit: cover;
}
.gare-info{
  display: flex;
  flex-direction: column;
  padding-left: 1rem;
 
}
.social-links  {
    display: flex;
    justify-content: center;
    gap: 0.5rem; /* espace entre les icônes */
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;  /* taille du bouton */
    height: 40px;
    border-radius: 50%; /* cercle */
    background-color: #dfdaf8; /* couleur de fond par défaut */
    color: #2b2354; /* couleur des icônes */
    font-size: 18px; /* taille icône */
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.social-links a:hover {
    background-color: #2b2354; /* couleur au hover (exemple rouge) */
    transform: scale(1.1);
    color: #dfdaf8;
}

/* Masquer le texte des liens */
.social-links a img,
.social-links a span,
.social-links a br {
    display: none !important;
}

/* Icônes FA centrées */
.social-links i {
    line-height: 1;
}
.partenaires-page{
  position: relative;
 
}
.infos-pratiques-page{
  position: relative;
}

  .illu3{
  position: relative;
 
}
.illu2{
  position: relative;
}
.illu2 img{
  position: absolute;
  width: 70%;
  top: -80px;
  object-fit: contain;
  right: -50px;
}
#wpcf7-f12-o2{
    width: 80%;
}
.illu1 img{
      position: absolute;
    top: 75px;
    width: 50%;
    right: -35px;
    object-fit: contain;
    height: 10%;
    z-index: 9;
}
.contact-form-exposant{
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    margin-top: 10px;
    display: flex;
    justify-content: center;
}
.email_inbox_news p{
    display: flex;
    flex-direction: column;
}
.form-group-submit{
  display: flex;
  justify-content: center;
}
}


@media (min-width: 993px){
  .form-group-submit{
  display: flex;
  justify-content: center;
}.contact-form-exposant{
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    margin-top: 10px;
    display: flex;
    justify-content: center;
}
#wpcf7-f12-o2{
    width: 50%;
}
.infos-pratiques-page{
  position: relative;
}

.email_inbox_news p{
    display: flex;
}
 .illu1{
  position: relative;
 
}
.illu1 img{
  position: absolute;
  width: 28%;
  z-index: 9;
  top: 125px;
  object-fit: contain;
  left: 100px;
}
  .illu3{
  position: relative;
 
}
.illu2 img{
  position: absolute;
  width: 30%;
  top: 125px;
  object-fit: contain;
  right: 150px;
}
.illu3 img{
   position: absolute;
  width: 30%;
  height: 600px;
  object-fit: contain;
  right: 10px;
}
  
.flex-gare{
    display: flex;
}
.flex-gare img{
  width: 50%;
  height: 50%;
  object-fit: cover;

  
}
.footer{
        background: linear-gradient(135deg, var(--primary-blue) 0%, #2a1f5c 100%);
    color: var(--text-white);
    padding: 2rem 0 0 0;
    position: relative;
    overflow: hidden;
}


.gare-info{
  display: flex;
  flex-direction: column;
  padding-left: 15px;
 
}


.social-links  {
    display: flex;
    position: absolute;
    bottom: 10px;
    right: 10px;
    gap: 0.5rem; /* espace entre les icônes */
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;  /* taille du bouton */
    height: 40px;
    border-radius: 50%; /* cercle */
    background-color: #dfdaf8; /* couleur de fond par défaut */
    color: #2b2354; /* couleur des icônes */
    font-size: 18px; /* taille icône */
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.social-links a:hover {
    background-color: #2b2354; /* couleur au hover (exemple rouge) */
    transform: scale(1.1);
    color: #dfdaf8;
}

/* Masquer le texte des liens */
.social-links a img,
.social-links a span,
.social-links a br {
    display: none !important;
}

/* Icônes FA centrées */
.social-links i {
    line-height: 1;
}
}

/* ====== HERO ====== */
.infos-pratiques-page .hero {
  position: relative;
  color: white;
  text-align: center;
  border-radius: 12px;
  overflow: hidden;
}

.infos-pratiques-page .hero-title {
  font-size: 2rem;
  font-weight: bold;
  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
  padding: 1rem;
}

/* ====== SECTIONS ====== */
.infos-pratiques-page p {
  margin-bottom: 1rem;
}

.infos-pratiques-page ul li {
  margin: 0.3rem 0;
  padding-left: 1rem;
  position: relative;
}

.infos-pratiques-page ul li::before {
  content: "•";
  color: #0077cc;
  position: absolute;
  left: 0;
}

/* ====== MAP ====== */
.infos-pratiques-page #map {
  border-radius: 8px;
  overflow: hidden;
  margin-top: 1rem;
}
.map-container{
    display: flex;
    justify-content: center;
}
/* ====== BILLETTERIE ====== */
.infos-pratiques-page .btn-jeviens {
 background: linear-gradient(135deg, #5865f2 0%, #7289da 100%);
    color: white;
    text-decoration: none;
    border: none;
    padding: 1rem 2rem;
    border-radius: 15px;
    font-family: "Poppins", sans-serif;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    display: inline-flex
;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 10px 25px rgba(88, 101, 242, 0.3);
}



/* ====== RESPONSIVE ====== */
@media (min-width: 993px) {
  .infos-pratiques-page h1 {
    font-size: 6rem;
    margin-top: 0;
  }
 
}
/* Tablette */
@media (max-width: 990px) {
  .infos-pratiques-page h1 {
    font-size: 3rem;
  }
  .infos-pratiques-page .hero-title {
    font-size: 2.5rem;
  }
  .infos-pratiques-page .container {
    padding: 3rem 0;
  }
}

/* Desktop */
.infos-pratiques-page .adresse,
  .infos-pratiques-page .gare,
  .infos-pratiques-page .infos,
  .infos-pratiques-page .restauration,
  .infos-pratiques-page .hebergements,
  .infos-pratiques-page .billetterie,
  .infos-pratiques-page .services { 
          background: #fafafa;
          border-radius: 10px;
          box-shadow: 0 2px 6px rgba(0,0,0,0.05);
          padding: 2rem;

  }

@media (min-width: 1024px) {
  .infos-pratiques-page .adresse,
  .infos-pratiques-page .gare,
  .infos-pratiques-page .infos,
  .infos-pratiques-page .restauration,
  .infos-pratiques-page .hebergements,
  .infos-pratiques-page .billetterie,
  .infos-pratiques-page .services {
    padding: 2rem;
    background: #fafafa;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  }

  .infos-pratiques-page section {
    margin-bottom: 4rem;
  }
}

/*Fin infos pratiques*/


/*Page sur place*/
/* ---------- RESET / container ---------- */
.surplace-wrap { max-width:1200px; margin:40px auto; padding:0 18px; box-sizing:border-box; }

/* ---------- FILTERS ---------- */
.surplace-filters { display:flex; flex-wrap:wrap; gap:12px; align-items:center; margin-bottom:28px; }
.surplace-filters .label { font-weight:900; font-size:28px; margin-right:10px; }
.surplace-filters .filter-btn {
  background:#fff; color:#111; padding:8px 16px; border-radius:8px; border:1px solid rgba(0,0,0,0.08);
  cursor:pointer; box-shadow: 0 2px 0 rgba(0,0,0,0.08); font-weight:700;
}
.surplace-filters .filter-btn.active { background: #dfdaf8; color:var(--primary-blue); box-shadow: 0 4px 8px rgba(0,0,0,0.15); transform: translateY(-1px); }

/* ---------- GRID ---------- */
.espaces-grid { display:grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap:26px; align-items:start; }

/* ---------- CARD ---------- */
.espace-card { border-radius:12px; overflow:hidden; position:relative; transition: transform .18s ease, box-shadow .18s ease; background:#111; }
.espace-card .card-link { display:block; color:inherit; text-decoration:none; height:100%; }
.card-media {
  width:100%; height:320px; background-position:center center; background-size:cover; display:block;
}
.espace-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #dfdaf8;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
  transition: transform .2s ease, box-shadow .2s ease;
}
.espace-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.4);
}

.card-media {
  width: 100%;
  overflow: hidden;
  height: 150px;
  object-fit: cover;
}
.card-img {
  width: 100%;
  height: auto;
  display: block;
}

.card-overlay {

  padding: 16px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;

}

.card-title {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  font-family: 'poppins', sans-serif;
  color: var(--primary-blue);
}

.card-meta {
  font-size: 14px;
  opacity: 0.85;
  font-family: 'poppins', sans-serif;
  color: var(--primary-blue);
}

.card-social {
  display: flex;
  gap: 10px;
  margin-top: 6px;
  z-index: 99;
}
.card-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  font-size: 16px;
  text-decoration: none;
  transition: background .2s;
}

.card-social-membre a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  font-size: 16px;
  text-decoration: none;
  transition: background .2s;
}

.card-social-membre {
  display: flex;
  gap: 10px;
  margin-top: 6px;
  justify-content: center;
  z-index: 99;
}
.card-social-membre a:hover { background: var(--primary-blue); color: #fff;text-decoration: none; }

.card-social a:hover { background: var(--primary-blue); color: #fff;text-decoration: none; }

.card-button {
  margin-top: 10px;
  align-self: flex-end;
}
.card-button a {
  background: transparent;
  border: 1px solid var(--primary-blue);
  color: white;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
}
.card-button a:hover {
  background: var(--primary-blue);
  color: #fff;
}

/*Fin page sur place*/
/*Footer*/
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-main) 50%, transparent 100%);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}
.footer-main {
    display: flex;
    margin-bottom: 1rem;
    justify-content: center;
}
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
.footer-logo-img {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}
.footer-logo span {
    font-family: 'Kooperative', sans-serif;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--text-gray);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.footer-description {
    color: var(--text-gray);
    font-size: 12px;
    line-height: 1.6;
    text-align: center;
    max-width: 400px;
}
.footer-nav {
    display: none
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.footer-links .footer-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
 
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a{
    font-family: 'Poppins', sans-serif;
    color: var(--text-white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    padding: 0.3rem 0;
    position: relative;
}


.footer-nav h4{
    font-family: 'Poppins', sans-serif;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
/*Fin footer*/

/*Tools*/
.wpcf7 form .wpcf7-response-output{
    margin: 0;
}
@media(max-width: 992px){
  .mentions-legales h1{
           font-size: 3rem;
        text-align: center;
        font-weight: bold;
        color: #ffffff;
        text-transform: uppercase;
        margin-bottom: 0;
        text-shadow: 0 4px 20px rgba(88, 106, 227, 0.5);
  }
  .mentions-legales h2{
        font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    font-family: 'poppins', sans-serif;
    margin-bottom: 25px;
    color: #ffde59;
  }
  .mentions-legales p{
      color: var(--text-white);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
    text-align: center;
    line-height: 1.6;
}
}

@media(min-width: 993px){
.mentions-legales h1{
  font-size: 10rem;
  margin-top: 2rem;
  text-align: center;
  font-weight: bold;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 0;
  text-shadow: 0 4px 20px rgba(88, 106, 227, 0.5);
}
.mentions-legales h2{
      font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    
    margin-bottom: 25px;
    color: #ffde59;
    font-family: 'poppins', sans-serif;
}

.mentions-legales p{
      color: var(--text-white);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
    line-height: 1.6;
}
}
.donation-popup{
  background: #d147ba;
  color: var(--text-white);
  border: none;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-family: 'poppins', sans-serif;
  font-weight: bold;
  font-size: 1.2rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s 
ease;
  text-transform: uppercase;
  margin-left: 1rem;
}