:root {
  --asfee-blue: #003d66; /* Bleu profond, ajustable */
  --asfee-light: #f8f9fa;
}

body {
  padding-top: 54px;
}

@media (min-width: 992px) {
  body {
    padding-top: 56px;
  }
}


/* BARRE NAVIGATION */

.navbar {
  background-color: var(--asfee-blue) !important;
}

.navbar-brand,
.navbar-brand span {
  color: #ffffff !important;
  font-weight: 600;
  font-size: 1.25rem;
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  margin-left: 1rem;
  font-weight: 500;
}

.navbar-nav .nav-link:hover {
  color: #ffffff !important;
  text-decoration: underline;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5);
}

/* CARTES PAGE ACCUEIL */

.modern-card {
    border: 1px solid #e0e0e0;
    border-radius: 1rem;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    background: #fff;
}

.modern-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.modern-card .card-title {
    color: #2c3e50;
    font-weight: 600;
}

.modern-card .btn {
    font-weight: 500;
}

/* PHOTOS MEMBRES BUREAU*/

.bureau-photo {
  width: 140px;
  height: 140px;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.bureau-photo:hover {
  filter: grayscale(0%);
  transform: scale(1.03);
}

/* MEMBRES INSTITUTIONNELS */
.institution-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  transition: filter 0.3s ease, transform 0.3s ease;
}

.institution-logo:hover {
  transform: scale(1.05);
}

.institution-logo + p {
  min-height: 3em;
  margin-bottom: 0;
}

/* LOGOS DES PLATEFORMES*/
.platform-logo {
  max-height: 120px;
  object-fit: contain;
}

/* PAGE CONFS ANNUELLES */
#confs td, #confs th {
  vertical-align: middle;
}

