html {
    scroll-behavior: smooth;
}

:root {
    --bmc-black: #0f0f0f;
    --bmc-dark: #1c1c1c;
    --bmc-grey: #f5f5f5;
    --bmc-mid-grey: #cccccc;

    --bmc-gold: #c6a25a;
    --bmc-gold-dark: #a8843f;
    --bmc-gold-light: #e0c27a;

    --bmc-blue-accent: #2f5f8f; /* from second image card */

    --bmc-text: #333333;
    --bmc-white: #ffffff;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: var(--bmc-text);
}

/* Header */
.bmc-header {
    background: var(--bmc-black);
    color: white;
    padding: 15px 0;
}

.container {
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}

.nav a:hover {
    color: var(--bmc-gold);
}

.btn-gold {
    background: var(--bmc-gold);
    color: white;
    padding: 10px 18px;
    text-decoration: none;
    font-weight: bold;
}

.btn-gold:hover {
    background: var(--bmc-gold-dark);
}

/* Footer */
.bmc-footer {
    background: var(--bmc-dark);
    color: white;
    padding: 40px 0;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
}

.footer-grid h4 {
    color: var(--bmc-gold);
}

.footer-bottom {
    margin-top: 20px;
    text-align: center;
}