@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: rgba(245, 245, 245, 0.6);
  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;
}

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

/* === STYLE DU LOGO FIXÉ === */
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);
}

#formations {
  padding: 100px 8% 200px 8%;
  text-align: center;
  background: #f9f9f9;
}

#formations h1 {
  font-size: 2.5rem;
  color: #003366;
  font-family: poppinsSemibold;
}
@media screen and (max-width: 550px) {
  #formations h1 {
    font-size: 1.8rem;
  }
}

.filiere-container {
  margin: 20px 0;
}

.filiere-btn {
  background: #003366;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  margin: 0 10px;
  cursor: pointer;
  transition: background 0.3s;
}

.filiere-btn:hover,
.filiere-btn.active {
  background: #0055aa;
}

#formations-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  color: #003366;
}

.details {
  text-align: left;
  margin-top: 10px;
  border-left: 3px solid #003366;
  padding-left: 10px;
}
.details p {
  line-height: 2;
  margin-bottom: 15px;
}

h4 {
  font-family: latoBold;
  font-size: 1.2rem;
}

.btn {
  display: inline-block;
  margin-top: 10px;
  background: #003366;
  color: white;
  padding: 8px 15px;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
}

.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;
  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: rgba(245, 245, 245, 0.6);
}

/* 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=form.css.map */