/* Retirer le gradient du body */
body {
  background-color: rgb(28, 12, 0) !important;
  color: #f5f5f5;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
}

.bg-container{
  background-color: rgb(28, 12, 0);
  padding-top: 80px; /* ou la hauteur de ta navbar */
  border-radius: 7px;
}

/* Titres principaux */
h2, h3, h5 {
    color: #bfa87c; /* sable foncé */
}

.first-part {
  font-family: 'Bodoni moda', sans-serif;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  padding: 1.5rem 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  margin-top: 2rem;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  color: whitesmoke;
}

.first-part:hover {
  color: #e3a86b;
  text-shadow: 0 0 10px rgba(227, 168, 107, 0.4);
}

.pack-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-title{
    font-family:'Bodoni moda', sans-serif;
    font-weight: bold;
}

.card-list{
    font-family: 'Times New Roman', Times, serif;
    font-weight: 700;
}

/* Corps de la carte prend tout l’espace vertical */
.card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* espace entre le haut et le bas */
    height: 100%;
}

/* La liste des activités prend l’espace restant pour que le prix reste en bas */
.list-unstyled {
    flex-grow: 1;
    margin-top: 1rem;
}

/* Montant total aligné en bas de la carte */
.text-warning.fw-bold {
    margin-top: 1rem;
    text-align: center;
}

/* Overlay reste inchangé, toujours centré */
.pack-overlay {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Overlay description packs */
.pack-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(191, 168, 124, 0.85); /* sable doré semi-transparent */
    color: #fff;
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    border-radius: 20px;
    transition: opacity 0.3s ease;
}

.pack-card:hover .pack-overlay {
    opacity: 1;
}

/* Liste activités */
.pack-card ul {
    padding-left: 0;
    margin-top: 10px;
}

.pack-card ul li {
    margin-bottom: 5px;
}

/* Formulaire réservation */
.card-body form .form-label {
    font-weight: 600;
    color: #5a3e1b;
}

.card-body form .form-control, 
.card-body form .form-select {
    border-radius: 12px;
    border: 1px solid #bfa87c;
    padding: 10px;
}


.btn-outline-warning {
    border-color: #bfa87c;
    color: #5a3e1b;
    font-weight: bold;
}

.btn-outline-warning:hover {
    background-color: #bfa87c;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .pack-card {
        margin-bottom: 20px;
    }
}



.form-select {
    background-color: #ffffff; /* blanc */
    border: 1px solid #bfa87c; /* bordure sable */
    border-radius: 12px;
    transition: all 0.3s ease;
    color: #5a3e1b; /* texte marron foncé */
}

/* Au survol ou au focus */
.form-select:hover,
.form-select:focus {
    color: #5a3e1b;            /* texte lisible */
}