/**
 * restaurant-web base styles — deliberately generic and the same for every
 * restaurant (white background, black text, system font). The only thing that
 * varies per restaurant is the button accent color, set as CSS custom properties
 * in the small inline <style> block index.php renders (see getAccentTheme() in
 * helpers.php) — --accent-color / --accent-text-color, reusing the exact same
 * abel_config_css columns the carta app uses, so a restaurant's brand color stays
 * consistent across both without a second color system to maintain.
 */

html {
    width: 100%;
    min-height: 100%;
    font-size: 14px;
}
body {
    margin: 0 auto;
    font-weight: 400;
    background-color: #fff;
    color: #000;
    font-size: 14px;
    line-height: 20px;
    width: 100%;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}
.main {
    flex: 1;
}
.container {
    max-width: 80%;
    width: 80%;
    margin-left: 10%;
}
.logo {
    margin-left: 20%;
    width: 60%;
    margin-right: 20%;
}
.logo img {
    width: 100%;
}
.imagenprincipal img {
    width: 100%;
}
.btn {
    border: 2px solid #8c8f9;
    border-radius: 5px;
    padding: 1.375rem 1.75rem;
    font-size: 1.4rem;
    width: 100%;
}
.btn-secondary {
    border: 3px solid var(--accent-color, #008491);
    background: var(--accent-color, #008491);
    color: var(--accent-text-color, #fff);
}
.btn-secondary:hover {
    filter: brightness(0.85);
}
.pie {
    background: #000;
    color: #fff;
    width: 100%;
    min-height: 54px;
}
.subpie {
    background: #000;
    color: #fff;
}
h1 {
    font-size: 2.5rem;
    color: #000;
    text-align: center;
    width: 100%;
}
h3 {
    font-size: 1.75rem;
    color: #000;
    width: 100%;
    text-align: center;
}
.alineadcha {
    text-align: left;
}
.alineaizda {
    text-align: right;
}
@media (max-width: 1024px) {
    .container {
        max-width: 95%;
        width: 95%;
        margin-left: 2.5%;
    }
}
@media (max-width: 768px) {
    .logo {
        margin-top: 25px;
        width: 50%;
        margin-left: 25%;
        margin-bottom: 25px;
    }
    .logo img {
        width: 100%;
    }
    h1 { font-size: 2.5rem; }
    h3 { font-size: 1.75rem; }
    .col {
        min-width: 100%;
        padding-top: 6px;
    }
    .alineadcha { text-align: center; }
    .alineaizda { text-align: center; }
    .container {
        margin-left: 1%;
        margin-right: 1%;
        width: 98%;
        max-width: 98%;
    }
}