/* Reservation Modal Styles */
.reservation-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
}

.reservation-modal.show {
    display: flex;
}

.reservation-modal-content {
    background-color: #febd11;
    margin: auto;
    padding: 40px;
    border: none;
    width: 90%;
    max-width: 800px;
    position: relative;
    text-align: center;
    color: #ffffff;
    font-family: 'Sora', sans-serif;
    border-radius: 4px;
}

.reservation-modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    color: #ffffff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.reservation-modal-close:hover {
    color: #000;
}

.reservation-options {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.reservation-option {
    flex: 1;
    min-width: 250px;
}

.reservation-option h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
}

.book-btn {
    display: inline-block;
    padding: 12px 35px;
    border: 2px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.book-btn:hover {
    background-color: #ffffff;
    color: #febd11;
}

.modal-footer-text {
    font-size: 1.1rem;
    margin-top: 20px;
    line-height: 1.4;
    font-weight: 400;
}

@media (max-width: 600px) {
    .reservation-modal-content {
        padding: 60px 20px 40px;
    }

    .reservation-options {
        flex-direction: column;
        gap: 40px;
    }
}