/*
Theme Name: CL Theme
Theme URI: https://caleblesa.com
Author: Caleb Lesa
Author URI: https://caleblesa.com
Description: Custom theme for caleblesa.com — personal brand hub for Caleb Lesa, sales coach and founder of the Neuro-Linguistic OS.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: cl-theme
*/

:root {
    --bg-primary: #0D0B08;
    --bg-secondary: #13110E;
    --bg-card: #1A1714;
    --gold: #C9A84C;
    --gold-dim: rgba(201, 168, 76, 0.12);
    --gold-faint: rgba(201, 168, 76, 0.04);
    --text-primary: #E8E4DC;
    --text-secondary: #A89880;
    --text-muted: #6A5A45;
    --border: rgba(201, 168, 76, 0.15);
    --font-headline: 'Barlow Condensed', sans-serif;
    --font-body: 'Inter', sans-serif;
    --max-width: 1200px;
    --section-padding: 100px 0;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--gold);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

a:hover {
    opacity: 0.8;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headline);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.05;
    color: var(--text-primary);
}

h1 { font-size: clamp(3rem, 7vw, 6rem); }
h2 { font-size: clamp(2.2rem, 5vw, 4rem); }
h3 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

p {
    color: var(--text-secondary);
    margin-bottom: 1.2em;
}

p:last-child {
    margin-bottom: 0;
}

/* Gold label / eyebrow */
.label {
    display: inline-block;
    font-family: var(--font-headline);
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    font-family: var(--font-headline);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 2px;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--gold);
    color: #0D0B08;
}

.btn-primary:hover {
    opacity: 0.9;
    color: #0D0B08;
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    opacity: 1;
}

/* Section spacing */
.section {
    padding: var(--section-padding);
}

.section-alt {
    background-color: var(--bg-secondary);
}

/* Divider */
.gold-line {
    width: 48px;
    height: 2px;
    background-color: var(--gold);
    margin-bottom: 2rem;
}

/* Cards */
.card {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: 2px;
}

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
