.cta-container {
    text-align: center;
    margin: 40px 0;
}

.cta-btn {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 12px 25px;
    margin: 10px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background-color: #0078D7;
    color: white;
}

.cta-btn.primary:hover {
    background-color: #005A9E;
}

.cta-btn.secondary {
    background-color: #FFD700;
    color: black;
}

.cta-btn.secondary:hover {
    background-color: #E6BE00;
}

/* Titres adaptatifs */
h1, h2 {
    word-break: break-word;
  }
  
  /* Mobile */
  @media (max-width: 576px) {
    h1 {
      font-size: 2rem !important;
    }
    .card-body p {
      font-size: 0.9rem;
    }
  }
  
  /* Tablette */
  @media (max-width: 768px) {
    h1 {
      font-size: 2.5rem !important;
    }
  }
  

.slide-up {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s ease forwards;
    animation-delay: var(--delay);
}

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

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.intro-section {
  width: 100%;       /* prend toute la largeur de l'écran */
  margin-top: 0;     /* pour commencer juste après la deuxième barre */
}

.swiper-slide img {
  width: 100%;       /* largeur totale */
  height: 300px;     /* hauteur fixe, tu peux ajuster */
  object-fit: cover; /* recouvre le conteneur sans déformer */
}

.btn-primary {
  background-color: #0d243a !important; /* bleu personnalisé */
  border-color: #0d2d4d !important;
  color: white !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: #0d3c6e !important; /* bleu plus foncé au survol */
  border-color: #0d3c6e !important;
  color: white !important;
}
