/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* GLOBAL */
body {
  font-family: 'Libre Baskerville', sans-serif;
  background: white; /* 🔥 important */
  color: #d4af37;
  margin: 0;
  padding: 0; 
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.header a {
  color: #d4af37;
  text-decoration: none;
  margin-left: 20px;
}





/* CONTACT */
.contact {
  padding: 80px;
  text-align: center;
}

/* FOOTER */
.footer {
  padding: 20px;
  text-align: center;
  border-top: 1px solid #d4af37;
}



/* TEXTE */
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

/* TITRE */
.logo-text .title {
  font-family: 'Libre Baskerville', serif;
  font-size: 15px;
   font-weight: 600;
  color: #2c3e50;
  letter-spacing: 0.5px;
}

/* SOUS TITRE */
.logo-text .subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  color: #6c7a89;
  letter-spacing: 1px;
}

/* ========================= */
/* DROPDOWN */
/* ========================= */

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;

  min-width: 240px;

  background: white;
  border-radius: 12px;

  padding: 10px 0;

  list-style: none;

  box-shadow: 0 15px 35px rgba(0,0,0,0.08);

  opacity: 0;
  visibility: hidden;

  transform: translateY(10px);

  transition: 0.25s ease;

  z-index: 999;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu a {
  display: block;

  padding: 12px 20px;

  color: #2c4f73;
  text-decoration: none;

  font-size: 14px;

  transition: 0.2s;
}

.dropdown-menu a:hover {
  background: #f5f5f6;
  color: #4d78a8;
}


@media (max-width: 768px) {

  .dropdown-menu {
    position: static;

    opacity: 1;
    visibility: visible;

    transform: none;

    box-shadow: none;

    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

}

@media (max-width: 768px){

  .dropdown-menu{
    display:none;
    opacity:1;
    visibility:visible;
    position:static;
    transform:none;
    box-shadow:none;
    padding-left:20px;
  }

  .dropdown.active .dropdown-menu{
    display:block;
  }

}

/* apres navbar */


/* HERO */
.hero {
  display: flex;
  width: 100%;
  height: 560px;
  background: #e7edf3;
   margin-bottom: 80px;
}

.hero-left {
  width: 45%;
  background: linear-gradient(90deg, #a9bfd6 0%, #dfe7ef 55%, #edf2f6 100%);
}

/* PARTIE DROITE */
.hero-right {
  width: 55%;
  position: relative;
}

/* IMAGE */
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 🔥 DÉGRADÉ */
.hero-gradient {
  position: absolute;
  left: 0;
  top: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    to right,
    #e7edf3 0%,
    rgba(231, 237, 243, 0.8) 40%,
    rgba(231, 237, 243, 0) 100%
  );
  z-index: 2;
}

body {
  padding-top: 80px;
}

/* TEXTE HERO */
.hero-text {
  max-width: 500px;
  margin-left: 60px;
  margin-top: 90px;
}

/* TITRE PRINCIPAL */
.hero-text h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: 30px;
  color: #2c3e50;
  line-height: 1.3;
  margin-bottom: 10px;
}

/* PARTIE BLEUE */
.hero-text .highlight {
  color: #6fa0d4;
  font-style: italic;
}
.hero-subtext {
  margin-top: 5px;
  font-size: 14px;
  color: #5c6b7a;
  max-width: 420px;
  line-height: 1.5;
  font-family: 'Montserrat', sans-serif;
}

.hero-btn {
  display: inline-block;
  text-decoration: none;

  background: #5d87b3;
  color: white;

  padding: 12px 25px;
  border-radius: 25px;
  margin-top: 70px;

  font-size: 14px;
  cursor: pointer;
}

.hero-btn2 {
  display: inline-block;
  text-decoration: none;

  background: #5d87b3;
  color: white;

  padding: 12px 25px;
  border-radius: 25px;
  margin-top: 10px;
  margin-left: 60px;

  font-size: 14px;
  cursor: pointer;
}

/* HOVER */
.hero-btn:hover {
  background: #1f2d3a;
}
.hero-btn {
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.hero {
  position: relative; /* 🔥 obligatoire */
  display: flex;
  width: 100%;
  height: 560px;
  background: #e7edf3;
}
.hero-2 {
  background: #f5f5f6;

}

.hero-info-bar{

  width:90%;
  max-width:1400px;

  margin:-90px auto 0;

  display:grid;
  grid-template-columns:repeat(4,1fr);

  gap:18px;

  background:none;
  padding:0;
  box-shadow:none;
}

/* ITEM */
.info-item{

  background:#fff;

  border-radius:12px;

  padding:18px 18px 18px 22px;

  position:relative;
  z-index: 50;

  min-height:105px;

  box-shadow:0 2px 8px rgba(0,0,0,.08);

  display:flex;
  align-items:flex-start;
}


/* BARRE COLOR*/
.info-item::before{

  content:"";

  position:absolute;

  left:0;
  top:0;

  width:5px;
  height:100%;

  background:#130f50;

  border-radius:12px 0 0 12px;
}

/* ICONE */
.icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e6eef5;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;
  
}

/* TEXTE */
.info-item p{

  font-family:'Montserrat',sans-serif;

  font-size:12px;

  color:#4a5a6a;

  line-height:1.4;
}



