/* -----------------------------------------
   Bts MCO : 5 blocs (BAC+2, Durée, etc.)
----------------------------------------- */

    /* -------------------------------------
   BAC+3 Formation : Style “bandeau”
------------------------------------- */
.bac3-wrapper {
  display: flex;
  flex-wrap: wrap; /* Pour passer sur plusieurs lignes si l'écran est étroit */

      gap: 10px;
   max-width: 1400px;
  text-align: center;
  overflow: hidden; /* évite les débordements éventuels */
}

.bac3-col {
  flex: 1 1 20%;  /* chaque bloc prend 20% de la largeur si possible */
  min-width: 200px;
  color: #fff;
  padding: 10px;

  transition: transform 0.3s ease;
  text-align: center;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
    
  /* Animation d'apparition "fadeUp" */
  transform: translateY(30px);
  opacity: 0;
  animation: fadeUp 1s forwards;
}

/* Délais progressifs sur chaque bloc */
.bac3-col:nth-child(1) { animation-delay: 0.2s; }
.bac3-col:nth-child(2) { animation-delay: 0.4s; }
.bac3-col:nth-child(3) { animation-delay: 0.6s; }
.bac3-col:nth-child(4) { animation-delay: 0.8s; }
.bac3-col:nth-child(5) { animation-delay: 1s; }
        /* Animation keyframes */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
        
/* Effet de zoom au survol */
.bac3-col:hover {
  transform: scale(1.05);
      border-radius: 10px;
    
}

/* Couleurs de fond (à adapter si besoin) */
.bac3-blue {
  background-color: #284D79; /* Bleu grisé */
}
.bac3-orange {
  background-color: #C8AB68; /* Doré */
}

/* Exemples de variations de texte */
.bac3-label-top {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-transform: uppercase;
  color: #fff;
}

.bac3-number-outline {
  /* Grosse taille + contour */
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: transparent;
  -webkit-text-stroke: 1px #fff; /* contour blanc */
  text-transform: uppercase;
  margin: 10px 0;
}

.bac3-text-big {
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bac3-text-medium {
  font-size: 14px;
  font-weight: 600;
  margin: 8px 0;
}

.bac3-text-small {
  font-size: 12px;
  font-weight: 400;
  margin: 6px 0;
}

/* Responsif : en dessous de 600px, on force 100% pour chaque bloc */
@media (max-width: 600px) {
  .bac3-col {
    flex: 1 1 100%;
  }
  .bac3-wrapper {
    margin: 0;
  }
}


.apk-download-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #0d1c2e;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  z-index: 9999;
  font-family: "Segoe UI", sans-serif;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.4);
  animation: slideUp 0.4s ease-in-out;
  border-top: 3px solid #2ea3f2;
}

.apk-icon {
  width: 40px;
  height: 40px;
  margin-right: 15px;
}

.apk-content {
  flex-grow: 1;
  text-align: left;
  font-size: 15px;
}

.apk-btn {
  margin-top: 4px;
  display: inline-block;
  background: #2ea3f2;
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}
.apk-btn:hover {
  background: #1b85c0;
}

.apk-close {
  cursor: pointer;
  font-size: 20px;
  padding-left: 15px;
  color: #aaa;
}
.apk-close:hover {
  color: white;
}

@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@media (min-width: 769px) {
  .apk-download-banner {
    display: none !important;
  }
}
