/* === STYLE GLOBAL === */
body {
  background-color: #fcfcfc; /* gris très clair */
  color: #212529;            /* texte sombre */
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

/* === CARTES (cards) === */
.card {
  border-radius: 1rem !important; /* arrondi plus doux */
  border: none;                   /* pas de bordure grise */
  box-shadow: 0 2px 6px rgba(0,0,0,0.08); /* légère ombre */
  background-color: #fff;
}

.card-body {
  border-radius: 1rem !important;
}

/* === NAVBAR === */
.navbar {
  border-radius: 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  background-color: #ffffff !important;
}

/* === BOUTONS === */
.btn-primary {
  background-color: #007bff;
  border: none;
  border-radius: 0.75rem;
}
.btn-primary:hover {
  background-color: #0056d2;
}

/* === BADGES === */
.badge {
  border-radius: 0.5rem;
  font-weight: 500;
}

/* === PETIT DÉTAIL : arrondir les images ou icônes si besoin === */
img, .icon {
  border-radius: 0.5rem;
}

/* === SUPPRIMER LE BLEU DES LIENS VISITÉS === */
a {
  text-decoration: none;
  color: #0d6efd;
}
a:hover {
  color: #0056d2;
}

/* ===== NAVBAR MOBILE (FOOTER) ===== */

.mobile-nav {
  height: 80px;                 /* hauteur totale */
}

.mobile-nav .nav-link {
  padding: 10px 0;
}

.mobile-nav .bi {
  font-size: 1.6rem;            /* taille des icônes */
}

/* Icône active (optionnel mais stylé) */
.mobile-nav .nav-link.active .bi {
  color: #ff7a45;               /* orange AMIKO */
}
.mobile-nav .nav-link {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}


