/* =========================
   BASE
========================= */

body {
    margin: 0;
    background-color: #0f0f0f;
    color: #fff;
    font-family: system-ui, sans-serif;
}

.menu-main {
    min-height: 100vh;
    padding: 1.5rem 1rem;
}

.menu-section {
    max-width: 800px;
    margin: auto;
}

/* =========================
   TÍTULO
========================= */

h1 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

/* =========================
   GRID DE CATEGORÍAS
========================= */

#menu-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
}

/* =========================
   TARJETA DE CATEGORÍA
========================= */

.menu-item {
    background: linear-gradient(135deg, #1b1b1b, #242424);
    border: 1px solid #2f2f2f;
    border-radius: 14px;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .15s, box-shadow .15s, border .15s;
}

.menu-item:hover {
    transform: translateY(-2px);
    border-color: #538efd;
    box-shadow: 0 8px 30px rgba(83, 142, 253, .25);
}

/* =========================
   LINK
========================= */

.menu-item a {
    text-decoration: none;
    color: white;
    font-size: 1.3rem;
    font-weight: 500;
    text-transform: capitalize;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================
   ESTADOS
========================= */

#menu-container p {
    text-align: center;
    grid-column: 1 / -1;
    color: #aaa;
    font-size: .95rem;
}
