* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-image: url('body.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; 
    background-repeat: no-repeat;
    font-family: 'Times New Roman', serif;
    color: black;
    text-align: center;
    margin: 0;
    padding: 0;
}

.contenido {
    background-color: rgba(255, 237, 209, 0.7); 
    margin: 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

ol, ul {
    list-style: none;
}

.header {
    background: linear-gradient(135deg, #b50000, #d72a2a, #ff4d4d); 
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%; 
    top: 0; 
    left: 0; 
    z-index: 10; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.navbar {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 4rem;
    color: #fff;
    font-weight: bold;
}

.menu_hamburguesa {
    display: none;
}

.label_hamburguesa {
    cursor: pointer;
    display: block;
}

.li_links {
    color: #000000;
}

.ul_links {
    width: 100%;
    background-image: url('back.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 90px;
    left: 0;
    height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    text-align: center;
    transition: height 0.3s ease;
}

.menu_hamburguesa:checked + .ul_links {
    height: calc(100vh - 90px);
}

.link {
    font-size: 1.5rem;
    color: white;
    font-weight: bold;
    transition: all 0.3s ease;
    background-color: #d72a2a;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.link:hover {
    background-color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    color: #d72a2a;
}

.seccion {
    padding: calc(90px + 2rem) 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    align-items: center;
}

.seccionn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    text-align: left;
    padding: 2rem;
}

.titulo_seccion {
    font-size: 4rem;
    color: #b50000;
    padding-top: 40px;
    padding-left: 40px;
    font-family: "Courier New", monospace;
    font-weight: bold;
}

.texto_centrado {
    font-size: 2rem;
    color: black;
    max-width: 600px;
    width: 100%;
    text-align: center;
    background-color: rgba(255, 237, 209, 0.7);
    border-style: groove;
    margin: 10px;
    font-family: "Courier New", monospace;
}

.imagen-local {
    width: 80%;
    height: auto;
    float: right; 
    margin-left: 20px;
    border-style: dashed;
}

@media (max-width: 768px) {
    .seccionn {
        flex-direction: column;
        text-align: center;
    }

    .imagen-local {
        width: 100%;
        float: none;
        margin-left: 0;
    }
}

.platillo {
    text-align: center;
    width: 250px;
}

.img-platillo {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.texto-platillo {
    margin-top: 0.5rem;
    font-size: 1.2rem;
    color: #333;
}

.reseña-contenedor {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.texto-caja {
    font-size: 1.2rem;
    color: #333;
}

.boton {
    background-color: #b50000;
    color: #fff;
    padding: 0.7rem 1.5rem;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.boton:hover {
    background-color: #d72a2a;
}

.redes-sociales {
    margin-top: 1rem;
}

.icono-social {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.icono-social:hover {
    color: #b50000;
}

@media (max-width: 768px) {
    .platillos {
        flex-direction: column;
    }

    .img-platillo {
        width: 100%;
        height: 200px;
    }

    .reseña-contenedor {
        flex-direction: column;
        text-align: center;
    }
}

.platillos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 0;
}

.platillo {
    flex: 1 1 calc(33% - 1rem);
    text-align: center;
    margin-bottom: 2rem;
    min-width: 200px;
}

.platillo img {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 8px;
}

.platillo h3 {
    margin-top: 1rem;
    color: #b50000;
    font-size: 1.2rem;
}

.platillo p {
    font-size: 1rem;
    color: black;
}

@media (max-width: 768px) {
    .platillo {
        flex: 1 1 calc(50% - 1rem);
    }
}

@media (max-width: 480px) {
    .platillo {
        flex: 1 1 100%;
    }
}

.footer {
    background-color: #000; 
    color: #ff0000; 
    padding: 40px 0;
    text-align: center;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-top: 2px solid #ff0000; 
    padding-top: 20px;
}

.footer-col {
    flex: 1;
    margin: 15px;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
    border-bottom: 2px solid #ff0000; 
    display: inline-block;
    padding-bottom: 5px;
    color: #ff0000;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin: 10px 0;
}

.footer-col ul li a {
    color: #ff0000;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #ffffff; 
}

.social-links a {
    display: inline-block;
    color: #ff0000;
    font-size: 30px; 
    margin: 0 15px;
    transition: transform 0.3s, color 0.3s;
}

.social-links a:hover {
    transform: scale(1.2);
    color: #ffffff; 
}