/*
Theme Name: NAML WordPress Theme
Theme URI: https://your-site.com
Description: Your site description. Go to Appearance > Editor to modify this file.
Version: 0.1.0
Author: Justin Ryon
Author URI: https://your-site.com
Template: Total
*/

@import url('fonts.css');

#top-bar {
    overflow: visible;
}

body *{
    /*font-family: Author, sans-serif;*/
}
/* ── Region Switcher ──────────────────────────────────────────────────────── */

.region-switcher {
    color: var(--wpex-palette-17-color);
    border: none;
    display: inline-block;
    padding: 0 15px;
    position: relative;
}

#region-switcher-btn{
    background: var(--wpex-palette-16-color);
}
#region-switcher-btn:hover {
    background: #e1b216;
    color: #07072D;
}


.region-switcher button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    padding: 4px 8px;
    background: #fff;
    border: none;
    font-family: Author, sans-serif;
    font-size: 15px;
    font-weight: 600;
    /*color: #6699CC;*/
    border-radius: 99px;
    cursor: pointer;

    transition: background-color 0.2s;
}
/*.region-switcher button:hover {
    background: #e1b216;
    color: #07072D;
}*/
.region-switcher button svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
.region-switcher-arrow {
    width: 16px;
    height: 16px;
}

#region-switcher-dropdown {
    position: absolute;
    right: 0;
    margin-top: 8px;
    width: 192px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(7,7,45,0.12);
}
#region-switcher-dropdown.hidden { display: none; }

/*#region-switcher-dropdown button{
    background: #fff;
}
*/
#region-switcher-dropdown ul {
    list-style: none;
    margin: 0;
    padding: 8px 0;
}
#region-switcher-dropdown ul li { margin: 0; }

.region-option {
    display: block;
    width: 100%;
    text-align: left;
    padding: 8px 16px;
    background: none;
    border: none;
    font-size: 16px !important;
    color: #07072D;
    cursor: pointer;
}
.region-option:hover { background: #D3E5EF; }

/* ── Opportunity Filter Shortcode ─────────────────────────────────────────── */

.naml-filter-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

/* ── Misc ─────────────────────────────────────────────────────────────────── */

.theme-button {
    margin: 24px 0;
}
