


form .form-control {
  background-color: transparent; /* pas de fond gris */
  border: 1px solid #555;        /* contour discret */
  color: #fff;                   /* texte blanc */
}

form .form-control::placeholder {
  color: #aaa;                   /* texte indicatif plus clair */
}

form .form-control:focus {
  border-color: #f95c19;         /* orange de ton thème */
  box-shadow: none;              /* pas de halo bleu par défaut */
}


.titre-orange {
  color: #F1970A !important;
  font-weight: bold;
}

/* Couvre link/visited/hover/focus et force l'usage des variables locales */
.bg-black .container .row .col-12 p.text-100 a.worange,
.bg-black .container .row .col-12 p.text-100 a.worange:link,
.bg-black .container .row .col-12 p.text-100 a.worange:visited {
  --bs-link-color: #F1970A;
  color: var(--bs-link-color) !important;
  font-weight: 700;
}

.bg-black a.worange:hover,
.bg-black a.worange:focus {
  color: var(--bs-link-hover-color) !important;
}

.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #F1970A; /* Orange du site */
  color: #ffffff; /* Flèche noire pour le contraste */
  font-size: 22px;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s;
  z-index: 9999;
}

.back-to-top.show {
  opacity: 0.9;
  pointer-events: auto;
}

.back-to-top:hover {
  opacity: 1;
  transform: scale(1.1);
}


