/* Estilos para salas No Converge - diseño Bootstrap estándar */
body {
    background: url('../imagenes/fondos/fondo_2.jpeg') no-repeat center center fixed;
    background-size: cover;
    background-repeat: no-repeat;
}

.main-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 30px;
    margin: 20px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.carousel img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.sala-title {
    color: #2c3e50;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.direccion-title {
    color: white;
    text-align: center;
    margin: 30px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    font-size: 2rem;
    font-weight: bold;
}

.equipamiento-list {
    list-style: none;
    padding: 0;
}

.equipamiento-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.equipamiento-list li:last-child {
    border-bottom: none;
}

.btn-reserva {
    background: linear-gradient(45deg, #007bff, #0056b3);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.btn-reserva:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
    color: white;
}

.card-custom {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card-custom:hover {
    transform: translateY(-5px);
}

.badge-equipamiento {
    font-size: 0.9rem;
    padding: 8px 12px;
    margin: 2px;
    border-radius: 20px;
}

.disponible {
    background-color: #28a745;
    color: white;
}

.no-disponible {
    background-color: #6c757d;
    color: white;
}

/* Contenedor de imagen no disponible */
.imagen-no-disponible {
    height: 400px;
}

/* Estilos para las tarjetas de información */
.card-header.descripcion {
    background-color: #343a40; 
    color: white;
}

.card-header.ubicacion {
    background-color: #6c757d; 
    color: white;
}

.card-header.equipamiento {
    background-color: #495057; 
    color: white;
}

/* Estilos para los textos de disponibilidad */
.texto-disponible {
    color: #495057; 
    font-weight: 500;
}

/* Estilos para modales de reserva */
.hidden-div {
    display: none;
}

@media (max-width: 768px) {
    .main-content {
        margin: 10px;
        padding: 20px;
    }

    .direccion-title {
        font-size: 1.5rem;
    }

    .carousel img {
        height: 250px;
    }
}
