/* Styles pour la popup de réservation */
.reservation-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.reservation-content {
    position: relative;
    background: white;
    width: 90%;
    max-width: 425px;
    margin: 15% auto;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-family: 'Cormorant Garamond', serif;
}

.close-reservation-popup {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.close-reservation-popup:hover {
    color: #000;
}

.reservation-content h2 {
    font-size: 1.5em;
    margin: 0 0 10px 0;
    color: #990000;
    font-weight: normal;
}

.reservation-content p {
    margin: 10px 0;
    color: #333;
    font-size: 1em;
}

.cgv-container {
    margin: 20px 0;
    padding: 15px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.cgv-checkbox-wrapper {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.cgv-checkbox-wrapper input[type="checkbox"] {
    width: auto;
    flex-shrink: 0;
    margin-top: 4px;
    cursor: pointer;
}

.cgv-checkbox-wrapper label {
    font-size: 0.95em;
    line-height: 1.4;
    color: #333;
    cursor: pointer;
}

.cgv-checkbox-wrapper a {
    color: #990000;
    text-decoration: none;
    font-weight: bold;
}

.cgv-checkbox-wrapper a:hover {
    text-decoration: underline;
}

.price-paypal {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 15px 0 0 0;
    padding-top: 15px;
    clear: both;
}

.price-paypal p {
    margin: 0;
    font-size: 1em;
    font-weight: normal;
    color: #333;
}

.paypal-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0070ba;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9em;
    transition: background-color 0.3s, opacity 0.3s;
    border: none;
    cursor: pointer;
}

.paypal-button:hover:not(.disabled) {
    background: #003087;
}

.paypal-button.disabled {
    background: #cccccc;
    cursor: not-allowed;
    opacity: 0.6;
    pointer-events: none;
}

.paypal-button i {
    font-size: 1.2em;
}

.contact-info {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    display: block;
}

.contact-info p {
    margin: 10px 0;
    display: block;
    width: 100%;
    clear: both;
}

.mail-link {
    color: #0070ba;
    text-decoration: none;
    cursor: pointer;
}

.mail-link:hover {
    text-decoration: underline;
}

/* Media query pour mobile */
@media (max-width: 768px) {
    .reservation-content {
        width: 95%;
        padding: 20px;
    }
}
