@import url('https://fonts.cdnfonts.com/css/futura-std-4');

body {
    font-family: 'Futura Std', sans-serif;
    margin: 0;
    padding: 0;
    color-scheme: light;
    background: #fff;
    color: #000;
}

.reservas-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../images/fachada1.jpg');
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    opacity: 0.2;
    z-index: -1;
}

.reservas-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.reservas-content {
    color: #002060;
    width: 60%;
    text-align: center;
    z-index: 2;
}

.reservas-content h1 {
    font-size: 36px;
    margin: 20px 0;
    font-weight: bold;
}

.reservas-item {
    display: flex;
    flex-direction: column;
    background-color: #f7f7f7a2;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    align-items: center;
    width: auto;
    height: auto;
    margin-bottom: 20px;
}

.reservas-item-info {
    color: #002060;
    margin-top: 10px;
}

.reservas-item h2 {
    font-size: 32px;
    margin-top: 0px;
    margin-bottom: 20px;
    font-weight: bold;
}

.reservas-item-info p {
    font-size: 18px;
    margin-bottom: 0;
}

.swiper-container {
    width: 100%;
    margin: 0 auto;
    position: relative;
    cursor: grabbing;
    overflow: hidden;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: 10px;
}

.swiper-button-next,
.swiper-button-prev {
    color: #002060;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.swiper-button-next {
    right: 10px;
}

.swiper-button-prev {
    left: 10px;
}

.swiper-pagination {
    bottom: 10px;
    text-align: center;
    width: 100%;
    position: absolute;
    z-index: 10;
}

.modal {
    display: none;
    z-index: 999;
    align-items: center;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    margin: auto;
    max-width: 90%;
    max-height: 90%;
    object-fit: cover;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .reservas-content {
        width: 85%;
    }

}

@media (max-width: 768px) {
    .reservas-content {
        width: 90%;
    }

    .reservas-item h2 {
        font-size: 32px;
    }
}

@media (max-width: 400px) {
    .reservas-item p {
        font-size: 16px;
    }

}
