/* Professional blurred photographic backgrounds for menu pages */

.menu-page-bg {
    position: relative;
    min-height: 100vh;
}

.menu-page-bg::before {
    content: '';
    position: fixed;
    inset: -20px;
    z-index: -2;
    background-image: var(--menu-bg-photo);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(32px) brightness(0.42) saturate(1.15);
    transform: scale(1.06);
    pointer-events: none;
}

.menu-page-bg::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(139, 26, 43, 0.18), transparent 55%),
        linear-gradient(180deg, rgba(8, 8, 10, 0.72) 0%, rgba(14, 14, 18, 0.88) 45%, rgba(10, 10, 12, 0.94) 100%);
    pointer-events: none;
}

/* Hero with featured photo panel */
.mph-hero {
    position: relative;
    padding-top: 6rem;
    padding-bottom: 3rem;
    overflow: hidden;
}

.mph-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}

.mph-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(139, 26, 43, 0.45) 50%, rgba(0, 0, 0, 0.8) 100%);
}

.mph-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 76rem;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 900px) {
    .mph-hero__inner {
        grid-template-columns: 1fr 1.1fr;
    }
}

.mph-hero__copy {
    text-align: center;
}

@media (min-width: 900px) {
    .mph-hero__copy {
        text-align: left;
    }
}

.mph-hero__visual {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border: 1px solid rgba(245, 158, 11, 0.25);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}

.mph-hero__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.mph-hero__visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent 40%);
    pointer-events: none;
}
