.menu-reservation{
    z-index:200;
}

.btn-blue{
    background:#0e2f4e;
    border-color:#0e2f4e;
}

#tarteaucitronRoot #tarteaucitronAlertBig{
    background-color:#FFFFFF !important;
    color:#404040 !important;
}

#tarteaucitronRoot #tarteaucitronAlertBig #tarteaucitronDisclaimerAlert{
    color:#404040 !important;
}


/*MODALE PAGE ACCUEIL*/
.camping-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.camping-modal.show {
    opacity: 1;
}

/* Overlay sombre */
.camping-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(3px);
}

/* Contenu de la modale */
.camping-modal-content {
    position: relative;
    max-width: 850px;
    width: 90%;
    margin: 50px auto;
    transform: translateY(-20px) scale(0.95);
    transition: transform 0.3s ease;
}

.camping-modal.show .camping-modal-content {
    transform: translateY(10%) scale(1);
}

/* Bouton de fermeture */
.camping-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fff;
    border: none;
    font-size: 28px;
    line-height: 1;
    color: #333;
    cursor: pointer;
    z-index: 10;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding-bottom: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease;
}

.camping-modal-close:hover {
    background: #e74c3c;
    color: #fff;
}

/* Lien et image */
.camping-modal-image-link {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.camping-modal-image-link:hover {
    transform: scale(1.02);
}

.camping-modal-image-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
    pointer-events: none;
}

.camping-modal-image-link:hover::after {
    background: rgba(0, 0, 0, 0.05);
}

.camping-modal-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .camping-modal-content {
        margin: 30px auto;
        width: 95%;
    }

    .camping-modal-close {
        top: 10px;
        right: 10px;
        width: 30px;
        height: 30px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .camping-modal-content {
        margin: 20px auto;
    }

    .camping-modal-close {
        top: 5px;
        right: 5px;
        background: rgba(255, 255, 255, 0.95);
    }
}

/* Empêcher le scroll du body quand la modale est ouverte */
body.modal-open {
    overflow: hidden;
}
/*FIN MODALE PAGE ACCUEIL*/