@font-face {
    font-family: 'ITC Avant Garde Gothic Book Condensed';
    src: url('../fonts/ITC-Avant-Garde-Gothic/ITC-Avant-Garde-Gothic-Book-Condensed.otf') format('opentype');
    font-display: swap;
}

@font-face {
    font-family: 'BOOWIE';
    src: url('../fonts/Boowie/BOOWIE.woff2') format('woff2'),
        url('../fonts/Boowie/BOOWIE.woff') format('woff'),
        url('../fonts/Boowie/BOOWIE.ttf') format('truetype');
    font-display: swap;
}

/* =========================================
   RIVIERA LOCATION – BANNER
========================================= */

/* INNER WRAPPER */
.rl-location-banner__inner {
    max-width: 100%;
    width: 100%;
    height: 600px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

/* INNER BLOCKS */
.rl-location__logo_inner,
.rl-location__title_inner,
.rl-location__desc_inner {
    max-width: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
}

/* LOGO */
.rl-location-banner__logo {
    max-width: 25%;
    width: 100%;
}

.rl-location-banner__logo img {
    max-width: 100%;
    width: 100%;
    height: auto;
}

/* TITLE */
.rl-location-banner__title {
    font-family: 'BOOWIE';
    font-size: 48px;
    font-weight: 400;
    line-height: 56px;
    letter-spacing: 8.4px;
    color: var(--rl-gold);
    text-transform: uppercase;
    margin: 0;
}

/* DESCRIPTION */
.rl-location-banner__desc {
    font-family: 'ITC Avant Garde Gothic', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: #FFFFFF;
    width: 50%;
    text-align: center;
    margin: 0;
}

/* =========================================
   RIVIERA LOCATION – LANDMARK SECTION
========================================= */

/* HEADER */
.rl-location-landmark__header,
.rl-location-experience__header,
.rl-location-experience__grid,
.rl-location-experience__map {
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 48px;
}

.rl-location-experience__map {
    padding: 0 !important;
}

.rl-location-landmark__title,
.rl-location-experience__title {
    font-family: 'BOOWIE';
    font-size: 40px;
    font-weight: 400;
    line-height: 48px;
    letter-spacing: 8.4px;
    text-align: center;
    color: var(--rl-gold);
    text-transform: uppercase;
    margin: 0;
}

.rl-location-landmark__desc,
.rl-location-experience__desc,
.rl-location-experience__item-desc {
    font-family: 'ITC Avant Garde Gothic', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: #333333;
    width: 50%;
    text-align: center;
    margin: 0;
}

/* MAP WRAPPER */
.rl-location-landmark__map-wrapper {
    max-width: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
    cursor: grab;
}

/* MAP */
.rl-location-landmark__map {
    overflow: hidden;
}

.rl-location-landmark__img {
    width: 100%;
    transition: transform 0.3s ease;
    transform-origin: center center;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

/* ZOOM BUTTONS */
.rl-location-landmark__zoom {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.rl-zoom-btn {
    width: 32px;
    height: 32px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    background-color: #FFF;
    color: #000;
    border: none;
    border-radius: 50%;
    padding: 20px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 99;
}

.rl-zoom-btn:hover {
    background: #C2A283;
    color: #fff;
}

/* =========================================
   RIVIERA LOCATION – EXPERIENCE SECTION
========================================= */

/* ITEM */
.rl-location-experience__item {
    max-width: 24%;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.rl-location-experience__icon {
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.rl-location-experience__icon img {
    max-width: 80px;
    width: 100%;
    height: auto;
}

.rl-location-experience__item-title {
    font-family: 'BOOWIE';
    font-size: 32px;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: 4.4px;
    text-align: center;
    color: var(--rl-gold);
    text-transform: uppercase;
    margin: 0;
}

.rl-location-experience__item-desc {
    max-width: 100% !important;
    width: 100% !important;
}

/* GOOGLE MAP */
.rl-location-experience__map iframe {
    max-width: 100% !important;
    width: 100% !important;
    height: 600px !important;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1440px) {

    /* ===== LOCATION – LANDMARK SECTION ===== */
    .rl-location-landmark__title,
    .rl-location-experience__title {
        font-size: 36px;
        line-height: 48px;
        letter-spacing: 6.4px;
    }

    .rl-location-experience__item {
            gap: 8px;
    }

    .rl-location-experience__icon img {
    max-width: 70px;
    width: 100%;
    height: auto;
}

.rl-location-experience__item-title {
    font-size: 28px;
    line-height: 36px;
    letter-spacing: 4.4px;
}
}

@media (max-width: 1024px) {

    /* ===== LOCATION – BANNER ===== */
    .rl-location-banner__inner {
        height: 480px;
        gap: 16px;
    }

    .rl-location-banner__title {
        font-size: 40px;
        line-height: 48px;
        letter-spacing: 6.4px;
    }

    /* ===== LOCATION – LANDMARK SECTION ===== */
    .rl-location-landmark__header,
    .rl-location-experience__header,
    .rl-location-experience__grid,
    .rl-location-experience__map {
        gap: 8px;
        padding-bottom: 32px;
    }

    .rl-location-landmark__title,
    .rl-location-experience__title {
        font-size: 32px;
        line-height: 40px;
        letter-spacing: 4.4px;
    }

    .rl-location-landmark__desc,
    .rl-location-experience__desc,
    .rl-location-experience__item-desc {
        font-size: 18px;
        line-height: 24px;
        width: 75%;
    }

    .rl-location-experience__item-title {
        font-size: 24px;
        line-height: 32px;
        letter-spacing: 2.4px;
    }

    .rl-location-experience__map iframe {
        height: 400px !important;
    }
}

@media (max-width: 768px) {

    /* ===== LOCATION – BANNER ===== */
    .rl-location-banner__inner {
        gap: 8px;
    }

    .rl-location-banner__title {
        font-size: 32px;
        line-height: 40px;
        letter-spacing: 4.4px;
    }

    /* ===== LOCATION – LANDMARK SECTION ===== */
    .rl-location-landmark__title,
    .rl-location-experience__title {
        font-size: 28px;
        line-height: 36px;
        letter-spacing: 2.4px;
        text-align: center;
    }

    .rl-location-landmark__desc,
    .rl-location-experience__desc,
    .rl-location-experience__item-desc {
        font-size: 16px;
        line-height: 24px;
        width: 80%;
    }

    .rl-location-experience__grid {
        gap: 40px;
    }

    .rl-location-experience__item {
        gap: 5px;
        max-width: 40%;
    }

    .rl-location-experience__icon img {
        max-width: 48px;
    }

        .rl-location-experience__item-title {
        font-size: 20px;
        line-height: 24px;
        letter-spacing: 1.2px;
    }

        .rl-location-experience__map iframe {
        height: 340px !important;
    }
}

@media (max-width: 600px) {

    /* ===== LOCATION – LANDMARK SECTION ===== */
    .rl-location-landmark__header,
    .rl-location-experience__header,
    .rl-location-experience__grid,
    .rl-location-experience__map {
        gap: 2px;
        padding-bottom: 24px;
    }

    .rl-location-landmark__title,
    .rl-location-experience__title {
        font-size: 24px;
        line-height: 32px;
        letter-spacing: 1.4px;
    }

        .rl-location-experience__grid {
        gap: 28px;
    }

    .rl-location-experience__item { 
        max-width: 45%;
    }
}

@media (max-width: 425px) {

    /* ===== LOCATION – BANNER ===== */
    .rl-location-banner__inner {
        gap: 4px;
    }

    .rl-location-banner__title {
        font-size: 24px;
        line-height: 32px;
        letter-spacing: 2.4px;
    }

    /* ===== LOCATION – LANDMARK SECTION ===== */
    .rl-location-landmark__header,
    .rl-location-experience__header,
    .rl-location-experience__grid,
    .rl-location-experience__map {
        padding-bottom: 20px;
    }

    .rl-location-landmark__title,
    .rl-location-experience__title {
        font-size: 20px;
        line-height: 28px;
        letter-spacing: 0.8px;
    }

    .rl-location-landmark__desc,
    .rl-location-experience__desc,
    .rl-location-experience__item-desc {
        font-size: 15px;
        line-height: 20px;
        width: 95%;
    }

        .rl-location-experience__grid {
        gap: 16px;
    }

    .rl-location-experience__icon img {
        max-width: 40px;
    }

        .rl-location-experience__item-title {
        font-size: 18px;
        line-height: 24px;
        letter-spacing: 0.7px;
    }

    .rl-location-experience__map iframe {
        height: 280px !important;
    }
}