/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f9;
    color: #333;
    
    margin: 0;
    padding: 0;
}

/* Navbar */
.navbar {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: bold;
    color: #007bff !important;
}

.navbar-nav .nav-link {
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #007bff !important;
}

/* Hero Section */
h1.display-4 {
    text-align: center;
    margin-top: 100px;
    font-size: 3rem;
    font-weight: 700;
    color: #007bff;
}

p.lead {
    text-align: center;
    font-size: 1.2rem;
    margin: 10px auto;
    max-width: 800px;
    line-height: 1.6;
}

/* Footer */
footer {
    background-color: #343a40;
    color: white;
    padding: 40px 20px;
    text-align: center;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}


footer .informacion h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 700;
}

footer p {
    font-size: 1rem;
    margin: 5px 0;
}

footer i {
    color: #007bff;
    margin-right: 8px;
}

/* Contenedor centrado */
#estado-horario {
    font-size: 1.5rem;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;  /* Centrar horizontalmente */
    width: fit-content;  /* Ajustar al contenido */
}

/* Colores y estilos */
.estado-abierto {
    background-color: #28a745;
    color: white;
}

.estado-cerrado {
    background-color: #dc3545;
    color: white;
}

.estado-cierra-pronto {
    background-color: #ffc107;
    color: black;
}


/* Responsive Design */
@media (max-width: 768px) {
    h1.display-4 {
        font-size: 2.5rem;
    }
    
    p.lead {
        font-size: 1rem;
    }
}
