/* Hero Section */
.hero {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--header-color);
    border-radius: 0.5rem;
    margin-bottom: 2rem;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;

    h2 {
        margin-bottom: 1rem;
        color: var(--header-color);
    }
}

.banner {
    position: relative;

    img {
        filter: brightness(0.5);
        height: 100dvh;
        object-fit: cover;
        object-position: center;
        width: 100%;
    }
}

/* Featured Dishes Section */
.featured-dishes {
    margin-bottom: 2rem;

    h2 {
        text-align: center;
        margin-bottom: 1.5rem;
    }
}

.dishes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;

    @media screen and (min-width: 768px) {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dish-card {
    background-color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease-out;
    padding-bottom: 1rem;

    &:hover {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    }

    img {
        width: 100%;
        object-fit: cover;
        transition: transform 0.3s ease-out;

        &:hover {
            transform: scale(1.05);
        }
    }

    .textContainer {
        padding-inline: 1rem;
    }

    h3 {
        margin: 1rem 0 0.5rem;
    }

    p {
        padding-inline: 1rem;
    }

    .price {
        font-size: 1.2rem;
        font-weight: bold;
        color: var(--heading-color-secondary);
        margin-top: 0.5rem;
    }
}

.featured-dishes .button {
    display: block;
    margin: 0 auto;
    text-align: center;
}

/* About Us Section */
.about-us {
    text-align: center;
    margin-block: 2rem;
    padding: 2rem;
    background-color: var(--footer-background);
    color: var(--footer-color);
    border-radius: 0.5rem;

    h2 {
        margin-bottom: 1rem;
    }

    p {
        max-width: 800px;
        margin: 0 auto;
    }
}

/* Reservation CTA Section */
.reservation-cta {
    text-align: center;
    padding: 2rem 0;

    h2 {
        margin-bottom: 1rem;
    }

    p {
        margin-bottom: 1.5rem;
    }
}