@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 MASTER PLAN – BANNER
========================================= */

.rl-masterplan-banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.rl-masterplan-banner__inner {
    max-width: 100%;
    width: 100%;
    height: 600px;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    gap: 24px;
}

.rl-masterplan-banner__logo_inner,
.rl-masterplan-banner__title_inner,
.rl-masterplan-banner__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-masterplan-banner__logo {
    max-width: 25%;
    width: 100%;
}

.rl-masterplan-banner__logo img {
    width: 100%;
    height: auto;
}

/* TITLE */
.rl-masterplan-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;
    text-align: center;
}

/* DESCRIPTION */
.rl-masterplan-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 SITE PLAN
===================================== */

.rl-siteplan__header {
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding-bottom: 48px;
}

.rl-siteplan__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-siteplan__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;
}

.rl-siteplan__image {
    max-width: 100%;
    width: 100%;
}

.rl-siteplan__image img {
    width: 100%;
    height: auto;
    display: block;
}

/* =====================================
   FLOOR PLAN FILTER SECTION
===================================== */
.rl-floorplans__filters {
    max-width: 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
}

.rl-floorplans__filter-item {
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rl-floorplans__filter-item label {
    font-family: 'BOOWIE';
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0.5px;
    text-align: left;
    color: #383838;
    text-transform: uppercase;
    margin: 0;
}

.rl-floorplans__filter-item select {
    padding: 12px;
    border: none;
    border-bottom: 1px solid #383838;
    background: transparent;
    outline: none;

    font-family: 'ITC Avant Garde Gothic', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.5px;
    text-align: left;
    color: #383838;
    text-transform: uppercase;
    margin: 0;
}

.rl-floorplans__image-wrapper {
    width: 100%;
}

.rl-floorplans__image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== CUSTOM SELECT ===== */
.rl-native-select {
    display: none;
}

.rl-custom-select {
    position: relative;
    max-width: 100%;
    width: 100%;
    cursor: pointer;
}

/* DISPLAY */
.rl-select-display {
    font-family: 'ITC Avant Garde Gothic', sans-serif;
    font-size: 18px;
    padding: 12px 0;
    border-bottom: 2px solid #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #383838;
}

/* ARROW */
.rl-select-display:after {
    content: "▾";
    font-size: 14px;
}

/* DROPDOWN */
.rl-select-options {
    position: absolute;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    margin: 0px;
    list-style: none;
    padding: 0;
    display: none;
    z-index: 20;
}

/* OPTION */
.rl-select-options {
    opacity: 0;
    transform: translateY(-10px);
    transition: all .25s ease;
}

.rl-select-options[style*="block"] {
    opacity: 1;
    transform: translateY(0);
}

.rl-select-options li {
    padding: 12px 8px 8px 16px;
    font-family: 'ITC Avant Garde Gothic', sans-serif;
    font-size: 18px;
    line-height: 24px;
    transition: all .25s ease;
    margin: 0;
    color: #383838;
}

/* HOVER */
.rl-select-options li:hover {
    background: #c2a283;
    color: #fff;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1440px) {
    /* ===== RIVIERA MASTER PLAN – BANNER ===== */

    /* ===== MASTER PLAN – SITE PLAN ===== */
}

@media (max-width: 1024px) {

    /* ===== RIVIERA MASTER PLAN – BANNER ===== */
    .rl-masterplan-banner__inner {
        height: 480px;
        gap: 16px;
    }

    .rl-masterplan-banner__title {
        font-size: 40px;
        line-height: 48px;
        letter-spacing: 6.4px;
    }

    .rl-masterplan-banner__desc {
        width: 80%;
    }

    /* ===== MASTER PLAN – SITE PLAN ===== */
    .rl-siteplan__header {
        padding-bottom: 40px;
    }

    .rl-siteplan__title {
        font-size: 32px;
        line-height: 40px;
        letter-spacing: 4.4px;
    }

    .rl-siteplan__desc {
        font-size: 18px;
        line-height: 24px;
        width: 60%;
    }

    .rl-floorplans__filter-item label {
        font-size: 20px;
        line-height: 28px;
    }

    .rl-select-display {
        font-size: 16px;
        padding: 8px 0;
    }

    .rl-select-options li {
        padding: 10px 8px 8px 10px;
        font-size: 15px;
        line-height: 20px;
    }
}

@media (max-width: 768px) {

    /* ===== RIVIERA MASTER PLAN – BANNER ===== */
    .rl-masterplan-banner__inner {
        gap: 8px;
    }

    .rl-masterplan-banner__logo {
        max-width: 30%;
    }

    .rl-masterplan-banner__title {
        font-size: 32px;
        line-height: 40px;
        letter-spacing: 4.4px;
    }

    .rl-masterplan-banner__desc {
        font-size: 18px;
        line-height: 24px;
    }

    /* ===== MASTER PLAN – SITE PLAN ===== */
    .rl-siteplan__header {
        gap: 8px;
        padding-bottom: 20px;
    }

    .rl-siteplan__title {
        font-size: 24px;
        line-height: 32px;
        letter-spacing: 2.4px;
    }

    .rl-siteplan__desc {
        width: 90%;
    }

    .rl-floorplans__filter-item label {
        font-size: 16px;
        line-height: 24px;
    }

    .rl-select-display {
        font-size: 15px;
        padding: 6px 0;
    }

    .rl-select-options li {
        padding: 8px;
        font-size: 14px;
        line-height: 20px;
    }
}

@media (max-width: 600px) {

    /* ===== RIVIERA MASTER PLAN – BANNER ===== */
    .rl-masterplan-banner__inner {
        gap: 0px;
    }

    .rl-masterplan-banner__logo {
        max-width: 40%;
    }

    .rl-masterplan-banner__title {
        font-size: 28px;
        line-height: 36px;
        letter-spacing: 2.4px;
    }

    .rl-masterplan-banner__desc {
        width: 95%;
    }

    /* ===== MASTER PLAN – SITE PLAN ===== */
    .rl-floorplans__filter-item label {
        font-size: 14px;
        line-height: 20px;
    }

    .rl-select-display {
        font-size: 14px;
        padding: 5px 0;
    }
}

@media (max-width: 425px) {

    /* ===== RIVIERA MASTER PLAN – BANNER ===== */
    .rl-masterplan-banner__inner {
        gap: 4px;
    }

    .rl-masterplan-banner__title {
        font-size: 24px;
        line-height: 32px;
        letter-spacing: 1.4px;
    }

    .rl-masterplan-banner__desc {
        font-size: 16px;
    }

    /* ===== MASTER PLAN – SITE PLAN ===== */
    .rl-siteplan__header {
        gap: 0px;
        padding-bottom: 16px;
    }

    .rl-siteplan__title {
        font-size: 20px;
        line-height: 34px;
        letter-spacing: 1.4px;
    }

    .rl-siteplan__desc {
        font-size: 16px;
        line-height: 20px;
        width: 100%;
    }

    .rl-select-options li {
        padding: 5px 8px;
        font-size: 14px;
        line-height: 20px;
    }
}