/*
Theme Name: Mindful Hitting Editable
Theme URI: https://mindfulhitting.com
Author: Mindful Hitting
Author URI: https://mindfulhitting.com
Description: Custom theme with editable WordPress pages
Version: 2.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mindfulhitting
*/

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

:root {
    --bg-primary: #0a0c10;
    --bg-secondary: #14171e;
    --bg-tertiary: #1a1e28;
    --accent: #d4a574;
    --accent-light: #e8c9a0;
    --text-primary: #ffffff;
    --text-secondary: #d8d8d8;
    --text-muted: #999999;
    --border: rgba(212, 165, 116, 0.1);
}

body {
    font-family: 'Alegreya Sans', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    font-weight: 400;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 20% 30%, rgba(212, 165, 116, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 70%, rgba(212, 165, 116, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    background: rgba(10, 12, 16, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: 'Crimson Pro', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
}

.logo-text .highlight {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent);
}

/* Page Content */
.page-content {
    min-height: 100vh;
    padding: 10rem 5% 5rem;
    position: relative;
    z-index: 1;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.content-wrapper h1 {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--accent);  /* CHANGED: gold color */
}

.content-wrapper h2 {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    margin: 3rem 0 1.5rem;
    color: var(--text-primary);
}

.content-wrapper h3 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.75rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.content-wrapper p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.content-wrapper a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.content-wrapper a:hover {
    color: var(--accent-light);
}

.content-wrapper ul,
.content-wrapper ol {
    margin: 1.5rem 0 1.5rem 2rem;
    color: var(--text-secondary);
}

.content-wrapper li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

footer {
    padding: 4rem 5% 3rem;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-content a {
    color: var(--accent);
    text-decoration: none;
}

@media (max-width: 968px) {
    nav { padding: 1.25rem 4%; }
    .logo-text { font-size: 1.35rem; }
    .nav-links { display: none; }
    .page-content { padding: 8rem 4% 4rem; }
}

html { scroll-behavior: smooth; }

/* Site-wide contact bar */
.site-contact-bar {
    border-top: 1px solid var(--border);
    padding: 3rem 5%;
    position: relative;
    z-index: 1;
}
.site-contact-bar__inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.site-contact-bar__email h3 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}
.site-contact-bar__email p {
    margin: 0;
}
.site-contact-bar__email a {
    color: var(--accent);
    text-decoration: none;
    font-size: 1rem;
}
.site-contact-bar__email a:hover {
    color: var(--accent-light);
}
.site-contact-bar__logo img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}
@media (max-width: 968px) {
    .site-contact-bar__inner {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}
