/* ==========================================
   L'OPERA ROYAL - HOME WELCOME COMPONENT
   Premium welcome split section
   No black background / no gradients
========================================== */

/*
|--------------------------------------------------------------------------
| Expected image from PHP
|--------------------------------------------------------------------------
| Location: assets/images/home/
| File name: welcome-restaurant.png
| Replace with: Elegant restaurant interior with L'Opera Royal atmosphere.
|--------------------------------------------------------------------------
*/

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

.royal-home-welcome {
    position: relative;
    isolation: isolate;

    width: 100%;

    color: var(--royal-text-body);
    background: var(--royal-white);

    overflow: hidden;
}

/* ==========================================
   GRID
========================================== */

.royal-home-welcome__grid {
    width: 100%;

    display: grid;
    grid-template-columns: 1fr;

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

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

.royal-home-welcome__content {
    position: relative;
    z-index: 3;

    width: min(100% - 48px, 620px);
    margin-inline: auto;

    padding: 70px 0 52px;
}

.royal-home-welcome .royal-kicker {
    margin: 0 0 14px;

    color: var(--royal-gold);

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

.royal-home-welcome__title {
    margin: 0;

    color: var(--royal-navy);

    font-family: var(--royal-font-heading);
    font-size: clamp(36px, 4.2vw, 62px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.royal-home-welcome__title::after {
    content: "";

    width: 92px;
    height: 1px;
    margin: 26px 0 30px;

    display: block;

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

.royal-home-welcome__text {
    max-width: 570px;

    color: var(--royal-text-body);

    font-family: var(--royal-font-body);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.82;
}

.royal-home-welcome__text p {
    margin: 0 0 18px;
}

.royal-home-welcome__text p:first-child {
    color: var(--royal-navy);

    font-weight: 700;
}

.royal-home-welcome__text p:last-child {
    margin-bottom: 0;
}

.royal-home-welcome__highlight {
    position: relative;

    margin-top: 28px;
    padding: 18px 0 18px 24px;

    color: var(--royal-gold);

    font-family: var(--royal-font-heading);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.58;

    border-left: 1px solid var(--royal-gold);
}

/* ==========================================
   MEDIA
========================================== */

.royal-home-welcome__media {
    position: relative;

    min-height: 340px;

    overflow: hidden;

    background: var(--royal-cream-soft);
}

.royal-home-welcome__image {
    position: absolute;
    inset: 0;
    z-index: 0;

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

    transform: scale(1.01);
}

.royal-home-welcome.has-fallback-background .royal-home-welcome__image {
    display: none;
}

.royal-home-welcome__media::before {
    content: "";

    position: absolute;
    inset: 0;
    z-index: 1;

    pointer-events: none;

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

.royal-home-welcome__media::after {
    content: "";

    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 2;

    width: 28%;

    pointer-events: none;

    background: rgba(var(--royal-white-rgb), 0.72);

    display: none;
}

/* ==========================================
   FALLBACK STATE
========================================== */

.royal-home-welcome.has-fallback-background .royal-home-welcome__media {
    background: var(--royal-cream-soft);
}

.royal-home-welcome.has-fallback-background .royal-home-welcome__media::before {
    background: rgba(var(--royal-navy-rgb), 0.08);
}

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

@media (min-width: 768px) {
    .royal-home-welcome__grid {
        grid-template-columns: 0.95fr 1.05fr;
        min-height: 520px;
    }

    .royal-home-welcome__content {
        width: min(100% - 64px, 600px);
        padding: 84px 0 78px;
    }

    .royal-home-welcome__media {
        min-height: 520px;
    }

    .royal-home-welcome__media::after {
        display: block;
    }
}

/* ==========================================
   DESKTOP
========================================== */

@media (min-width: 1024px) {
    .royal-home-welcome__grid {
        grid-template-columns: 0.90fr 1.10fr;
        min-height: 580px;
    }

    .royal-home-welcome__content {
        width: min(100% - 104px, 620px);
        padding: 104px 0 96px;
    }

    .royal-home-welcome__media {
        min-height: 580px;
    }

    .royal-home-welcome__image {
        background-position: center center;
    }
}

/* ==========================================
   LARGE DESKTOP
========================================== */

@media (min-width: 1440px) {
    .royal-home-welcome__grid {
        grid-template-columns: 0.88fr 1.12fr;
        min-height: 620px;
    }

    .royal-home-welcome__content {
        width: min(100% - 120px, 650px);
        padding: 116px 0 108px;
    }

    .royal-home-welcome__media {
        min-height: 620px;
    }

    .royal-home-welcome__text {
        max-width: 610px;
    }
}

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

@media (max-width: 767px) {
    .royal-home-welcome__content {
        width: min(100% - 34px, 100%);
        padding: 56px 0 42px;
    }

    .royal-home-welcome .royal-kicker {
        font-size: 10px;
        letter-spacing: 0.16em;
    }

    .royal-home-welcome__title {
        font-size: clamp(32px, 8.8vw, 44px);
        line-height: 1.12;
        letter-spacing: 0.035em;
    }

    .royal-home-welcome__title::after {
        margin: 22px 0 26px;
    }

    .royal-home-welcome__text {
        font-size: 14px;
        line-height: 1.76;
    }

    .royal-home-welcome__highlight {
        margin-top: 24px;
        padding: 16px 0 16px 20px;

        font-size: 16px;
        line-height: 1.56;
    }

    .royal-home-welcome__media {
        min-height: 320px;
    }

    .royal-home-welcome__media::before {
        background: rgba(var(--royal-navy-rgb), 0.08);
    }
}

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

@media (max-width: 420px) {
    .royal-home-welcome__content {
        width: min(100% - 30px, 100%);
        padding-top: 52px;
    }

    .royal-home-welcome__title {
        font-size: clamp(30px, 8vw, 40px);
    }

    .royal-home-welcome__media {
        min-height: 280px;
    }
}

/* ==========================================
   ACCESSIBILITY CONTRAST FIX
========================================== */

.royal-home-welcome .royal-kicker,
.royal-home-welcome__highlight {
    color: #735827 !important;
}
