/* === Couleurs et base générale === */
body {
  background-color: #fdfdfd !important;
  color: #01152c;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
}

.navbar {
  border-bottom: 1px solid #e5e5ea;
}

.navbar-text {
  color: #212529BF;
}

.container {
  border-radius: 1rem !important;
}

.login-container {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* === Typographie personnalisée === */
h1 {
  color: #002d62;
  font-size: 2.5rem;
  margin: 0;
}

.tagline {
  font-size: 1.1rem;
  color: #cccccc;
  margin-top: 0.5rem;
}

/* === Cartes === */
.card {
  padding: 1em;
  border: 1px solid #ccc;
  margin-bottom: 1em;
  border-radius: 5px;
}

.card:hover {
  box-shadow: 0 0 10px #ff5722cc;
  border-color: #ff5722;
}

/* === Logo === */
.logo {
  width: 100px;
  height: 100px;
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
  display: block;
  margin: 0 auto 1rem;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.logo:hover {
  filter: brightness(1.3) drop-shadow(0 0 6px #ff5722);
}

.free-trial-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: #ffc107;
  color: #000;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 50%;
  font-size: 0.75rem;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}


/* === Header et footer === */
header {
  text-align: center;
  padding: 2rem 1rem;
  border-bottom: 1px solid #333;
}

header, footer, .header, .footer {
  background-color: #FFFFFF !important;
}

/* === Boutons personnalisés === */
.btn,
button {
  border-radius: 1.5rem !important;
}

.btn-primary {
  background-color: #ff5722;
  color: white;
  border: none;
  padding: 0.5em 1em;
  border-radius: 1.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #e64a19;
}

.btn-outline-secondary {
  border-color: #6c757d24 !important;
  --bs-btn-hover-bg: #dc3545e8 !important;
  --bs-btn-hover-border-color: #ed1c24 !important;
}

.accordion-button:not(.collapsed) {
  background-color: #f4f4f4 !important;
  border-radius: 0rem !important;
}
.accordion-button {
  border-radius: 0rem !important;
}

.accordion-body {
  background-color: #f8f9fa00 !important;
}

.badge-bg-light {
  background-color: #f8f9fa; /* ton clair */
  color: #333; /* texte doux */
  border-radius: 1rem; /* bien arrondi */
  padding: 0.35em 0.75em;
  font-size: 0.75rem;
  font-weight: 500;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  display: inline-block;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.favorite-badge:hover {
  background-color: #aaaaaa;
  border-color: #dadada24 !important;
}

/* === Formulaires === */
input.form-control,
textarea.form-control,
select.form-control {
  border-radius: 1.5rem !important;
  padding: 6px 12px !important;
}

.form-control-sm {
  font-size: 1rem !important;
}

.form-control:focus {
  box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important;
}

.form-control-lg {
  font-size: 1rem !important;
}

/* === Alertes === */
.alert {
  border-radius: 1.5rem !important;
}

.alert.fade {
  transition: opacity 1s ease-in-out;
  opacity: 0;
}

.alert-info {
  background-color: #c8dcf4 !important;
  border-color: #bfd3ea !important;
}
.alert-danger {
  background-color: #e26b70 !important;
  border-color: #d6666b !important;
}
.alert-success {
  background-color: #b4e06b !important;
  border-color: #add66a !important;
}

/* === Conteneur responsive === */
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* === Responsive === */
@media (max-width: 600px) {
  h1 {
    font-size: 1.8rem;
  }
}