@media (max-width: 768px) {

  .hero {
    flex-direction: column;
    height: auto;
    margin-bottom: 20px;
  }

  .hero-right {
    display: none;
  }

  .hero-left {
    width: 100%;
    text-align: center;
    padding: 40px 20px;
  }

  .hero-text {
    margin: 0;
  }

  .hero-btn,
  .hero-btn2 {
    margin-left: 0;
    display: block;
    margin: 15px auto;
  }

  /* 🔥 BARRE DEVient NORMALE */
  .hero-info-bar {
    position: static;
    transform: none;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
  }

  .info-item {
    flex-direction: column;
    text-align: center;
  }

  /* TABLETTE */
@media (max-width:1024px){

  .hero-info-bar{
    grid-template-columns:repeat(2,1fr);
  }

}

@media (max-width:768px){

  .hero-info-bar{

    grid-template-columns:1fr;

    margin-top:20px;
  }

}

/* PETIT MOBILE */
@media (max-width: 480px) {
  .hero-info-bar {
    margin-top: 10px; /* 🔥 plus de chevauchement */
  }
}
}








/* SECTION */
.products {
  padding: 140px 60px 80px;
  background: #f5f5f6;
}

/* BLOC TEXTE */
.products-text {
  max-width: 400px;
}

/* PETIT TITRE */
.small-title {
  font-size: 14px;
  color: #6fa0d4;
  font-family: 'Montserrat', sans-serif;
}

/* TITRE PRINCIPAL */
.products-text h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 28px;
  color: #2c3e50;
  margin: 10px 0;
}

/* TEXTE */
.products-text p {
  font-size: 14px;
  color: #5c6b7a;
  line-height: 1.5;
  font-family: 'Montserrat', sans-serif;
}

/* CONTAINER GLOBAL */
.products-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* CARTES */
.cards-container {
  display: flex;
  gap: 30px;

  justify-content: center; /* centre */

}

/* STYLE DES CARTES */
.card-box {
  width: 260px;
  min-height: 260px;

  background: #ffffff;
  border-radius: 12px;

  /* 🔥 OMBRE */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);

  /* BONUS */
  transition: 0.3s ease;
}



/* HOVER (effet pro) */
.card-box:hover {
  transform: translateY(-5px);
}

