/* ==========================================
   L'OPERA ROYAL - HOME FINE DINING COMPONENT
   Premium centered text section
========================================== */

/*
|--------------------------------------------------------------------------
| Image requirement
|--------------------------------------------------------------------------
| No image expected for this component.
|--------------------------------------------------------------------------
*/

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

.royal-home-fine-dining {
    position: relative;
    isolation: isolate;

    width: 100%;

    padding: 78px 0 70px;

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

    overflow: hidden;
}

.royal-home-fine-dining::before {
    content: "";

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

    width: min(760px, 90%);
    height: 1px;

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

    transform: translateX(-50%);
}

.royal-home-fine-dining::after {
    content: "";

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

    width: min(760px, 90%);
    height: 1px;

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

    transform: translateX(-50%);
}

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

.royal-home-fine-dining__content {
    position: relative;
    z-index: 1;

    max-width: 920px;
    margin-inline: auto;

    text-align: center;
}

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

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: var(--royal-gold);

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

.royal-home-fine-dining__title {
    margin: 0;

    color: var(--royal-gold);

    font-family: var(--royal-font-heading);
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.royal-home-fine-dining__title::after {
    content: "";

    width: 118px;
    height: 1px;
    margin: 24px auto 26px;

    display: block;

    background: linear-gradient(
        90deg,
        rgba(172, 142, 91, 0),
        var(--royal-gold),
        rgba(172, 142, 91, 0)
    );
}

.royal-home-fine-dining__text {
    max-width: 850px;
    margin-inline: auto;

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

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

.royal-home-fine-dining__text p {
    margin: 0 auto 14px;
}

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

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

@media (min-width: 1024px) {
    .royal-home-fine-dining {
        padding: 86px 0 78px;
    }

    .royal-home-fine-dining__content {
        max-width: 980px;
    }

    .royal-home-fine-dining__text {
        max-width: 900px;
    }
}

@media (max-width: 767px) {
    .royal-home-fine-dining {
        padding: 58px 0 54px;
    }

    .royal-home-fine-dining__content {
        max-width: 100%;
    }

    .royal-home-fine-dining .royal-kicker {
        font-size: 11px;
        letter-spacing: 0.18em;
    }

    .royal-home-fine-dining__title {
        font-size: clamp(30px, 8.5vw, 42px);
        letter-spacing: 0.045em;
    }

    .royal-home-fine-dining__title::after {
        margin: 20px auto 22px;
    }

    .royal-home-fine-dining__text {
        font-size: 14px;
        line-height: 1.72;
    }
}