html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* Configuration de la police Inter et comportement de défilement */
html {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

/* Styles personnalisés pour des transitions et ombres lisses */
.btn-primary {
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 15px rgba(13, 110, 253, 0.3); /* Utilisation de la couleur Bootstrap primaire */
    }

.card-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

/* Animation d'apparition au défilement */
[data-section] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

    [data-section].visible {
        opacity: 1;
        transform: translateY(0);
    }