.navbar-nav {
    width: 100%;
    justify-content: space-evenly;
}

.navbar-brand img {
    height: 50px; /* Ajusta la altura del logo según sea necesario */
}

.hero-section {
    position: relative;
    background: url('../images/restaurant_3.png') no-repeat center center;
    background-size: cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 87, 255, 0.5); /* Capa azul transparente */
    z-index: 1;
}

.justify-text {
    text-align: justify;
}

.hero-section h1,
.hero-section p {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero-section img {
    position: relative;
    z-index: 1;
    height: 75px; /* Ajusta la altura del banner */
    width: auto; /* Mantiene la proporción de la imagen */
}

.hero-section p {
    font-size: 1.2rem;
}

.news-section {
    background-color: #f8f9fa;
    padding: 20px;
}

.news-section .card-header {
    background-color: #9F0707;
    color: white;
    text-align: center;
    font-weight: bold;
}

.news-section .btn {
    background-color: #9F0707;
    color: white;
    margin-top: 10px;
}

.footer {
    background-color: #343a40;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.footer a {
    color: white;
}

.footer-logo {
    max-width: 100px; /* Ajustar el ancho máximo de la imagen */
    height: auto;    /* Mantiene la proporción de la imagen */
    display: block;
    margin: 0 auto; /* Centra la imagen horizontalmente */
}

/* Estilos para el carrusel de noticias */
.carousel-inner .carousel-item {
    transition: transform 0.5s ease;
    text-align: center;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #002850;
    width: 20px;
    height: 20px;
}

.news-section .carousel-control-prev,
.news-section .carousel-control-next {
    width: 10px;
    height: 10px;
    top: 75%;
    transform: translateY(-50%);
}

