/* ── PAGE RÉSERVATION ── */
.reservation-guide {
    padding-top: 150px;
    padding-bottom: 100px;
    padding-left: 20px;
    padding-right: 20px;
    background-color: #121212; 
    color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}

.res-container {
    max-width: 650px;
    width: 100%;
    background-color: #1a1a1a;
    padding: 40px;
    border: 1px solid #333;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    text-align: center;
    margin: 0 auto; 
}

.res-intro {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #ccc;
    line-height: 1.6;
}

.res-checklist {
    text-align: left;
    background-color: #222;
    padding: 25px;
    border-left: 4px solid #d4af37;
    margin-bottom: 30px;
    border-radius: 0 8px 8px 0;
}

.res-checklist h3 {
    font-size: 1.1rem;
    color: #d4af37;
    margin-bottom: 20px;
    margin-top: 0;
    line-height: 1.4;
}

.res-checklist ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.res-checklist li {
    margin-bottom: 15px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
}

.res-checklist li span {
    margin-right: 15px;
    font-size: 1.2rem;
}

.res-rappel {
    font-style: italic;
    color: #aaa;
    font-size: 0.95rem;
    margin-top: 10px;
    border-top: 1px solid #444;
    padding-top: 15px;
}

.btn-geant {
    display: inline-block;
    font-size: 1.2rem;
    padding: 15px 30px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    
    animation: effet-pulse 2s infinite; 
    transition: all 0.3s ease; 
}

@keyframes effet-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); 
    }
    70% {
        transform: scale(1.05); 
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); 
    }
    100% {
        transform: scale(1); 
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.btn-geant:hover {
    transform: scale(1.02);
    animation: none;
}