/* IMAGE */
.card-image img {
  width: 100%;
  height: 120px;
  object-fit: cover;

  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

/* CONTENU */
.card-content {
  padding: 15px;
}

/* TITRE */
.card-content h3 {
  font-size: 15px;
  color: #2c4f73;
  margin-bottom: 8px;
}

/* DURÉE */
.card-duration {
  font-size: 13px;
  color: #7a8ca5;
  margin-bottom: 12px;
}

/* LIEN */
.card-link {
  font-size: 13px;
  color: #5d87b3;
  text-decoration: none;
}

.card-link:hover {
  text-decoration: underline;
}

/* 📱 RESPONSIVE PRODUITS */
@media (max-width: 768px) {

  .products {
    padding: 80px 20px;
  }

  /* 🔥 ON PASSE EN COLONNE */
  .products-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* 🔥 TEXTE CENTRÉ */
  .products-text {
    max-width: 100%;
    margin-bottom: 40px;
  }

  /* 🔥 SLIDE CONSERVÉ */
  .cards-container {
    width: 100%;
    overflow-x: auto;
    display: flex;
    gap: 20px;

    padding-bottom: 10px;

    scroll-snap-type: x mandatory;
  }

  /* 🔥 CARTES EN SLIDE */
  .card-box {
    min-width: 220px;
    flex-shrink: 0;
    scroll-snap-align: start;
  }

}















/* Masterclass prochain carte */



/* CONTENEUR GLOBAL */

.homepage-section-bg{

  background-color: #f5f5f6;
  padding:1px 0;
}


.homepage-widgets{

  width:90%;
  max-width:1400px;

  margin:80px auto;

  display:grid;

  grid-template-columns:
    1.4fr
    1fr
    1fr;

  gap:25px;

  align-items:stretch;
}


/* SECTION */

.events-section{
  width:100%;
}

.event-card{

  background:white;

  border-radius:18px;

  padding:30px;

  position:relative;

  box-shadow:0 10px 25px rgba(0,0,0,.08);

  overflow:hidden;

  height:100%;
}

.event-card::before{

  content:"";

  position:absolute;

  left:0;
  top:0;

  width:6px;
  height:100%;

  background:#c79f2f;
}

.event-card-header{

  display:flex;
  align-items:center;
  gap:15px;

  margin-bottom:25px;
}

.event-icon{

  width:60px;
  height:60px;

  border-radius:50%;

  background:#f4f1e7;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:24px;
}

.event-card-header h3{

  color:#2c4f73;

  font-size:28px;

  margin-bottom:5px;
}

.event-card-header p{

  color:#6f7f8f;
}

.event-main{

  display:flex;
  gap:25px;

  margin-bottom:25px;
}

.event-date{

  min-width:110px;

  background:#f7f5ef;

  border-radius:15px;

  display:flex;
  flex-direction:column;

  align-items:center;

  justify-content:center;

  padding:20px;
}

.month{

  color:#c79f2f;
  font-weight:700;
}

.day{

  font-size:52px;
  font-weight:700;

  color:#2c4f73;
}

.year{

  color:#6f7f8f;
}

.event-tag{

  display:inline-block;

  background:#f4f1e7;

  color:#c79f2f;

  font-size:12px;

  padding:6px 12px;

  border-radius:30px;

  margin-bottom:15px;
}

.event-content h4{

  color:#2c4f73;

  font-size:24px;

  margin-bottom:10px;
}

.event-content p{

  color:#5f6d7a;

  line-height:1.6;
}

.event-places{

  background:#f8f8f8;

  padding:15px;

  border-radius:12px;

  margin-bottom:20px;

  color:#c79f2f;

  font-weight:600;
}

.event-btn{

  display:block;

  text-align:center;

  text-decoration:none;

  background:#2c4f73;

  color:white;

  padding:16px;

  border-radius:12px;

  font-weight:600;

  transition:.3s;
}

.event-btn:hover{

  transform:translateY(-2px);
}

@media (max-width:1024px){

  .event-main{
    flex-direction:column;
  }

  .event-date{
    width:100%;
  }

}

@media (max-width:768px){

  .event-card{
    padding:20px;
  }

  .event-card-header{
    flex-direction:column;
    text-align:center;
  }

  .event-card-header h3{
    font-size:24px;
  }

  .event-content h4{
    font-size:20px;
  }

}

/* KPI*/

.kpi-card{

  background:white;
  border-radius:18px;

  padding:30px;

  box-shadow:0 10px 25px rgba(0,0,0,.08);

  position:relative;
}

.kpi-card::before{

  content:"";

  position:absolute;

  left:0;
  top:0;

  width:6px;
  height:100%;

  background:#3b8c6d;
}

.card-title{

  font-size:26px;
  font-weight:700;

  color:#2c4f73;

  margin-bottom:25px;
}

.kpi-grid{

  display:flex;

  justify-content:space-between;

  gap:20px;
}

.kpi-item{

  flex:1;

  background:#f7f9fb;

  border-radius:15px;

  padding:20px;

  text-align:center;
}

.kpi-number{

  display:block;

  font-size:38px;

  font-weight:700;

  color:#3b8c6d;
}

.kpi-label{

  color:#5f6d7a;

  font-size:14px;
}


/* actu resaux */

.news-card{

  background:white;

  border-radius:18px;

  padding:30px;

  box-shadow:0 10px 25px rgba(0,0,0,.08);

  position:relative;
}

.news-card::before{

  content:"";

  position:absolute;

  left:0;
  top:0;

  width:6px;
  height:100%;

  background:#2c4f73;
}

.news-tag{

  display:inline-block;

  background:#eef3f8;

  color:#2c4f73;

  padding:6px 12px;

  border-radius:20px;

  font-size:12px;

  margin-bottom:15px;
}

.news-post h4{

  color:#2c4f73;

  font-size:22px;

  margin-bottom:12px;
}

.news-post p{

  color:#5f6d7a;

  line-height:1.6;

  margin-bottom:20px;
}

.news-btn{

  display:inline-block;

  text-decoration:none;

  color:white;

  background:#2c4f73;

  padding:12px 20px;

  border-radius:12px;
}


/* TABLETTE */

@media (max-width:1024px){

  .homepage-widgets{

    grid-template-columns:1fr;

    gap:20px;
  }

  .event-main{

    flex-direction:column;
  }

  .event-date{

    width:100%;
    min-width:unset;
  }

}

/* MOBILE */

@media (max-width:768px){

  .homepage-widgets{

    width:95%;

    margin:40px auto;
  }

  .event-card,
  .kpi-card,
  .news-card{

    padding:20px;
  }

  .event-card-header{

    flex-direction:column;

    text-align:center;
  }

  .event-card-header h3{

    font-size:24px;
  }

  .event-content h4{

    font-size:20px;
  }

  .card-title{

    font-size:22px;
  }

  .kpi-grid{

    flex-direction:column;
  }

}










/* A PROPOS ACCUEIL*/


.presentation{

  background:linear-gradient(
    to bottom,
    #f5f5f6 0%,
    #6695c3 100%
  );

  padding:80px 0;
}

.presentation-box{

  width:90%;
  max-width:1700px;

  margin:auto;

  background:rgba(255,255,255,0.25);

  backdrop-filter:blur(8px);

  border-radius:30px;

  padding:60px;

  display:grid;

  grid-template-columns:
    1.1fr
    0.9fr;

  gap:60px;

  align-items:center;
}

.presentation-label{

  display:inline-block;

  color:#c79f2f;

  font-size:13px;

  font-weight:600;

  margin-bottom:15px;

  letter-spacing:1px;
}

.presentation-left h2{

  font-family:'Libre Baskerville', serif;

  font-size:48px;

  color:#233f5f;

  margin-bottom:25px;
}

.presentation-left p{

  font-family:'Montserrat', sans-serif;

  font-size:15px;

  line-height:1.8;

  color:#2c3e50;

  margin-bottom:18px;
}

.presentation-cards{

  display:flex;

  gap:15px;

  margin-top:35px;
}

.mini-card{

  flex:1;

  background:white;

  border-radius:18px;

  padding:20px;

  text-align:center;

  box-shadow:0 10px 25px rgba(0,0,0,.08);

  border-left:4px solid #c79f2f;
}

.mini-card span{

  font-size:26px;

  display:block;

  margin-bottom:10px;
}

.mini-card p{

  margin:0;

  font-size:14px;

  font-weight:600;

  color:#2c4f73;
}

.presentation-right{

  position:relative;

  display:flex;

  justify-content:center;
}

.presentation-circle{

  position:absolute;

  width:260px;
  height:260px;

  background:#2c4f73;

  border-radius:50%;

  bottom:-40px;
  left:20px;

  z-index:1;
}

.presentation-image{

  width:100%;
  max-width:500px;

  height:340px;

  overflow:hidden;

  border-radius:40px;

  position:relative;

  z-index:2;
}

.presentation-image img{

  width:100%;
  height:100%;

  object-fit:cover;
}



@media (max-width:1024px){

  .presentation-box{

    grid-template-columns:1fr;

    text-align:center;
  }

  .presentation-cards{

    flex-direction:column;
  }

  .presentation-right{

    margin-top:20px;
  }

}

@media (max-width:768px){

  .presentation{

    padding:50px 0;
  }

  .presentation-box{

    padding:30px 20px;
  }

  .presentation-left h2{

    font-size:36px;
  }

  .presentation-circle{

    display:none;
  }

  .presentation-image{

    height:250px;
  }

}



















/* cONTACT ACCUEIL*/

.contact-section {
  width: 100%;
  background: #f5f5f6;
  padding: 90px 60px 0;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: nowrap;
}

.contact-text {
  width:50% ;
  max-width: 470px;
  padding-top: 40px;
}

@media (max-width: 768px) {

  .contact-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-text,
  .contact-form-box {
    width: 100%;
    max-width: 100%;
  }

}
.contact-text h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 28px;
  line-height: 1.35;
  color: #2c4f73;
  margin-bottom: 10px;
}

