/* ==========================================
   L'OPERA ROYAL - ABOUT LIFESTYLE
   Premium editorial section
   Light background / Navy text / Gold accents
   No gradients
========================================== */

/*
|--------------------------------------------------------------------------
| Expected image from PHP
|--------------------------------------------------------------------------
| Location: assets/images/about/
| File name: about-lifestyle.jpg
| Replace with: Premium restaurant interior or elegant dining atmosphere.
|--------------------------------------------------------------------------
*/

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

.royal-about-lifestyle {
    position: relative;
    isolation: isolate;

    width: 100%;

    padding: 92px 0 104px;

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

    overflow: hidden;
}

.royal-about-lifestyle::before {
    content: "";

    position: absolute;
    left: 50%;
    top: 0;
    z-index: 0;

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

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

    transform: translateX(-50%);

    pointer-events: none;
}

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

.royal-about-lifestyle__grid {
    position: relative;
    z-index: 1;

    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(52px, 6vw, 82px);

    align-items: center;
}

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

.royal-about-lifestyle__content {
    position: relative;
}

.royal-about-lifestyle .royal-kicker {
    margin: 0 0 16px;

    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-about-lifestyle__title {
    max-width: 560px;
    margin: 0;

    color: var(--royal-navy);

    font-family: var(--royal-font-heading);
    font-size: clamp(34px, 3.25vw, 52px);
    font-weight: 500;
    letter-spacing: 0.035em;
    line-height: 1.12;
    text-transform: uppercase;
}

.royal-about-lifestyle__title::after {
    content: "";

    width: 82px;
    height: 1px;
    margin: 24px 0 0;

    display: block;

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

.royal-about-lifestyle__text {
    max-width: 610px;
    margin-top: 30px;

    color: rgba(var(--royal-navy-rgb), 0.78);

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

.royal-about-lifestyle__text p {
    margin: 0 0 18px;
}

.royal-about-lifestyle__text p:last-child {
    margin-bottom: 0;
}

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

.royal-about-lifestyle__media {
    position: relative;

    min-height: 500px;

    overflow: hidden;

    background: rgba(var(--royal-navy-rgb), 0.04);
    border: 1px solid rgba(var(--royal-gold-rgb), 0.30);

    box-shadow:
        0 28px 76px rgba(var(--royal-navy-rgb), 0.12),
        0 0 0 12px rgba(var(--royal-white-rgb), 0.74);
}

.royal-about-lifestyle__media::before {
    content: "";

    position: absolute;
    inset: 18px;
    z-index: 2;

    border: 1px solid rgba(var(--royal-white-rgb), 0.58);

    pointer-events: none;
}

.royal-about-lifestyle__media::after {
    content: "";

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

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

    pointer-events: none;
}

.royal-about-lifestyle__image {
    width: 100%;
    height: 100%;
    min-height: inherit;

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

    transform: scale(1.01);

    transition:
        transform 900ms ease,
        filter 900ms ease;
}

.royal-about-lifestyle.has-fallback-background .royal-about-lifestyle__image {
    background: rgba(var(--royal-navy-rgb), 0.06);
}

.royal-about-lifestyle__media:hover .royal-about-lifestyle__image {
    transform: scale(1.045);
    filter: saturate(1.04) contrast(1.03);
}

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

@media (max-width: 1024px) {
    .royal-about-lifestyle {
        padding: 84px 0 92px;
    }

    .royal-about-lifestyle__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .royal-about-lifestyle__content {
        max-width: 760px;
        margin-inline: auto;

        text-align: center;
    }

    .royal-about-lifestyle__title,
    .royal-about-lifestyle__text {
        margin-inline: auto;
    }

    .royal-about-lifestyle__title::after {
        margin-inline: auto;
    }

    .royal-about-lifestyle__media {
        min-height: 430px;
    }
}

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

@media (max-width: 767px) {
    .royal-about-lifestyle {
        padding: 66px 0 74px;
    }

    .royal-about-lifestyle__grid {
        gap: 38px;
    }

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

    .royal-about-lifestyle__title {
        max-width: 390px;

        font-size: clamp(29px, 8vw, 38px);
        line-height: 1.14;
        letter-spacing: 0.025em;
    }

    .royal-about-lifestyle__title::after {
        width: 72px;
        margin-top: 22px;
    }

    .royal-about-lifestyle__text {
        margin-top: 26px;

        font-size: 14px;
        line-height: 1.76;
    }

    .royal-about-lifestyle__text p {
        margin-bottom: 17px;
    }

    .royal-about-lifestyle__media {
        min-height: 320px;

        box-shadow:
            0 24px 58px rgba(var(--royal-navy-rgb), 0.12),
            0 0 0 8px rgba(var(--royal-white-rgb), 0.74);
    }

    .royal-about-lifestyle__media::before {
        inset: 14px;
    }
}

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

@media (max-width: 420px) {
    .royal-about-lifestyle__title {
        font-size: 30px;
    }

    .royal-about-lifestyle__media {
        min-height: 280px;
    }
}