@font-face {
    font-family: 'Inter';
    src: url('../../resource/fonts/Inter.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


.containerLUG {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

.reserva-section {
    flex: 1;
    min-width: 300px;
}

.image-section {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.decorative-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.lugares-info {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    width: 100%;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group select {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ced4da;
    border-radius: 4px;
}

.btnlug {
    background: transparent;
    border: 2px solid #9b8776;
    color: #7b6c61;
    padding: 8px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-primarylug {
    background: transparent;
    border-color: #9b8776;
}

.btn-secondarylug {
    background: transparent;
    border-color: #9b8776;
}

.alert {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 4px;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.horario-info {
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .containerLUG {
        flex-direction: column;
    }
    
    .reserva-section, .image-section {
        width: 100%;
    }
    
    .image-section {
        order: -1; /* Mueve la imagen arriba en móviles */
    }
}
