/* ==========================================
   L'OPERA ROYAL - CONTACT HERO
   Unified internal page hero
   Same design direction as About/Menu
   Navy overlay / Gold accents / No gradients / No blur
========================================== */

/*
|--------------------------------------------------------------------------
| Expected image from PHP
|--------------------------------------------------------------------------
| Location: assets/images/contact/
| File name: contact-hero.jpg
| Replace with: Premium horizontal photo of the restaurant entrance, terrace,
| exterior facade or elegant dining atmosphere for the contact page hero.
|--------------------------------------------------------------------------
*/

/* ==========================================
   SECTION
========================================== */

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

    width: 100%;
    min-height: clamp(430px, 54vh, 560px);
    padding: 166px 0 82px;

    display: flex;
    align-items: center;

    color: var(--royal-white);
    background: var(--royal-navy);

    overflow: hidden;
}

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

/* ==========================================
   BACKGROUND IMAGE
========================================== */

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

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

    transform: none;
}

.royal-contact-hero.has-fallback-background .royal-contact-hero__background {
    display: none;
}

/* ==========================================
   OVERLAY
========================================== */

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

    background: rgba(var(--royal-navy-rgb), 0.54);

    pointer-events: none;
}

.royal-contact-hero.has-fallback-background .royal-contact-hero__overlay {
    background: rgba(var(--royal-navy-rgb), 0.18);
}

/* ==========================================
   BOTTOM ACCENT LINE
========================================== */

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

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

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

    background: rgba(var(--royal-gold-rgb), 0.58);

    transform: translateX(-50%);

    pointer-events: none;
}

/* ==========================================
   CONTENT
========================================== */

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

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

.royal-contact-hero__kicker {
    margin: 0 0 18px;

    color: var(--royal-gold);

    font-family: var(--royal-font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.24em;
    line-height: 1.2;
    text-transform: uppercase;
}

.royal-contact-hero__title {
    margin: 0;

    color: var(--royal-white);

    font-family: var(--royal-font-heading);
    font-size: clamp(58px, 7vw, 96px);
    font-weight: 500;
    letter-spacing: 0.045em;
    line-height: 0.96;
    text-transform: uppercase;

    text-shadow: 0 14px 34px rgba(var(--royal-navy-rgb), 0.42);
}

.royal-contact-hero__intro {
    max-width: 560px;
    margin: 26px 0 0;

    color: rgba(var(--royal-white-rgb), 0.88);

    font-family: var(--royal-font-body);
    font-size: clamp(15px, 1.25vw, 18px);
    font-weight: 500;
    line-height: 1.68;
}

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

    width: 66px;
    height: 1px;
    margin: 0 20px 6px 0;

    display: inline-block;

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

/* ==========================================
   TABLET
========================================== */

@media (max-width: 1024px) {
    .royal-contact-hero {
        min-height: clamp(400px, 50vh, 500px);
        padding: 148px 0 72px;
    }

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

    .royal-contact-hero__overlay {
        background: rgba(var(--royal-navy-rgb), 0.56);
    }
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {
    .royal-contact-hero {
        min-height: 360px;
        padding: 112px 0 54px;

        text-align: left;
    }

    .royal-contact-hero__background {
        background-position: center center;
    }

    .royal-contact-hero__overlay {
        background: rgba(var(--royal-navy-rgb), 0.62);
    }

    .royal-contact-hero__content {
        width: min(100%, 520px);
        margin-inline: 0;
    }

    .royal-contact-hero__kicker {
        margin-bottom: 14px;

        font-size: 10px;
        letter-spacing: 0.20em;
    }

    .royal-contact-hero__title {
        font-size: clamp(46px, 15vw, 68px);
        line-height: 1;
        letter-spacing: 0.04em;
    }

    .royal-contact-hero__intro {
        max-width: 330px;
        margin: 20px 0 0;

        font-size: 13px;
        line-height: 1.58;
    }

    .royal-contact-hero__intro::before {
        width: 52px;
        margin: 0 0 14px;

        display: block;
    }
}

/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 420px) {
    .royal-contact-hero {
        min-height: 340px;
        padding: 106px 0 48px;
    }

    .royal-contact-hero__title {
        font-size: 46px;
    }

    .royal-contact-hero__intro {
        max-width: 310px;
    }
}