.contact-text h3 {
  font-family: 'Libre Baskerville', serif;
  font-size: 20px;
  font-style: italic;
  color: #6fa0d4;
  margin-bottom: 12px;
}

.contact-text p {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #2f2f2f;
}

.contact-form-box {
  width: 50%;
  max-width: 420px;
  min-height: 520px;
  background: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  padding: 28px;
  margin-top: 0px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  padding: 14px 16px;
  border: 1px solid #d7dce2;
  border-radius: 6px;
  background: #ffffff;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #6695c3;
}

.contact-form textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-form button {
  padding: 14px 20px;
  background: #2c4f73;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form button:hover {
  background: #213b56;
}

/* TITRE */
.contact h2 {
  text-align: center;
  font-size: 28px;
  color: #2c4f73;
  margin-bottom: 30px;
}

/* LIGNE DOUBLE (nom / prénom) */
.form-row {
  display: flex;
  gap: 12px;
}

.form-row input {
  width: 100%;
}

/* CHECKBOX */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 5px;
}

.checkbox-group label {
  font-size: 12px;
  color: #2f2f2f;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

.checkbox-group input {
  margin-top: 3px;
  width: auto;
}

/* INFOS EN BAS */
.contact-info {
  margin-top: 15px;
  font-size: 10px;
  color: #6b7f97;
  line-height: 1.5;
}

/* PETIT ESPACE ENTRE FORM ET INFOS */
.contact-form-box p {
  margin-top: 10px;
}











/* Professionnel et particulie */

/* ========================= */
/* PROFESSIONNEL / PARTICULIER */
/* ========================= */

.prof {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
}

.accompagnement {
  padding: 0 60px 150px;
  position: relative;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(
    to bottom,
    #6695c3 0%,
    #f5f5f6 100%
  );
}

/* TITRE */
.accompagnement-title {
  font-size: 36px;
  max-width: 800px;
  text-align: center;
  margin: 0 auto 80px;
  line-height: 1.3;
  color: #2c4f73;
}

.accompagnement-title::after {
  content: "";
  display: block;
  width: 300px;
  height: 40px;
  border-bottom: 2px solid #5d87b3;
  border-radius: 100%;
  margin: 10px auto 0;
  opacity: 0.6;
}


/* COURBE DU BAS */
.bottom-curve {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 55px;
  width: 300px;
  height: 40px;
  border-top: 2px solid #7fa3c6;
  border-radius: 100%;
  opacity: 0.9;
}

.cards-grid{

  max-width:1600px;

  margin:80px auto 0;

  display:grid;

  grid-template-columns:repeat(5,1fr);

  gap:22px;
}

.accompagnement-card{

  background:rgba(255,255,255,0.95);

  border-radius:30px;

  padding:45px 30px;

  min-height:460px;

  display:flex;
  flex-direction:column;
  align-items:center;

  text-align:center;

  box-shadow:
  0 15px 40px rgba(0,0,0,.06);

  transition:.3s ease;
}

.accompagnement-card:hover{

  transform:translateY(-8px);
}

.accompagnement-card .card-icon{

  width:105px;
  height:105px;

  border-radius:50%;

  background:#eaf1fa;

  margin-bottom:25px;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:52px;
}

.accompagnement-card h3{

  color:#204a7a;

  font-size:22px;

  margin-bottom:18px;

  font-family:'Montserrat',sans-serif;

  font-weight:700;

  position:relative;
}

.accompagnement-card h3::after{

  content:"";

  display:block;

  width:40px;
  height:3px;

  background:#d3aa37;

  margin:18px auto 0;

  border-radius:50px;
}

.accompagnement-card p{

  color:#4d6077;

  line-height:1.8;

  font-size:15px;

  margin-top:10px;
}

.accompagnement-card::after{

  content:"";

  width:120px;
  height:18px;

  border-top:2px solid #7ea2c6;

  border-radius:100%;

  margin-top:auto;
}


.card-icon i{

  font-size:48px;

  color:#204a7a;
}


/* ========================= */
/* MOBILE */
/* ========================= */
@media (max-width: 768px) {

  /* STRUCTURE */
  .prof-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

 
  .bottom-curve {
    display: none;
  }



  @media (max-width:1024px){

  .cards-grid{

    grid-template-columns:
      repeat(2,1fr);
  }

}

@media (max-width:768px){

  .cards-grid{

    grid-template-columns:1fr;

    width:95%;
  }

  .accompagnement-card{

    padding:30px 20px;
  }

  .accompagnement-card h3{

    font-size:24px;
  }

}

}









/* PAGE FORMATION */

.formations {
  display: flex;
  width: 100%;
  height: 390px;
  background: #e7edf3;
  padding: 2px 6px;
  box-sizing: border-box;
}

/* PARTIE GAUCHE */
.formations-left {
  width: 50%;
  background: linear-gradient(90deg, #a9bfd6 0%, #dfe7ef 55%, #edf2f6 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* CONTENU TEXTE */
.formations-content {
  padding: 0 40px 0 70px;
  max-width: 520px;
}

.formations-content h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: 34px;
  color: #2c4f73;
  margin-bottom: 10px;
}

.formations-content h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 32px;
  font-style: italic;
  color: #4d78a8;
  margin-bottom: 15px;
}

.formations-content p {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: #6b7f97;
  line-height: 1.5;
  margin-bottom: 24px;
  max-width: 430px;
}

/* TAGS */
.formations-tags {
  overflow: hidden;
  margin-top: 20px;
  height: 83px; /* 🔥 IMPORTANT */
  display: flex;
  align-items: center;
}

.formation-tag {
  width: 190px;
  min-height: 80px;
  background: #ffffff;
  border-radius: 14px;
  flex-shrink: 0;
}

.formations-tags {
  overflow: hidden;
  margin-top: 20px;
}

.tags-track {
  display: flex;
  gap: 15px;
  width: max-content;
  animation: scrollTags 15s linear infinite;
  align-items: center;
}

/* Style des tags */
.formation-tag {
  flex: 1;
  background: white;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: 0.3s;
}

/* titre */
.formation-tag h3 {
  font-size: 11px; /* 🔥 plus petit */
  font-weight: 600;
  color: #2c4f73;
  margin-bottom: 4px;
  margin-top: 15px;
  line-height: 1.2;
}

/* texte */
.formation-tag p {
  font-size: 9px;
  color: #6b7f97;
  line-height: 1.3;
}

/* hover léger */
.formation-tag:hover {
  transform: translateY(-3px);
}

/* Animation */
@keyframes scrollTags {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 900px) {
  .formation-tag {
    font-size: 12px;
    padding: 8px 16px;
     flex-direction: column;
  }
}
/* PARTIE DROITE */
.formations-right {
  width: 55%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* IMAGE */
.formations-right img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .formations {
    flex-direction: column;
    height: auto;
    padding: 30px 20px;
  }

  .formations-left,
  .formations-right {
    width: 100%;
    text-align: center; 
  }
.formations-right {
    display: none;
  }

  
}


.search-section {
  position: relative;
  z-index: 50;
}

.formations-search-bar {
  width: 85%;
  height: 68px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 40px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);

  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 18px;

  position: relative;
  top: -34px; /* remonte sur l'image */
}
.duration-filter {
  position: relative;
}

