/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(to bottom, #f5f5f4, #ffffff);
    min-height: 100vh;
}

.container {
    max-width: 100%;
    min-height: 100vh;
}

/* Header del menú */
.menu-header {
    position: sticky;
    top: 0;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.menu-nav {
    max-width: 28rem;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    align-items: center;
}

.back-button {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: #374151;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.back-button:hover {
    color: #111827;
}

.menu-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111827;
}

/* Logo circular */
.logo-container {
    max-width: 28rem;
    margin: 0 auto;
    padding: 2rem 1rem;
    display: flex;
    justify-content: center;
}

.logo-circle {
    width: 8rem;
    height: 8rem;
    background: linear-gradient(to bottom right, #b45309, #78350f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border: 4px solid #d97706;
}

.logo-text {
    text-align: center;
    color: white;
}

.logo-name {
    font-size: 1.5rem;
    font-weight: bold;
    display: block;
}

.logo-subtitle {
    font-size: 0.75rem;
    display: block;
    margin-top: 0.25rem;
}

/* Contenido del menú */
.menu-content {
    max-width: 28rem;
    margin: 0 auto;
}

/* Sección de menú */
.menu-section {
    background: #fef3c7;
    margin: 0 1rem 1.5rem;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #78350f;
}

/* Tabla de productos */
.menu-table {
    background: white;
    border-radius: 0.5rem;
    padding: 1rem;
    border: 2px solid #78350f;
}

.table-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #78350f;
    font-weight: bold;
    color: #78350f;
}

.table-header span {
    flex: 1;
    text-align: center;
}

.table-header span:first-child {
    text-align: left;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    color: #78350f;
}

.item-name {
    flex: 1;
}

.item-price {
    flex: 1;
    text-align: center;
}

/* Responsivo para pantallas muy pequeñas */
@media (max-width: 320px) {
    .menu-title {
        font-size: 1.25rem;
    }

    .logo-circle {
        width: 6rem;
        height: 6rem;
    }

    .logo-name {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 1.25rem;
    }

    .item-name {
        font-size: 0.875rem;
    }

    .item-price {
        font-size: 0.875rem;
    }
}