:root {
    --footer-min-height: 60px;  
}

body {
    margin: 0;
}

main {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-image: url("../assets/restaurante.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

main::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

footer {
    min-height: var(--footer-min-height);
    color: #c0c0c0;
    z-index: 1;
}

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

footer p {
    display: flex;
    gap: 2rem;
    font-size: 0.95rem;
}

.content {
    min-height: calc(100vh - var(--footer-min-height));
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    z-index: 1;
}
.content-inner {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

h1, h2, p {
    margin: 0;
    font-family: Arial, sans-serif;
}

h1 {
    margin-bottom: 1rem;
}

h2 {
    font-weight: normal;
}

a {
    color: #c0c0c0;
    text-decoration: none;
}

img {
    max-width: 100%;
}

@media screen and (max-width: 768px) {
    footer p {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}