@font-face {
    font-family: "Sekuya";
    src: url("../Sekuya/Sekuya-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

.header-with-background {
    padding-top: 1rem;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 75%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: opacity 0.35s ease, transform 0.35s ease;
    will-change: opacity, transform;
    box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.12);
}

.sekuya-regular {
    font-family: "Sekuya", system-ui;
    font-weight: 400;
    font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Sekuya", system-ui;
    font-weight: 400;
    font-style: normal;
}

.menu-subheading {
    font-size: 1.7rem;
}

.header-with-background p,
header > nav a,
header > nav a:visited,
footer p,
footer a {
    font-family: "Montserrat", sans-serif;
}

body.restaurant-layout {
    padding-top: var(--restaurant-header-height, 18rem);
}

body.restaurant-layout .header-with-background.is-hidden {
    opacity: 0;
    transform: translateY(-1.5rem);
    pointer-events: none;
}

.header-with-background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 1), transparent);
    pointer-events: none;  /* Ensures the overlay doesn't interfere with interactions */
}

.header-with-background > * {
    z-index: 2;
    position: relative;
}

.header-with-background h1, 
.header-with-background p {
    text-shadow: 0 0 1rem white;
}

.header-location-pin {
    position: absolute;
    top: 0.9rem;
    left: 0.9rem;
    z-index: 3;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.92);
    color: #b52323;
    box-shadow: 0 0.35rem 0.7rem rgba(0, 0, 0, 0.2);
}

.header-location-pin svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: currentColor;
}

.header-devil {
    position: absolute;
    top: 0.5rem;
    right: 4rem;
    width: 300px;
    height: auto;
    z-index: 3;
    opacity: 0.95;
    filter: drop-shadow(0 0.5rem 1rem rgba(0, 0, 0, 0.3));
}

.auth-links {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 4;
    font-size: 0.85rem;
    color: #333;
}

.auth-links a {
    color: #000;
    text-decoration: none;
    background: none;
    border: none;
    padding: 0;
    margin: 0 0.25rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    transition: opacity 0.2s;
}

.auth-links a:hover {
    opacity: 0.7;
    background: none;
    border: none;
}

.floating-cart {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    z-index: 1500;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.92);
    color: #b52323;
    box-shadow: 0 0.35rem 0.7rem rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
}

.floating-cart:hover {
    transform: scale(1.1);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
}

.floating-cart svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: currentColor;
}

a.active {
    background-color: var(--accent);
    border: 1px solid var(--accent);
    color: white!important;
}
a.active:hover {
    color: white!important;
    background-color: black;
    border: 1px solid black;
}

.breakfast-menu {
    max-width: 60rem;
    margin: 0 auto;
    padding: 1rem;
}

.bebidas-menu {
    max-width: 60rem;
    margin: 0 auto;
    padding: 1rem;
}

.menu-section {
    padding: 1rem 0;
}


.menu-item {
    display: grid;
    grid-template-columns: 12rem 1fr;
    gap: 0 1rem;
    align-items: center;
    padding: 0 1rem 0 0;
    margin: 0.9rem 0;
    border-radius: 17%;
    background: #fff;
    box-shadow: 0.55rem 0.55rem 1.2rem rgba(0, 0, 0, 0.18),
                -0.35rem -0.35rem 0.8rem rgba(255, 255, 255, 0.92);
    overflow: hidden;
}

.menu-item-thumb {
    width: 12rem;
    height: 6rem;
    object-fit: cover;
    object-position: left center;
}

.menu-item-content h4 {
    margin: 0 0 0.45rem;
}

.menu-item-content p {
    margin: 0;
}

@media (max-width: 560px) {
    .menu-item {
        grid-template-columns: 4.25rem 1fr;
        gap: 0 0.75rem;
        padding: 0 0.75rem 0 0;
    }

    .menu-item-thumb {
        width: 4.25rem;
        height: 4.25rem;
    }

    .header-location-pin {
        top: 0.7rem;
        left: 0.7rem;
        width: 2.35rem;
        height: 2.35rem;
    }

    .floating-cart {
        right: 1.5rem;
        bottom: 1.5rem;
        width: 3rem;
        height: 3rem;
    }

    .header-devil {
        width: 180px;
        top: 0.3rem;
        right: 1.5rem;
    }

    .auth-links {
        font-size: 0.75rem;
        top: 0.7rem;
        right: 0.7rem;
    }
}

.two-column-list {
    columns: 2;
    column-gap: 1.5rem;
    margin-top: 0.75rem;
}

.two-column-list li {
    break-inside: avoid;
    margin-bottom: 0.25rem;
}

.ethereal-brand {
    font-family: "Orbitron", sans-serif;
    font-weight: 400;
}
