/* Importar una fuente elegante de Google */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    margin: 0;
    padding: 40px 20px;
    color: #2d3436;
}

h1 {
    font-weight: 600;
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Contenedor tipo Grid (Cuadrícula Moderna) */
.menu-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Tarjeta Estilo Premium */
.card {
    text-decoration: none;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(255,255,255,0.3);
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card span {
    padding: 20px;
    font-weight: 600;
    font-size: 1.2rem;
    text-align: center;
    background: #fff;
    color: #2d3436;
}

/* Efectos Interactivos (Hover) */
.card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.card:hover img {
    transform: scale(1.1); /* Zoom suave a la imagen */
}

.card:hover span {
    color: #e67e22; /* Cambia al color de tu marca al pasar el mouse */
}

/* Ajuste para móviles */
@media (max-width: 600px) {
    h1 { font-size: 1.8rem; }
    .menu-container { gap: 20px; }
}