@charset "UTF-8";
/* Reset basique */
@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: latoLight;
  padding-bottom: 20px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 800;
}

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

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

p {
  font-family: latoRegular;
  line-height: 1.5;
}

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

/* Hero */
#hero {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  padding: 50px 10px;
  background: linear-gradient(to right, #0d47a1, #1976d2);
  color: white;
  text-align: center;
  border-radius: 10px;
  margin-top: 70px;
  max-width: 1000px;
}

.hero-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  gap: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}

.citation p {
  font-size: 1.3rem;
  margin-bottom: 10px;
  width: 80%;
  margin: 10px auto;
}

.citation span {
  font-family: latoLight;
}

.photo-dr img {
  width: 100px;
  border-radius: 50%;
  border: 4px solid white;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Sections */
section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

#ecole p {
  margin-bottom: 50px;
}

h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #0d47a1;
}

/* Valeurs */
.valeurs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.valeur-card {
  background: #f1f1f1;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Campus */
.campus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.campus-card {
  text-align: center;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.campus-card img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

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

/* Partenaires */
.partenaires-grid {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
  gap: 20px;
}

.partenaires-grid img {
  width: 150px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(80%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.partenaires-grid img:hover {
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content {
    -ms-flex-direction: column;
        flex-direction: column;
  }
  .photo-dr img {
    width: 80px;
  }
}
#video-bg {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 12px;
}

#video-bg iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* désactive le clic direct sur l'iframe */
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover; /* pour bien couvrir toute la section */
}

#video-bg .overlay {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  padding: 80px 20px;
  background: rgba(0, 0, 0, 0.4); /* léger filtre sombre pour lisibilité */
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}

#video-bg .overlay h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

#video-bg .overlay p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  max-width: 600px;
}

#video-bg .overlay .btn {
  background-color: #ffcc00;
  color: #000;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s ease;
}

#video-bg .overlay .btn:hover {
  transform: scale(1.05);
}

.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;
  max-width: 100%;
  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=iuppc.css.map */