.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_1.png') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 100px 20px;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(179, 10, 10, 0.5); /* Capa roja transparente */
    z-index: 1;
}

.justify-text {
    text-align: justify;
}

p a {
    white-space: nowrap;
}

.hero-section h1 {
    position: relative;
    z-index: 2;
    font-size: 2.5rem;
    font-weight: bold;
    margin-top: 10px;
}

.hero-section img {
    position: relative;
    z-index: 2;
    height: 75px; /* Ajusta la altura del banner */
    width: auto; /* Mantiene la proporción de la imagen */
}

.card {
    margin-bottom: 20px;
}

.card .card-body {
    padding: 15px;
}

.card-title {
    font-size: 1.25rem;
}

.btn-primary {
    background-color: #032050;
    border: none;
    width: 100%;
    margin: auto;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #032050;
}

.footer {
    background-color: #343a40;
    color: white;
    padding: 20px 0;
}

.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 */
}