
.hidden {
    display: none;
}

.fade-out-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.blur-fade-in {
    filter: blur(5px);
    opacity: 0.7;
    transition: filter 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.bon-a-savoir.visible.blur-fade-in {
    filter: none;
    opacity: 1;
}

.container.mt-4 {
    position: relative;
    overflow: hidden;
}

/* Style général de la section "infos_pratiques" */
.infos_pratiques {
    padding: 40px 0;
    font-family: 'Poppins', sans-serif;
}

.titre-paragraphe {
    text-align: center;
    margin-bottom: 30px;
}

.titre-contenu {
    font-size: 2.2rem;
    color: #024053;
    font-weight: bold;
    margin-bottom: 10px;
}

.nav-tabs {
    border-bottom: 2px solid #ddd;
    margin-bottom: 25px;
}

.nav-tabs .nav-link {
    color: #024053;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 12px 20px;
    margin-bottom: -2px;
}

.nav-tabs .nav-link.active {
    color: #007bff;
    border-bottom: 2px solid #007bff;
}

.nav-tabs .nav-link:hover {
    border-bottom: 2px solid #aaa;
}

.tab-content h4 {
    font-size: 1.5rem;
    color: #024053;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.6;
}

.bon-a-savoir p {
    color: #024053;
}

#menu0 .list-unstyled {
    font-size: 1rem;
    color: #024053;
}

#menu0 .list-unstyled li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: var(--bleunoir);
}

#menu0 .list-unstyled li img {
    margin-right: 8px;
    width: 20px;
    height: 20px;
}

/* Style des paragraphes dans l'onglet "BON À SAVOIR" et "DÉTAILS ET GUIDE DU VOYAGE" */
#menu1 .bon-a-savoir,
#menu2 .col.mb-3 {
    font-size: 1rem;
    color: #024053;
    line-height: 1.6;
    margin-bottom: 15px;
}

#menu1 .bon-a-savoir strong,
#menu2 .col.mb-3 strong {
    font-weight: bold;
    color: #024053;
    margin-right: 5px;
}

#menu1 .bon-a-savoir img,
#menu2 .col.mb-3 img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    vertical-align: middle;
}

#voirPlusBtn,
#voirPlusEquipementBtn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    color: #fff !important;
    background-color: var(--marron);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none !important;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

#voirPlusBtn:hover,
#voirPlusEquipementBtn:hover {
    background-color: var(--orangeocre);
}

.d-flex.justify-content-center.mt-3 {
    margin-top: 25px !important;
    margin-bottom: 20px;
}

.fade-out-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.blur-fade-in {
    filter: blur(5px);
    opacity: 0.7;
    transition: filter 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.bon-a-savoir.visible.blur-fade-in {
    filter: none;
    opacity: 1;
}

.container.mt-4.bas {
    position: relative;
    overflow: hidden;
    margin-top: 20px !important;
    margin-bottom: 20px;
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

#menu0 .container.mt-4 {
    margin-top: 20px !important;
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

#menu2 .container.mt-4 {
    margin-top: 20px !important;
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.checklist li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.checklist li img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    vertical-align: middle;
}

.equipement-wrapper {
    max-height: 500px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.5s ease;
}

.equipement-wrapper::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100px;
    width: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.equipement-wrapper.expanded {
    max-height: none;
}

.equipement-wrapper.expanded::after {
    opacity: 0;
}