/* bouton */
.duration-btn {
  height: 42px;
  padding: 0 15px;
  border: 1px solid #b8d0e6;
  border-radius: 24px;
  background: #fff;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: #5d7390;
}

/* dropdown */
.duration-dropdown {
  position: absolute;
  top: 50px;
  left: 0;
  width: 180px;
  padding: 15px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  display: none;
  z-index: 100;
}

/* actif */
.duration-dropdown.active {
  display: block;
}

.duration-dropdown label {
  font-size: 13px;
  font-family: 'Montserrat', sans-serif;
  color: #5d7390;
}

.duration-dropdown input {
  width: 100%;
  margin-top: 10px;
  accent-color: #5d87b3;
}
.formations-search-input {
  flex: 2;
  height: 42px;
  border: 1px solid #b8d0e6;
  border-radius: 24px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  background: #ffffff;
}

.search-icon {
  font-size: 14px;
  color: #7ea2c6;
  margin-right: 8px;
}

.formations-search-input input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: #4f647b;
}

.formations-search-input input::placeholder {
  color: #7ea2c6;
}

.formations-search-filter {
  min-width: 110px;
  height: 42px;
  border: 1px solid #b8d0e6;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: #7ea2c6;
  background: #ffffff;
  flex-shrink: 0;
}

.formations-search-btn {
  width: 120px;
  height: 42px;
  border: none;
  border-radius: 24px;
  background: #5d87b3;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  cursor: pointer;
}

CARTE FORMATION

.formations-cards-section {
  padding: 30px 24px 60px;
  background: #f5f5f6;
}

.formations-cards-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-left: 40px;
}

.formation-card {
  width: 250px;
  background: #ffffff;
  border: 1px solid #cfcfcf;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.formation-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}

.formation-card-content {
  padding: 10px 8px 8px;
}

.formation-card-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #2c4f73;
  margin-bottom: 6px;
}

.formation-card-content h4 {
  font-family: 'Libre Baskerville', serif;
  font-size: 10px;
  font-weight: 700;
  color: #4b76a1;
  margin-bottom: 6px;
}

.formation-duration {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  color: #7b8ea3;
  margin-bottom: 8px;
  position: relative;
  padding-left: 10px;
}

.formation-duration::before {
  content: "⌛";
  position: absolute;
  left: 0;
  top: -1px;
  font-size: 8px;
}

.formation-card-content a {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  color: #7ea2c6;
  text-decoration: underline;
}
.formation-card.hidden {
  display: none;
}
.reset-btn {
  height: 42px;
  padding: 0 16px;
  border: 1px solid #d6dde6;
  border-radius: 24px;
  background: #f5f5f6;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: #5d7390;
  cursor: pointer;
  transition: 0.2s;
}

.reset-btn:hover {
  background: #e9eef3;
}

/* BURGER */
.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  margin-right: auto;
}

.burger span {
  width: 25px;
  height: 3px;
  background: black;
  margin: 4px 0;
}






