@charset "UTF-8";
@font-face {
  font-family: poppinsSemibold;
  src: url(../../font/Poppins-SemiBold.ttf);
}
@font-face {
  font-family: poppinsBold;
  src: url(../../font/Poppins-Bold.ttf);
}
@font-face {
  font-family: latoBold;
  src: url(../../font/Lato-Bold.ttf);
}
@font-face {
  font-family: latoLight;
  src: url(../../font/Lato-Light.ttf);
}
@font-face {
  font-family: latoRegular;
  src: url(../../font/Lato-Regular.ttf);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: whitesmoke;
  font-family: latoBold;
}

h2 {
  font-family: poppinsSemibold;
  padding-bottom: 20px;
  text-align: center;
  font-size: 1.6rem;
}

h3 {
  font-family: poppinsSemibold;
  padding: 10px 0;
}

p {
  font-family: latoRegular;
}

nav {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1000;
}

.logo {
  display: inline-block;
  text-decoration: none;
}

.logo img {
  width: 120px;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(-20px) scale(0.9);
}

/* === Effet au survol === */
.logo img:hover {
  transform: scale(1.1) rotate(3deg);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  filter: brightness(1.1);
}

/* === Apparition fluide au chargement === */
.logo img.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.btn-section {
  background: rgb(0, 90, 171);
  padding: 15px;
  border-radius: 10px;
}

.conseillers {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
  text-align: center;
}

.conseillers h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #002b80;
}

.conseillers-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  gap: 30px;
}

.conseiller-card {
  background-color: #fff;
  border-radius: 12px;
  width: 300px;
  padding: 20px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.conseiller-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.conseiller-image {
  width: 120px;
  height: 120px;
  margin: 0 auto 15px;
  overflow: hidden;
  border-radius: 50%;
}

.conseiller-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}

.conseiller-card:hover .conseiller-image img {
  transform: scale(0.9);
}

.conseiller-card h3 {
  margin-bottom: 5px;
  font-size: 1.2rem;
  color: #002b80;
}

.conseiller-card p {
  margin: 5px 0;
  font-size: 0.95rem;
  color: #333;
}

.conseiller-card a {
  color: rgb(51, 53, 57);
  text-decoration: none;
}

.conseiller-card i {
  margin-right: 6px;
  color: #002b80;
}

.campus-filtres {
  text-align: center;
  margin-bottom: 30px;
}

.campus-filtres button {
  padding: 8px 18px;
  margin: 0 6px;
  border: none;
  background-color: whitesmoke;
  color: #002b80;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.campus-filtres button.active,
.campus-filtres button:hover {
  background-color: #002b80;
  color: white;
}

.contacts-section {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center; /* centre les colonnes horizontalement */
  gap: 40px; /* espace entre les colonnes */
  padding: 40px 10px;
  background-color: #002b80; /* bleu Pigier */
  color: #fff;
  margin-top: 40px;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.contacts-section > div {
  -ms-flex: 1 1 220px;
      flex: 1 1 220px; /* colonnes flexibles */
  margin: 0 auto;
  max-width: 250px; /* pour que les colonnes restent régulières */
}

/* Titres */
.contacts-section h3 {
  font-size: 1rem;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.7333333333);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Paragraphes et listes */
.contacts-section p,
.contacts-section li {
  font-size: 0.95rem;
  line-height: 1.6;
  color: whitesmoke;
}

/* Liens */
.contacts-section a {
  text-decoration: none;
  transition: color 0.3s ease;
  color: rgba(245, 245, 245, 0.6);
}

.contacts-section a:hover {
  color: white;
}

/* Icones */
.contacts-section i {
  margin-right: 8px;
  color: #ffcc00;
}

/* Listes sans puces */
.footer-menu ul,
.formations ul,
.socials ul {
  list-style: none;
  padding: 0;
}

.footer-menu li,
.formations li,
.socials li {
  margin-bottom: 10px;
}

/* Responsive pour tablette / mobile */
@media (max-width: 992px) {
  .contacts-section > div {
    -ms-flex: 1 1 45%;
        flex: 1 1 45%;
  }
}
@media (max-width: 600px) {
  .contacts-section {
    -ms-flex-direction: column;
        flex-direction: column;
    text-align: center;
    padding: 40px 5%;
  }
  .contacts-section > div {
    -ms-flex: 1 1 100%;
        flex: 1 1 100%;
    margin-bottom: 30px;
  }
}
/* Social icons hover */
.socials a {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  transition: transform 0.3s ease, color 0.3s ease;
}

.socials a:hover {
  color: white; /* accent doré */
  transform: scale(1) translateY(-3px); /* grossit et remonte légèrement */
}

.socials i {
  margin-right: 8px;
  transition: transform 0.3s ease;
}

.footer {
  width: 100%;
  background: rgb(51, 53, 57); /* bleu Pigier */
  color: #fff;
  text-align: center;
  padding: 10px 0;
  font-size: 0.95rem;
  box-sizing: border-box;
}/*# sourceMappingURL=conseiller.css.map */