@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

:root {
    /* Brand Colors from Manual de Identidad Gráfica */
    --color-primary: #a61a16;
    --color-secondary: #e73e11;
    --color-accent: #ee759f;
    --color-highlight: #fab500;
    --color-cream: #ffeabb;
    --color-bg: #fff5f5;
    --color-bg-warm: #ffeabc33;
    --text-dark: #3d1a18;
    --text-body: #5a3230;
}

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

body {
    background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-cream) 100%);
    background-attachment: fixed;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    padding: 40px;
}

.menu-container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

header {
    text-align: center;
    padding: 30px 20px 50px;
    position: relative;
}

.logo-container {
    margin-bottom: 20px;
}

.logo {
    width: 100%;
    height: auto;
}

h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 3.5rem;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--color-primary);
    line-height: 1.1;
    margin-top: 15px;
}

.tagline {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-top: 8px;
}

.layout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

section {
    position: relative;
}

h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--color-highlight);
    display: inline-block;
    letter-spacing: 2px;
}

.menu-item {
    margin-bottom: 18px;
    position: relative;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-weight: 600;
    font-size: 1rem;
    gap: 10px;
    color: var(--text-dark);
}

.item-description {
    font-size: 0.85rem;
    color: var(--text-body);
    margin-top: 4px;
    line-height: 1.4;
}

.price {
    font-weight: 700;
    white-space: nowrap;
    color: var(--color-secondary);
    font-size: 1rem;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-highlight), var(--color-accent));
    margin: 40px auto;
    border-radius: 2px;
}

/* Info Sections */
.info-section {
    margin-bottom: 30px;
}

.info-section h2 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.95rem;
}

.info-description {
    font-size: 0.8rem;
    color: var(--text-body);
    margin-top: 8px;
    line-height: 1.4;
}

/* Bebidas Grid */
.bebida-group {
    margin-bottom: 15px;
}

.sub-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    padding: 4px 0;
    border-bottom: 1px dotted rgba(93, 27, 25, 0.15);
}

/* Footer */
.footer {
    margin-top: 100px;
    padding: 60px 20px;
    width: 100%;
    text-align: center;
    background: linear-gradient(to bottom, rgba(255, 234, 187, 0.3), transparent);
    border-radius: 40px 40px 0 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.footer-logo {
    width: 120px;
    opacity: 0.8;
}

.location-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--text-dark);
}

.location-container i {
    font-size: 1.5rem;
    color: var(--color-secondary);
}

.location-container p {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.map-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.map-link {
    color: white;
    padding: 14px 28px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.map-link.google-maps {
    background-color: var(--color-primary);
}

.map-link.waze {
    background-color: #33ccff;
    color: #1b4b66;
}

.map-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.map-link i {
    font-size: 1.2rem;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    padding: 14px 24px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.05);
    background-color: #20b355;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding: 20px;
    }

    h1 {
        font-size: 2.2rem;
        letter-spacing: 4px;
    }

    .layout-grid {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .left-column,
    .right-column {
        display: contents;
    }

    .desayunos {
        order: 1;
    }

    .almuerzos {
        order: 2;
    }

    .right-column .section-divider {
        order: 3;
    }

    .bebidas {
        order: 4;
    }

    .left-column .section-divider {
        order: 5;
    }

    .info-section {
        order: 6;
    }

    .logo {
        width: 100%;
        max-width: 500px;
    }

    .footer {
        margin-top: 50px;
        padding: 40px 15px;
    }

    .map-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
    }

    .map-link {
        justify-content: center;
    }

    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}