@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;
}

h1 {
  font-family: poppinsSemibold;
}

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

p {
  font-family: latoRegular;
}

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

/* 🌍 Style global */
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  background: #f8f9fa;
  color: #222;
}

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);
}

/* 🟦 Bannière */
.banniere {
  background: url("../../image/diplome dalf.webp") center/cover;
  height: 60vh;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  text-align: center;
  color: white;
}

.banniere .overlay {
  background: rgb(0, 90, 171);
  padding: 40px;
  border-radius: 15px;
  animation: fadeIn 1.5s ease;
}

.titre-banniere {
  font-size: 2.5em;
  margin-bottom: 10px;
}
@media screen and (max-width: 550px) {
  .titre-banniere {
    font-size: 2rem;
  }
}
@media screen and (max-width: 490px) {
  .titre-banniere {
    font-size: 1.8rem;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 🟩 JSP Section */
.jsp-section {
  text-align: center;
  padding: 80px 20px;
  background: white;
}
.jsp-section p {
  line-height: 1.5;
}

.jsp-campus {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.jsp-card {
  background: #f0f3f7;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.jsp-card:hover {
  transform: scale(1.05);
}

.btn-campus {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background: #004aad;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-campus:hover {
  background: #002e6e;
}

/* 🟨 Activités */
.activites-section {
  padding: 80px 20px;
  background: #eef2f6;
  text-align: center;
}

.activites-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.activite-card {
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.activite-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.activite-card .date {
  color: #004aad;
  font-weight: bold;
}

/* 🟧 Ambassadrice */
.ambassadrice-section {
  background: white;
  padding: 80px 20px;
  text-align: center;
}

.ambassadrice-card {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  gap: 40px;
  max-width: 900px;
  margin: auto;
  perspective: 1000px;
}

.ambassadrice-image img {
  width: 250px;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.6s ease, box-shadow 0.4s;
}

.ambassadrice-image img:hover {
  transform: rotateY(20deg) scale(1.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.ambassadrice-info {
  max-width: 400px;
}

.ambassadrice-info h3 {
  color: #004aad;
  margin-bottom: 10px;
}

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