/*
 Theme Name:   MM Minimal
 Theme URI:    https://matchmarketing.ai
 Description:  GeneratePress child theme - BDI
 Author:       MatchMarketing™
 Template:     generatepress
 Version:      1.0
*/

/* =========================
   TOKENS
   ========================= */
:root {
    --mm-brand:           #c9a84c;   /* gold */
    --mm-brand-2:         #e8c96a;   /* gold hover */

    --mm-ink:             #dddddd;
    --mm-muted:           #999999;

    --mm-chrome:          #1a1a1a;
    --mm-surface:         #1f1f1f;
    --mm-line:            #2e2e2e;
    --mm-line-strong:     #3a3a3a;

    --mm-focus:           #c9a84c;

    /* GeneratePress token mapping */
    --accent:     var(--mm-brand);
    --contrast:   var(--mm-ink);
    --contrast-2: var(--mm-muted);
    --contrast-3: #666666;
    --base:       var(--mm-chrome);
    --base-2:     #111111;
    --base-3:     #181818;
}

/* =========================
   BASE
   ========================= */
html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scrollbar-gutter: stable;
}

body {
    color: var(--mm-ink);
    background: #111111;
    line-height: 1.65;
}

/* =========================
   TYPOGRAPHY
   ========================= */
h1, h2, h3, h4, h5, h6,
.site-title,
.main-title {
    color: var(--mm-brand);
    letter-spacing: -0.01em;
}

p, li {
    color: var(--mm-ink);
}

small,
.has-small-font-size {
    color: var(--mm-muted);
}

/* =========================
   LINKS
   ========================= */
a {
    color: var(--mm-brand);
    text-decoration: none;
    transition: color 160ms ease;
}

a:hover,
a:focus {
    color: var(--mm-brand-2);
    text-decoration: underline;
}

:focus-visible {
    outline: 2px solid var(--mm-focus);
    outline-offset: 2px;
}

/* =========================
   HEADER
   ========================= */
.site-header {
    background: var(--mm-chrome);
    border-bottom: 2px solid var(--mm-brand);
}

.main-title a {
    color: var(--mm-brand);
    text-decoration: none;
}

/* =========================
   NAVIGATION
   ========================= */
.main-navigation,
.main-navigation ul ul {
    background: var(--mm-chrome);
    box-shadow: none;
}

.main-navigation .main-nav ul li > a,
.main-navigation .menu-bar-items {
    color: var(--mm-ink);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    font-size: .85em;
}

.main-navigation .main-nav ul li:hover > a,
.main-navigation .main-nav ul li:focus-within > a,
.main-navigation .main-nav ul li.current-menu-item > a,
.main-navigation .main-nav ul li[class*="current-menu-"] > a {
    color: var(--mm-brand);
}

.main-navigation .menu-toggle {
    color: var(--mm-brand);
    background: transparent;
    border: 0;
}

.main-navigation ul ul {
    background: var(--mm-surface);
    border: 1px solid var(--mm-line);
}

/* =========================
   CONTENT
   ========================= */
.one-container .site-content {
    padding: 28px;
}

.home.one-container .site-content {
    padding: 0 28px 28px;
}

/* =========================
   TABLES (service list)
   ========================= */
.entry-content table,
.page-content table {
    background: var(--mm-surface);
    width: 100%;
}

.entry-content table td,
.page-content table td {
    border-color: var(--mm-line);
    color: var(--mm-ink);
    vertical-align: middle;
    padding: 18px;
}

.entry-content table td a,
.page-content table td a {
    color: var(--mm-brand);
    font-size: 1.1em;
    font-weight: 600;
}

/* =========================
   FOOTER
   ========================= */
.site-footer,
.footer-widgets,
.site-info {
    background: var(--mm-chrome);
    color: var(--mm-muted);
    border-top: 2px solid var(--mm-brand);
}

.site-info a,
.footer-widgets a {
    color: var(--mm-brand);
}

.site-info a:hover,
.footer-widgets a:hover {
    color: var(--mm-brand-2);
}

/* =========================
   COMMENTS - hidden
   ========================= */
.comments-area {
    display: none;
}