body {
    font-family: "Anton", sans-serif;
    font-weight: normal;
    background-color: black;
    margin: 0;
}

a {
    text-decoration: none;
}

.icon {
    width: 50px;
    height: 50px;
}

.imgLogos {
    height: 55px;
}

/* Estilo para el header */
.fixed-header {
    position: fixed;
    /* Fijo en la parte superior */
    top: 0;
    /* Alineado al borde superior */
    left: 0;
    width: 100%;
    /* Ocupa todo el ancho de la pantalla */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
    /* Degradado */
    /* Fondo blanco (ajústalo según tu diseño) */
    padding: 5px 0;
    display: flex;
    justify-content: center;
    /* Centra el logo horizontalmente */
    align-items: center;
    z-index: 1000;
    /* Asegura que el header esté sobre otros elementos */
}

/* Estilo para el logo */
.logo {
    height: 50px;
    border-radius: 50px;
    /* Ajusta el tamaño del logo */
}

.header_backgroundImgBox {
    position: relative;
    background-image: url('media/imgPlatos/IMG_3465.jpg');
    background-size: cover;
    background-position: center;
    height: 273px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header_backgroundImgBox img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.mainButton {
    background-color: #FFD11A;
    /* Color de fondo amarillo */
    color: #000;
    /* Color del texto negro */
    padding: 5px 15px;
    border: none;
    border-radius: 10px;
    /* Bordes redondeados */
    margin: 5px;
    cursor: pointer;
    font-size: 21px;
    transition: transform 0.2s;
}

.mainButton:hover {
    transform: scale(1.05);
    /* Pequeño aumento al pasar el cursor */
}

.location_button {
    background-color: #000;
    color: white;
    /* Color del texto negro */
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    /* Bordes redondeados */
    cursor: pointer;
    font-size: 18px;
    transition: transform 0.2s;
}

.location_button:hover {
    transform: scale(1.05);
}

.cartaSection {
    /* background-color: #FFD11A; */
    background-image: url('media/logos/banderaColombiana.jpg');
    background-size: 346px;
}

.cartaSection_tittle {
    font-size: 25px;
    font-weight: bold;
    color: black;
    display: flex;
    flex-basis: 100%;
    justify-content: center;
    width: 100%;
}

.cartaSection_body {
    display: flex;
    flex-wrap: wrap;
    flex-basis: 100%;
    justify-content: center;
    width: 100%;
    white-space: nowrap;
}

.cartaSection_body .mainButton {
    background-color: black;
    color: white;
}

.horarioSection {
    background-image: url('media/logos/mono.jpg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.numberBox{
    margin-top: 20px;
    flex-basis: 100%;
    text-align: center;
}

.horarioSection_tittle {
    display: flex;
    justify-content: center;
    font-size: 25px;
    font-weight: bold;
}

.horarioSection_body {
    display: flex;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
    white-space: nowrap;
    color: white;
    text-align: center;
}

.horarioSection_item {
    margin-bottom: 10px;
}

.horarioSection_hour {
    font-weight: normal;
}

.body_day {
    margin: 30px;
    text-align: center;
}

.body_time {
    margin: 30px;
    text-align: center;
}

.ubicationSection {
    background-image: url(media/logos/corona.png);
    background-repeat: no-repeat;
    background-size: contain; 
    background-position: center;
    display: flex;
    justify-content: center;
    background-color: #FFD11A;
    margin-top: 1px;
}

.ubicationSection_tittle {
    display: flex;
    justify-content: center;
    font-size: 25px;
    font-weight: bold;
}

.ubicationSection_body {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    font-size: 25px;
    padding: 20px;
    color: black;
}

.body_restaurant {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.body_tittle {
    display: flex;
    flex-basis: 100%;
    justify-content: center;
}

.body_icon {
    display: flex;
    justify-content: center;
}

/* Contenedor principal */
.separator {
    display: flex;
    align-items: center;
    width: 100%;
    color: #ffffff;
}

/* Estilo para las líneas */
.separator-line {
    flex: 1;
    height: 1px;
    background-color: #777;
}

/* Contenedor del logo */
.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    margin: 0 20px;
}

.auth {
    color: white;
    font-size: 12px;
    text-align: center;
    margin: 10px;
}

.auth a {
    color: white;
    font-weight: bold;
}

.footer_body {
    display: flex;
    justify-content: center;
    width: 100%;
}

.iconFooter {
    border-radius: 10px;
    height: 40px;
}

@media (max-width: 403px) {
   .location_button{
    font-size: 17px;
   } 
}

@media (max-width: 375px) {
    .location_button{
     font-size: 15px;
     white-space: nowrap;
    } 
 }