/* ==========================================
   L'OPERA ROYAL - RESERVATION HERO
========================================== */

/*
|--------------------------------------------------------------------------
| Expected image from PHP
|--------------------------------------------------------------------------
| Location: assets/images/reservation/
| File name: reservation-hero.png
| Replace with: Elegant restaurant table, terrace or dining atmosphere for the reservation page hero.
|--------------------------------------------------------------------------
*/

.royal-reservation-hero {
    position: relative;
    isolation: isolate;

    min-height: 68vh;
    padding: 190px 0 118px;

    display: flex;
    align-items: center;

    color: var(--royal-white);
    background:
        radial-gradient(
            circle at 18% 18%,
            rgba(172, 142, 91, 0.18) 0%,
            rgba(172, 142, 91, 0.07) 30%,
            rgba(172, 142, 91, 0) 58%
        ),
        radial-gradient(
            circle at 86% 26%,
            rgba(255, 255, 255, 0.06) 0%,
            rgba(255, 255, 255, 0.02) 28%,
            rgba(255, 255, 255, 0) 54%
        ),
        linear-gradient(
            135deg,
            rgba(8, 48, 80, 1) 0%,
            rgba(3, 16, 29, 1) 54%,
            rgba(1, 7, 13, 1) 100%
        );

    overflow: hidden;
}

.royal-reservation-hero__background {
    position: absolute;
    inset: 0;
    z-index: -3;

    background-image: var(--royal-reservation-hero-image);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    transform: scale(1.03);
}

.royal-reservation-hero.has-background-image {
    background: var(--royal-navy-deep);
}

.royal-reservation-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: -2;

    pointer-events: none;
}

.royal-reservation-hero.has-background-image .royal-reservation-hero__overlay {
    background:
        linear-gradient(
            90deg,
            rgba(1, 7, 13, 0.88) 0%,
            rgba(1, 7, 13, 0.66) 44%,
            rgba(1, 7, 13, 0.28) 100%
        ),
        linear-gradient(
            180deg,
            rgba(1, 7, 13, 0.36) 0%,
            rgba(1, 7, 13, 0.14) 48%,
            rgba(1, 7, 13, 0.76) 100%
        );
}

.royal-reservation-hero.has-fallback-background .royal-reservation-hero__overlay {
    background:
        linear-gradient(
            180deg,
            rgba(1, 7, 13, 0.10) 0%,
            rgba(1, 7, 13, 0.18) 48%,
            rgba(1, 7, 13, 0.34) 100%
        );
}

.royal-reservation-hero::after {
    content: "";

    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: -1;

    width: min(1180px, 92%);
    height: 1px;

    background: linear-gradient(
        90deg,
        rgba(172, 142, 91, 0),
        rgba(172, 142, 91, 0.78),
        rgba(172, 142, 91, 0)
    );

    transform: translateX(-50%);
}

.royal-reservation-hero__content {
    position: relative;
    z-index: 2;

    width: min(100%, 820px);
}

.royal-reservation-hero__kicker {
    margin: 0 0 22px;

    color: var(--royal-gold);

    font-family: var(--royal-font-body);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.28em;
    line-height: 1.2;
    text-transform: uppercase;
}

.royal-reservation-hero__title {
    margin: 0;

    color: var(--royal-white);

    font-family: var(--royal-font-heading);
    font-size: clamp(58px, 8vw, 118px);
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 0.92;
    text-transform: uppercase;

    text-shadow:
        0 16px 44px rgba(1, 7, 13, 0.68),
        0 0 34px rgba(172, 142, 91, 0.16);
}

.royal-reservation-hero__intro {
    max-width: 620px;
    margin: 30px 0 0;

    color: rgba(255, 255, 255, 0.84);

    font-family: var(--royal-font-body);
    font-size: clamp(16px, 1.45vw, 20px);
    font-weight: 500;
    line-height: 1.72;
}

.royal-reservation-hero__intro::before {
    content: "";

    width: 72px;
    height: 1px;
    margin: 0 22px 6px 0;

    display: inline-block;

    background: var(--royal-gold);
}

.royal-reservation-hero__notice {
    width: fit-content;
    max-width: 620px;
    margin-top: 34px;
    padding: 18px 22px;

    color: rgba(255, 255, 255, 0.84);
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(172, 142, 91, 0.36);

    -webkit-backdrop-filter: blur(16px) saturate(112%);
    backdrop-filter: blur(16px) saturate(112%);

    font-family: var(--royal-font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.6;
    text-transform: uppercase;

    box-shadow: 0 18px 44px rgba(1, 7, 13, 0.22);
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 1024px) {
    .royal-reservation-hero {
        min-height: 62vh;
        padding: 168px 0 96px;
    }

    .royal-reservation-hero__content {
        width: min(100%, 720px);
    }
}

@media (max-width: 767px) {
    .royal-reservation-hero {
        min-height: 58vh;
        padding: 138px 0 78px;

        text-align: center;
    }

    .royal-reservation-hero.has-background-image .royal-reservation-hero__overlay {
        background:
            linear-gradient(
                180deg,
                rgba(1, 7, 13, 0.64) 0%,
                rgba(1, 7, 13, 0.54) 42%,
                rgba(1, 7, 13, 0.86) 100%
            );
    }

    .royal-reservation-hero__content {
        margin-inline: auto;
    }

    .royal-reservation-hero__kicker {
        margin-bottom: 18px;

        font-size: 11px;
        letter-spacing: 0.22em;
    }

    .royal-reservation-hero__title {
        font-size: clamp(44px, 13vw, 70px);
        line-height: 0.98;
    }

    .royal-reservation-hero__intro {
        margin: 24px auto 0;

        font-size: 15px;
        line-height: 1.68;
    }

    .royal-reservation-hero__intro::before {
        width: 58px;
        margin: 0 auto 18px;

        display: block;
    }

    .royal-reservation-hero__notice {
        width: 100%;
        margin: 30px auto 0;

        font-size: 11px;
        letter-spacing: 0.03em;
    }
}