css
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    background-color: #fffdf8;
    color: #333;
    line-height: 1.6;
}

header {
    background-color: #c72c41;
    color: white;
    padding: 10px 0;
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu {
    list-style: none;
    display: flex;
    gap: 20px;
}

.menu-link {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s;
}

.menu-link:hover,
.menu-link.activo,
.menu-link.active {
    color: #ffe082;
    border-bottom: 2px solid #ffe082;
}

.hero, .bienvenida {
    background: linear-gradient(to right, #c72c41, #e94e77);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.hero-text h1,
.bienvenida h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.hero-text p,
.bienvenida p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.hero-text span {
    color: #ffe082;
    font-weight: bold;
}

.btn-contacto {
    display: inline-block;
    background-color: #ffe082;
    color: #c72c41;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-contacto:hover {
    background-color: #fff3b0;
}

.destacados, .featured {
    text-align: center;
    padding: 60px 20px;
}

.destacados h2,
.featured h2 {
    color: #c72c41;
    font-size: 2rem;
    margin-bottom: 30px;
}

.platillos, .cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.platillo, .card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    width: 280px;
    text-align: center;
    transition: transform 0.3s;
}

.platillo:hover,
.card:hover {
    transform: scale(1.05);
}

.platillo img,
.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.platillo h3,
.card h3 {
    margin: 10px 0;
    color: #c72c41;
}

.price {
    display: block;
    margin-bottom: 15px;
    color: #e94e77;
    font-weight: 600;
}

.menu-category {
    margin: 50px 0;
}

.menu-category h2{
    text-align: center;
}

.menu-category h3 {
    color: #c72c41;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 20px;
}

.menu-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.menu-item {
    width: 250px;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    text-align: center;
}

.menu-item:hover {
    transform: translateY(-5px);
}

.menu-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.menu-item h4 {
    margin: 10px 0;
    color: #c72c41;
}

.hero-secondary {
    background-color: #f8f8f8;
    padding: 60px 20px;
    text-align: center;
}

.hero-secondary h1 {
    color: #c72c41;
    margin-bottom: 25px;
}

.historia-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    align-items: center;
}

.fundadora-img {
    width: 280px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.historia-text {
    max-width: 500px;
    text-align: justify;
}

.filosofia {
    background-color: #fffdf8;
    padding: 50px 20px;
}

.filosofia h2,
.equipo h2 {
    color: #c72c41;
    text-align: center;
    margin-bottom: 25px;
}

.mision-vision {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.card {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    width: 280px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.valores ul {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
    padding: 0;
}

.valores li {
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
}

.equipo {
    padding: 60px 20px;
}

.miembros {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.miembro {
    width: 280px;
    text-align: center;
}

.miembro img {
    width: 100%;
    height: 220px;
    border-radius: 12px;
    object-fit: cover;
}

.promociones {
    padding: 60px 20px;
    text-align: center;
}

.promociones h1 {
    color: #c72c41;
    margin-bottom: 20px;
}

.promo-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.promo {
    background-color: #fff;
    border-radius: 12px;
    width: 260px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.promo img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.promo h3 {
    color: #c72c41;
    margin: 10px 0;
}

footer {
    background-color: #c72c41;
    color: white;
    text-align: center;
    padding: 20px 10px;
    margin-top: 40px;
    font-size: 0.9rem;
}

footer a {
    color: #ffe082;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .menu {
        flex-direction: column;
        align-items: center;
    }

    .platillos, .cards, .menu-items, .promo-cards, .miembros {
        flex-direction: column;
        align-items: center;
    }

    .historia-content {
        flex-direction: column;
    }

    .fundadora-img {
        width: 90%;
    }
}