@media (max-width: 768px) {

  .formations-right {
    display: none; /* 🔥 supprime l'image */
  }

  .formations-left {
    width: 100%;
    text-align: center;
  }

}
@media (max-width: 768px) {

  .formations-info-bar {
    position: relative; /* 🔥 plus de absolute */
    transform: none;

    width: 100%;
    margin-top: 20px;

    flex-direction: column;
    gap: 15px;
    padding: 20px;
  }

}

@media (max-width: 768px) {

  .formations-search-bar {
    flex-direction: column;
    gap: 10px;

    height: auto;
    padding: 15px;
  }

  .formations-search-bar input,
  .formations-search-bar select,
  .formations-search-bar button {
    width: 100%;
  }

}

/* 🔥 BARRE BLEUE (contrôle global) */
.RPG-section {
  background: #2f4a63;
  width: 100%;
   margin-top: 120px;
  padding-top: 60px;   /* 🔥 hauteur haut */
  padding-bottom: 20px; /* 🔥 hauteur bas */

  color: #fff;
}

/* 🔥 CONTENU (indépendant du fond) */
.RPG-container {
  max-width: 600px;
  margin-left: 80px; /* 🔥 décalage horizontal */
}

/* TITRE */
.RPG-container h3 {
  font-family: 'Libre Baskerville', serif;
  font-size: 22px;
  color: #cfe0ef;
  margin-bottom: 20px;
}

/* TEXTE */
.RPG-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: #d6e2ec;
  line-height: 1.6;
}

/* LIENS HAUT */
.RPG-links-top {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.RPG-links-top a {
  font-size: 13px;
  color: #ffffff;
  text-decoration: underline;
}

/* LIGNE */
.RPG-divider {
  width: 260px;
  height: 2px;
  background: #cfe0ef;
  margin: 20px 0;
}

/* LIENS BAS */
.RPG-links-bottom {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.RPG-links-bottom a {
  font-size: 13px;
  color: #cfe0ef;
  text-decoration: none;
}

.RPG-links-bottom a:hover {
  text-decoration: underline;
}

/* 🔥 BOTTOM BAR */
.RPG-bottom-bar {
  margin-top: 40px;
  padding: 15px 0;
  text-align: center;
  font-size: 12px;
  color: #cfe0ef;

  border-top: 1px solid #4e6b85;
  background: #2f4a63;
}









/* PAGE */
.about-page {
  background: #f5f5f6;
  padding-bottom: 80px;
}

/* HERO */
.about-hero {
  text-align: center;
  padding: 80px 20px;
}

.about-hero h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: 40px;
  color: #2c4f73;
}

.about-hero p {
  max-width: 700px;
  margin: 15px auto;
  color: #6b7f97;
}

/* SECTION */
.about-section {
  padding: 60px;
}

.about-section.light {
  background: #eef3f8;
}

/* GRID */
.about-grid {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-grid.reverse {
  flex-direction: row-reverse;
}

/* TEXTE */
.about-text h2 {
  font-family: 'Libre Baskerville', serif;
  margin-bottom: 15px;
  color: #2c4f73;
}

.about-text p {
  font-size: 14px;
  margin-bottom: 15px;
  color: #2c3e50;
  line-height: 1.6;
}

/* IMAGE */
.about-image img {
  width: 400px;
  border-radius: 20px;
}

/* VALEURS */
.about-values {
  text-align: center;
  padding: 80px 20px;
}

.values-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.value-card {
  width: 260px;
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* CREDIBILITE */
.about-credibility {
  max-width: 800px;
  margin: auto;
  text-align: center;
  padding: 60px 20px;
}

/* CTA */
.about-cta {
  text-align: center;
}

.about-cta a {
  background: #2c4f73;
  color: white;
  padding: 12px 25px;
  border-radius: 20px;
  text-decoration: none;
}



/* CENTRER TITRE */
.center {
  text-align: center;
  margin-bottom: 30px;
}

/* GRID PLUS PROPRE */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

/* CARTES */
.value-card {
  width: 260px;
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.value-card p {
  font-size: 14px;
  color: #2c3e50;
}

.value-card h3 {
  color: #2c4f73;
  margin-bottom: 10px;
}

.about-values,
.about-credibility {
  color: #2c3e50;
}

.about-values h2,
.about-credibility h2 {
  color: #2c4f73;
}




/* PAGE */
.contact-page {
  padding: 80px 60px;
  background: #f5f5f6;
}

/* HEADER */
.contact-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-header h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: 36px;
  color: #2c4f73;
}

.contact-header p {
  max-width: 600px;
  margin: 10px auto;
  color: #6b7f97;
}

/* WRAPPER */
.contact-wrapper {
  display: flex;
  justify-content: center;
  gap: 50px;
  align-items: flex-start;
}

/* FORM BOX */
.contact-form-box {
  width: 420px;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* TITRE FORM */
.contact-form-box h2 {
  margin-bottom: 20px;
  color: #2c4f73;
}

/* INFOS BOX */
.contact-info-box {
  width: 300px;
  padding: 30px;
}

.contact-info-box h3 {
  color: #2c4f73;
  margin-bottom: 20px;
}

.contact-info-box p {
  font-size: 14px;
  margin-bottom: 15px;
  color: #2c3e50;
}

.contact-note {
  margin-top: 20px;
  font-size: 12px;
  color: #6b7f97;
}








/* PAGE LEGALE */
.legal-page {
  background: #f5f5f6;
  padding: 80px 20px;
}

.legal-container {
  max-width: 800px;
  margin: auto;
}

/* TITRE */
.legal-container h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: 36px;
  color: #2c4f73;
  margin-bottom: 30px;
}

/* SOUS TITRE */
.legal-container h2 {
  margin-top: 40px;
  margin-bottom: 15px;
  color: #2c4f73;
}

/* TEXTE */
.legal-container p {
  font-size: 14px;
  color: #2c3e50;
  line-height: 1.7;
  margin-bottom: 15px;
}






/* PAGE */
.reclamation-page {
  padding: 80px 60px;
  background: #f5f5f6;
}

/* HEADER */
.reclamation-header {
  text-align: center;
  margin-bottom: 50px;
}

.reclamation-header h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: 36px;
  color: #2c4f73;
}

.reclamation-header p {
  max-width: 600px;
  margin: 10px auto;
  color: #6b7f97;
}

/* CONTAINER */
.reclamation-container {
  display: flex;
  gap: 60px;
  justify-content: center;
  align-items: flex-start;
}

/* TEXTE */
.reclamation-info {
  max-width: 500px;
}

.reclamation-info h2 {
  margin-top: 25px;
  color: #2c4f73;
}

.reclamation-info p {
  font-size: 14px;
  color: #2c3e50;
  line-height: 1.6;
}

/* FORM */
.reclamation-form-box {
  width: 420px;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.reclamation-form-box h2 {
  margin-bottom: 20px;
  color: #2c4f73;
}








/* HERO */
.partner-hero {
  height: 400px;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;

  background: linear-gradient(
    to bottom,
    #6695c3 0%,
    #f5f5f6 100%
  );
}

/* CONTENU */
.partner-hero-content {
  max-width: 600px;
  padding: 20px;
}

/* TITRE */
.partner-hero h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: 34px;
  color: #2c4f73;
  margin-bottom: 15px;
}

/* TEXTE */
.partner-hero p {
  font-size: 15px;
  color: #2c3e50;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* BOUTON CTA */
.contact-btn {
  display: inline-block;

  background: linear-gradient(135deg, #5d87b3, #2c4f73);
  color: #ffffff;

  padding: 14px 28px;
  border-radius: 30px;

  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;

  text-decoration: none;
  cursor: pointer;

  box-shadow: 0 10px 25px rgba(44, 79, 115, 0.25);

  transition: all 0.3s ease;
}

/* HOVER */
.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(44, 79, 115, 0.35);
}

/* ACTIVE (quand tu cliques) */
.contact-btn:active {
  transform: translateY(0);
  box-shadow: 0 5px 15px rgba(44, 79, 115, 0.2);
}

/* SECTION */
.partner-info {
  padding: 80px 60px;
  background: #ffffff;
}

/* CONTAINER */
.partner-info-container {
  max-width: 1100px;
  margin: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 60px;
}

/* TEXTE */
.partner-text {
  max-width: 500px;
}

.partner-text h2 {
  font-family: 'Libre Baskerville', serif;
  color: #2c4f73;
  margin-bottom: 15px;
}

.partner-text p {
  font-size: 14px;
  color: #2c3e50;
  line-height: 1.6;
}

/* CARD INFOS */
.partner-card {
  width: 320px;

  background: #f5f5f6;
  padding: 25px;

  border-radius: 15px;

  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.partner-card h3 {
  color: #2c4f73;
  margin-bottom: 15px;
}

/* LISTE */
.partner-card ul {
  list-style: none;
  padding: 0;
}

.partner-card li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #2c3e50;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .partner-info-container {
    flex-direction: column;
    text-align: center;
  }

  .partner-card {
    width: 100%;
  }
}




/* SECTION */
.partner-highlight {
  padding: 60px 20px;
  background: #f5f5f6;
}

/* BARRE */
.partner-bar {
  max-width: 900px;
  margin: auto;

  display: flex;
  align-items: center;
  gap: 30px;

  background: white;
  padding: 25px 30px;

  border-radius: 15px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.05);

  transition: 0.3s ease;
}

/* HOVER */
.partner-bar:hover {
  transform: translateY(-3px);
}

/* LOGO */
.partner-logo img {
  width: 80px;
  height: auto;
}

/* INFOS */
.partner-details h3 {
  margin: 0;
  font-family: 'Libre Baskerville', serif;
  color: #2c4f73;
}

/* LIEU */
.partner-location {
  font-size: 13px;
  color: #6b7f97;
  margin: 5px 0;
}

/* LIEN */
.partner-link {
  font-size: 14px;
  color: #5d87b3;
  text-decoration: none;
}

.partner-link:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .partner-bar {
    flex-direction: column;
    text-align: center;
  }
}




