/*
Theme Name: BCM
Theme URI: https://bigcitymarketing.net
Author: Big City Marketing
Author URI: https://bigcitymarketing.net
Description: Minimal deployment theme for BCM WordPress sites. No parent theme. No framework.
Version: 1.0.0
Requires at least: 6.4
Requires PHP: 8.2
License: Proprietary
License URI: https://bigcitymarketing.net
Text Domain: bcm
*/

@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(fonts/lato-700.woff2) format('woff2');
}

@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url(fonts/lato-900.woff2) format('woff2');
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
}

.bcm-site-header {
    position: relative;
    z-index: 100;
    background: #ffffff;
}

.bcm-site-header-inner {
    display: flex;
    align-items: flex-end;
    padding: 1rem 2rem 0;
    max-width: 90rem;
    margin: 0 auto;
}

.bcm-site-logo {
    flex-shrink: 0;
    margin-bottom: 1rem;
}

.bcm-site-logo img {
    height: 4rem;
    width: auto;
}

.bcm-primary-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding-bottom: 1rem;
}

.bcm-nav-list {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.bcm-nav-list li {
    position: relative;
}

.bcm-nav-list > li > a {
    color: #1a1a2e;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.03rem;
    padding-bottom: 0.5rem;
    display: block;
}

.bcm-nav-list > li > a:hover {
    color: #e94560;
}

.bcm-nav-list .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    list-style: none;
    min-width: 14rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    padding: 0.5rem 0;
    z-index: 200;
}

.bcm-nav-list li:hover > .sub-menu {
    display: block;
}

.bcm-nav-list .sub-menu a {
    color: #1a1a2e;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
    display: block;
}

.bcm-nav-list .sub-menu a:hover {
    background: #f5f5f8;
    color: #e94560;
}

.bcm-nav-list .sub-menu .sub-menu {
    top: 0;
    left: 100%;
}

.bcm-site-main {
    margin: 0;
    padding: 0;
}

.bcm-front-page-content {
    margin: 0;
    padding: 0;
}

.bcm-site-footer {
    margin: 0;
    padding: 2rem;
    font-size: 1rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}
