/* ----------------------------- */
/* GENERAL */
/* ----------------------------- */
body {
      font-family: Arial, sans-serif;
      background-color: #fcf0d6;
      margin: 0;
      padding: 1rem;
      display: flex;
      flex-direction: column;
      align-items: center;
}

.btn-back-icon {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: inline-block;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: background-color 0.2s ease;
}

.btn-back-icon:hover {
  background-color: rgba(0, 73, 65, 0.1);
}

h1 {
  font-weight: 700;
  color: #1a1a1a;
}

form {
  max-width: 600px;
  margin: 0 auto;
}

.text-green {
  color: #17756a;
}

/* CSS DE LA PREMIERE PAGE */

.logo {
  height: 390px;
  max-width: 100%;
  object-fit: contain;
}

.text-orange {
  color: #e78008;
}

.site-title {
  font-weight: 700;
  font-size: 2.5rem;
}

.site-name {
  font-weight: 700;
  font-size: 3rem;
}

.default-text {
  font-weight: 700;
  font-size: 1.3rem;
}

.merci-text {
  font-weight: 700;
  font-size: 1.9rem;
}

.page-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
}

.content-wrap {
  flex: 1;
}

footer {
  padding: 1rem 0;
}

.btn-orange {
  background-color: #e78008;
  border-color: #e78008;
  color: white;
}

.btn-orange:hover {
  background-color: #cc6c05;
  border-color: #cc6c05;
  color: white;
}

.custom-btn {
  border-radius: 2rem;
  max-width: 320px;
  white-space: normal;
  text-align: center;
}

/* ----------------------------- */
/* CSS PAGE INFORMATION */
/* ----------------------------- */

.title-img {
  height: 275px;
  max-width: 100%;
  object-fit: contain;
}

.merci-img {
  height: 345px;
  max-width: 100%;
  object-fit: contain;
}
.site-title {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
}

/* Style général des champs */
.form-control {
  background-color: #fcf0d6;
  border: 2px solid #c3b682;
  border-radius: 0.5rem;
  color: #333;
}

.form-control:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(195, 182, 130, 0.4); /* effet focus doux */
  border-color: #c3b682;
}

/* Pour éviter que les inputs blancs restent blancs */
input::placeholder,
textarea::placeholder {
  color: #aaa;
}

/* Optionnel : bordure lisse pour les checkbox aussi */
.form-check-input {
  width: 1.2em;
  height: 1.2em;
  margin-top: 0.25em;
}

/* Style du bouton (si cohérent avec ton thème) */
.btn-orange {
  background-color: #e78008;
  color: white;
  border: none;
  border-radius: 2rem;
}

.btn-orange:hover {
  background-color: #cc6f06;
}

.profil-card {
  cursor: pointer;
  border: 2px solid #c3b682;
  border-radius: 1rem;
  background-color: #fcf0d6;
  width: 120px;
  text-align: center;
  transition: 0.2s ease;
}

.profil-card input:checked + .profil-content {
  background-color: #c3b682;
  color: white;
}

.profil-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-weight: bold;
  border-radius: 0.75rem;
  padding: 0.5rem;
  height: 142px;
}

.profil-activites {
  height: 165px;
}

.profil-content img {
  width: 60px;
  height: 70px;
  object-fit: contain;
  filter: grayscale(30%);
  transition: filter 0.2s ease;
}

.profil-card input:checked + .profil-content img {
  filter: none;
}

.form-range::-webkit-slider-thumb {
  background: #004941 ;
}

.form-range-track-bg {
  color: black;
}

.calendar-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-bottom: 1rem;
}

#calendar {
  width: 100%;
  background-color: #fcf0d6;
  border: 2px solid #c3b682;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem 0.75rem 3rem;
  font-size: 1rem;
}

.calendar-field {
  position: relative;
  width: 100%;
  margin-bottom: 1rem;
}

.calendar-field input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 3rem;
  background-color: #fcf0d6;
  border: 2px solid #c3b682;
  border-radius: 0.5rem;
  font-size: 1rem;
  cursor: pointer;
  color: #004941;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.calendar-field input:hover {
  background-color: #f3e4c4;
}

.calendar-inline-icon {
  position: absolute;
  pointer-events: none;
  left: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

/* ✅ Jour sélectionné (début ou fin) */
.litepicker-day-item.is-start-date,
.litepicker-day-item.is-end-date {
  background-color: #004941 !important;
  color: #fff !important;
  border-radius: 50% !important;
}

/* ✅ Jours entre les deux (mode range) */
.litepicker-day-item.is-in-range {
  background-color: #fcf0d6 !important;
  color: #004941 !important;
}

/* ✅ Au survol */
.litepicker-day-item:hover {
  background-color: #e78008 !important;
  color: white !important;
  border-radius: 50% !important;
}

/* ✅ Jours désactivés (passés) */
.litepicker-day-item.is-disabled {
  color: #c3b682 !important;
  text-decoration: line-through;
  cursor: not-allowed;
}

/* ✅ Style global de la popup */
.litepicker {
  font-family: 'Segoe UI', sans-serif;
  border: 2px solid #c3b682;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  background-color: white;
}

/* ✅ En-tête du calendrier (mois/année) */
.litepicker .container__months .month-item {
  color: #004941;
  font-weight: bold;
}

/* ✅ Boutons précédent / suivant */
.litepicker .button-previous,
.litepicker .button-next {
  color: #004941;
}

/* ✅ Bordures des cases */
.litepicker-day-item {
  border-radius: 0.4rem;
  transition: all 0.2s ease;
}

/*************/
/* PAGE TYPE DE VOYAGEUR */
/*************/

.type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.type-card {
  background-color: #fcf0d6;
  border: 2px solid #c3b682;
  border-radius: 1rem;
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s;
  font-weight: 600;
  color: #004941;
  user-select: none;
}

.type-card input {
  display: none;
}

.type-card .icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.type-card:hover {
  transform: scale(1.05);
  border-color: #e78008;
}

.type-card input:checked + .icon,
.type-card input:checked + .icon + span {
  color: white;
}

.type-card input:checked + .icon {
  background-color: #004941;
  border-radius: 50%;
  padding: 0.3rem;
}

.info-surprise {
  margin-top: 15px;
}

.icone-precise {
  height: 205px;
}

.checklist-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  margin-bottom: 10px;
  background: #fcf0d6;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.checklist-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.checklist-label {
  font-size: 1rem;
  font-weight: 700;
  color: #17756a;
}

/* Cases stylisées */
input[type="checkbox"], input[type="radio"] {
  accent-color: #ff7f32; /* ton orange */
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.organisation-card {
  height: 70px;
}

.melanie {
  height: 275px;
  margin:5px;
  max-width: 100%;
  object-fit: contain;
  border-radius: 25px;
}

.quisuisje-text {
  font-size: 14px;
}