
/* formulaire.css */
.logo {
  max-width: 250px;
  height: auto;
}

.fade-in-top {
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInTop 1s ease forwards;
}

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

.step {
  opacity: 1;
  transition: opacity 0.5s ease;
}

.step.fade-out {
  opacity: 0;
}

.step.fade-in {
  opacity: 1;
}

.btn {
  transition: all 0.3s ease;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.card-header {
  background-color: #cea941; /* Bleu Bootstrap par défaut */
  color: white; /* Texte en blanc */
}

#progressBar {
  background-color: #cea941; /* Couleur de la barre remplie */
}

h1 {
  color: #cea941;
}

/* ✅ Barre de navigation fixe en bas avec transparence + flou (style iPhone) */
.bottom-tab-bar {
    position: fixed;
    bottom: 16px; /* petit espace en bas aussi */
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px); /* 16px de marge à gauche et à droite */
    max-width: 500px;
    height: 65px;

    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 10px;

    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-top: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);

    z-index: 1000;
    border-radius: 20px;
}

/* ✅ Icônes et textes */
.tab-item {
    flex-grow: 1;
    text-align: center;
    text-decoration: none;
    color: #444;
    font-size: 0.75rem;
    transition: color 0.3s;
    padding: 5px 0;
}

.tab-item .icon {
    display: block;
    font-size: 1.4rem;
    line-height: 1.2;
}

.tab-item .label {
    font-size: 0.7rem;
}

/* ✅ Onglet actif */
.tab-item.active {
    color: #007bff;
    font-weight: bold;
}

.tab-item.active .icon {
    font-size: 1.6rem;
}

/* ✅ Pour ne pas masquer le contenu */
body {
    padding-bottom: 75px;
}

body {
    background-color: rgb(223, 223, 223)5; /* Gris très doux */
    margin: 0;
    padding-bottom: 75px; /* Pour la barre en bas */
    font-family: system-ui, sans-serif;
}

.container,
.main,
.page-content {
    background-color: transparent !important;
}



/* IOS Menu */
body {
    background-color: #f2f2f2;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin: 0;
    padding: 1rem;
}

.ios-menu {
    display: flex;
    flex-direction: column;
    gap: 24px; /* espace entre groupes */
}

/* Groupe de cartes */
.menu-group {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    overflow: hidden;
}

/* Lien individuel */
.menu-item {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    text-decoration: none;
    color: #111;
    transition: background-color 0.2s;
    border-bottom: 1px solid #eee;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item:hover {
    background-color: #f5f5f5;
}

/* Icône à gauche */
.menu-item .icon {
    font-size: 1.5rem;
    margin-right: 16px;
    width: 28px;
    text-align: center;
}

/* Label */
.menu-item .label {
    flex-grow: 1;
    font-size: 1rem;
}

/* Flèche à droite */
.menu-item .arrow {
    font-size: 1.2rem;
    color: #ccc;
}