/* Floating CTA Banner */

.floating-banner{

  position:fixed;

  bottom:20px;
  left:50%;

  transform:translateX(-50%);

  width:min(95%,1100px);

  background:#0d2c4d;

  border-radius:16px;

  padding:16px 24px;

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;

  z-index:9999;

  box-shadow:0 15px 40px rgba(0,0,0,.2);

}

.banner-text{
  flex:1;
}

.banner-text h4{
  color:white;
  font-size:clamp(13px,1vw,16px);
  margin-bottom:4px;
}

.banner-text p{
  color:#c7d3df;
  font-size:clamp(10px,0.8vw,13px);
}

.banner-btn{

  background:#d4af37;
  color:#0d2c4d;

  text-decoration:none;

  padding:12px 20px;

  border-radius:12px;

  white-space:nowrap;

  font-weight:600;
}

.banner-close{

  background:none;
  border:none;

  color:white;

  cursor:pointer;

  font-size:18px;
}


@media (max-width:1024px){

  .floating-banner{

    width:95%;
    padding:14px 18px;
  }

}


@media (max-width:768px){

  .floating-banner{

    flex-direction:column;

    text-align:center;

    gap:12px;

    bottom:10px;

    padding:16px;
  }

  .banner-btn{

    width:100%;
  }

  .banner-close{

    position:absolute;

    top:10px;
    right:10px;
  }

}














