/* ====== NAVBAR (menu du haut) ====== */
.navbar-nav 
{
    --bs-nav-link-padding-y: 0px;
}

.navbar {
  background-color: #2c3e50 !important; 
  border-bottom: 2px solid #1abc9c;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
}


.navbar-brand, 
.navbar-nav .nav-link {
  color: #ecf0f1 !important; 
  font-weight: 500;
}

.navbar-nav .nav-link:hover {
  color: #1abc9c !important;
}

.navbar img {
    height: 40px;
    width: auto;
}

/* ====== FOOTER (bandeau bas) ====== */
footer {
  background-color: #2c3e50;
  color: #bdc3c7;
  text-align: center;
  padding: 0px;
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  font-size: 14px;
  border-top: 2px solid #1abc9c;
}

/* position menu bas*/
html, body {
      height: 100%;
    }

    body {
      display: flex;
      flex-direction: column;
      min-height: 100vh; /* occupe toute la hauteur de la fenêtre */
    }

    main {
      flex: 1; /* prend tout l’espace disponible */
    }