/* Bannière principale */
.jbt-banner {
  background: linear-gradient(135deg, #004080, #0066cc);
  color: white;
  padding: 40px 0;
  font-family: 'Segoe UI', 'Roboto', sans-serif;
  border-bottom: 4px solid #003366;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 10;
}

/* Contenu en flex */
.jbt-banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  text-align: center;
}

/* Logo */
.jbt-logo {
  height: 150px;
  max-width: 100%;
  object-fit: contain;
}

.jbt-logo2 {
  height: 150px;
  max-width: 100%;
  object-fit: contain;
}

/* Texte */
.jbt-text h1 {
  margin: 0;
  font-size: 3em;
  font-weight: 600;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.jbt-text h1 span {
  position: relative;
  padding-bottom: 10px;
}

.jbt-text h1 span::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 60%;
  height: 4px;
  background-color: #ffffff;
  border-radius: 2px;
  animation: underline 1.5s ease-out forwards;
}

@keyframes underline {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 60%;
    opacity: 1;
  }
}

/* Slogan */
.jbt-slogan {
  PADDING: 10px;
  font-size: 1.2em;
  font-weight: 300;
  font-style: italic;

}

/* USer*/
    .user-meta { line-height: 1.2; }
    .user-meta .name { font-weight: bold; }
    .muted { color: #555; font-size: 0.95em; }

/* Responsive */
@media (max-width: 600px) {
  .jbt-text h1 {
    font-size: 2em;
  }

  .jbt-logo {
    height: 60px;
  }

  .jbt-slogan {
    font-size: 1em;
	margin: 100px;
  }
}
  span {
	  color: #e0e0e0;
  }
/* UTILISATEUR (version corrigée + un peu plus spécifique) */
nav.jbt-menu .user-banner{display:flex;align-items:center;gap:12px;border:1px solid #cfe3ff;border-radius:8px;padding:10px 12px;margin-bottom:16px;box-sizing:border-box}
nav.jbt-menu .user-avatar{width:36px;height:36px;border-radius:50%;background:#005eb8;color:#fff;display:flex;align-items:center;justify-content:center;font-weight:bold}
nav.jbt-menu .user-meta{line-height:1.2}
nav.jbt-menu .user-meta .name{font-weight:bold}
nav.jbt-menu .muted{color:#555;font-size:.95em}