/* Webbinaire Page */


.formations-2 {
  display: flex;
  width: 100%;
  height: 390px;
  background: #e7edf3;
  padding: 2px 6px;
  box-sizing: border-box;
}

/* PARTIE GAUCHE */
.formations-left-2 {
  width: 50%;
  background: linear-gradient(90deg, #a9bfd6 0%, #dfe7ef 55%, #edf2f6 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* CONTENU TEXTE */
.formations-content-2 {
  padding: 0 40px 0 70px;
  max-width: 520px;
}


/* PARTIE DROITE */
.formations-right-2 {
  width: 70%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* IMAGE */
.formations-right-2 img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}


/* CONTENU TEXTE */
.formations-content-2 {
  padding: 0 40px 0 70px;
  max-width: 520px;
}

.formations-content-2 h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: 34px;
  color: #2c4f73;
  margin-bottom: 10px;
}

.formations-content-2 h2 {
  font-family: 'Libre Baskerville', sans-serif;
  font-size: 32px;
  
  color: #4d78a8;
  margin-bottom: 15px;
}





@media (max-width: 900px) {
  .formations-2 {
    flex-direction: column;
    height: auto;
    padding: 30px 20px;
  }

  .formations-left-2,
  .formations-right-2 {
    width: 100%;
    text-align: center; 
  }
.formations-right-2 {
    display: none;
  }

  
}


@media (max-width: 768px) {

  .formations-right-2 {
    display: none; /* 🔥 supprime l'image */
  }

  .formations-left-2 {
    width: 100%;
    text-align: center;
  }

}



.events-grid{

  width:90%;
  max-width:1400px;

  margin:80px auto;

  display:grid;

  grid-template-columns:
  repeat(2,1fr);

  gap:30px;
}

/* CARTE */

.event-card{

  background:white;

  border-radius:24px;

  padding:25px;

  box-shadow:
  0 10px 30px rgba(0,0,0,.06);
}

.event-top{

  display:flex;

  gap:25px;
}

/* DATE */

.event-date{

  min-width:120px;

  background:#f8f6f1;

  border-radius:18px;

  display:flex;

  flex-direction:column;

  align-items:center;

  justify-content:center;

  padding:20px;
}

.month{

  color:#c89f31;

  font-size:22px;
}

.day{

  font-size:72px;

  font-weight:700;

  color:#2c4f73;

  line-height:1;
}

.year{

  color:#6f7f8f;

  font-size:22px;
}

/* CONTENU */

.event-content{

  flex:1;
}

.event-badge{

  display:inline-block;

  background:#f8f6f1;

  color:#c89f31;

  padding:8px 15px;

  border-radius:40px;

  font-size:13px;

  margin-bottom:15px;
}

.event-content h3{

  color:#2c4f73;

  font-size:42px;

  line-height:1.2;

  margin-bottom:15px;

  font-family:'Libre Baskerville', serif;
}

.event-content p{

  color:#5f6d7a;

  font-size:18px;

  line-height:1.7;
}

/* PLACES */

.event-places{

  margin-top:25px;

  background:#fafafa;

  border-radius:14px;

  padding:18px;

  color:#c89f31;

  font-size:22px;
}

/* BTN */

.event-btn{

  display:block;

  margin-top:20px;

  text-align:center;

  text-decoration:none;

  background:#2c4f73;

  color:white;

  padding:22px;

  border-radius:16px;

  font-size:28px;

  font-family:'Libre Baskerville', serif;
}

/* CTA */

.event-cta{

  width:90%;
  max-width:1400px;

  margin:0 auto 80px;

  background:#f8f6f1;

  border-radius:24px;

  padding:25px 35px;

  display:flex;

  justify-content:space-between;

  align-items:center;
}

.cta-left{

  display:flex;

  gap:20px;

  align-items:center;
}

.cta-icon{

  width:70px;
  height:70px;

  border-radius:50%;

  background:white;

  display:flex;

  align-items:center;
  justify-content:center;

  font-size:32px;
}

.cta-left h3{

  color:#2c4f73;

  margin-bottom:8px;

  font-family:'Libre Baskerville', serif;
}

.cta-left p{

  color:#5f6d7a;
}

.cta-btn{

  background:#2c4f73;

  color:white;

  text-decoration:none;

  padding:16px 40px;

  border-radius:14px;
}


@media (max-width:768px){

  .events-grid{

    grid-template-columns:1fr;
  }

  .event-top{

    flex-direction:column;
  }

  .event-date{

    width:100%;
  }

  .event-content h3{

    font-size:28px;
  }

  .event-places{

    font-size:18px;
  }

  .event-btn{

    font-size:22px;
  }

  .event-cta{

    flex-direction:column;

    gap:20px;

    text-align:center;
  }

  .cta-left{

    flex-direction:column;
  }

}



.event-meta{

  display:grid;

  grid-template-columns:
  repeat(3,1fr);

  gap:10px;

  margin-top:20px;
}

.meta-item{

  background:#f8f8f8;

  padding:12px;

  border-radius:10px;
}

.meta-item strong{

  display:block;

  color:#2c4f73;

  font-size:12px;

  margin-bottom:4px;
}

.meta-item span{

  color:#5f6d7a;

  font-size:13px;
}

.event-places{

  margin-top:25px;

  background:#fafafa;

  border-radius:14px;

  padding:18px;

  color:#c89f31;

  font-size:22px;

  display:flex;

  align-items:center;

  gap:12px;
}

.event-places i{

  font-size:24px;

  color:#030922;
}

.event-places span{

  line-height:1;
}