/* --- CRAWFORD COACHING GLOBAL BLUEPRINT --- */
/* VERSION: v0.1.1 */

:root {
    /* EXACT PALETTE FROM DOCX */
    --color-navy: #0B1220;
    --color-slate: #141A24;
    --color-charcoal: #1D2733;
    --color-gold: #B08D57;
    --color-gold-light: #C9A56B;
    --color-text-light: #E6E8EB;
    --color-text-muted: #A9B0BA;

    /* TYPOGRAPHY */
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;

    /* SPACING & GRID */
    --section-spacing: 120px;
    --container-width: 1200px;
}

/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-navy);
    color: var(--color-text-light);
    font-family: var(--font-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased; /* Critical for "premium" font rendering */
}

/* --- TYPOGRAPHY HIERARCHY --- */
h1, h2, h3, h4 {
    font-weight: 700;
    letter-spacing: -0.02em; /* Tight tracking for "elite" feel */
    line-height: 1.1;
    color: #fff;
}

h1 {
    font-size: clamp(48px, 5vw, 72px); /* Responsive scaling */
    text-transform: uppercase;
}

h2 {
    font-size: clamp(32px, 3vw, 48px);
    margin-bottom: 24px;
}

.gold-accent {
    color: var(--color-gold);
}

.text-muted {
    color: var(--color-text-muted);
}

p.lead {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin-bottom: 2rem;
}

/* --- LAYOUT UTILITIES --- */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

section {
    padding: var(--section-spacing) 0;
}

.bg-navy {
    background-color: var(--color-navy);
}

.bg-slate {
    background-color: var(--color-slate);
}

/* --- COMPONENTS --- */

/* ELITE BUTTONS */
.btn {
    display: inline-block;
    padding: 16px 32px;
    background-color: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: var(--color-gold);
    color: var(--color-navy);
    background-image: linear-gradient(45deg, var(--color-gold), var(--color-gold-light)); /* Subtle gradient on hover for luxury feel */
    border-color: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(176, 141, 87, 0.5);
}

/* NAVBAR (Revised for v0.1.1) */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%; /* Slightly less vertical padding to accommodate bigger logo without taking too much space */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    /* MORE TRANSPARENT BACKGROUND SO ART SHOWS THROUGH */
    background: linear-gradient(to bottom, rgba(11, 18, 32, 0.9) 0%, rgba(11, 18, 32, 0.4) 100%);
    backdrop-filter: blur(8px); /* Slightly less blur for clarity */
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 80px; /* Fixed height container for logo */
}

.logo img {
    height: 100%; /* Will fill the 80px container */
    width: auto;   /* Maintain aspect ratio */
    object-fit: contain;
}

.nav-links a {
    color: var(--color-text-light); /* Brighter text for better contrast against art */
    text-decoration: none;
    margin-left: 32px;
    font-size: 13px; /* Slightly smaller for more "premium" look */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px; /* Wider tracking */
    transition: color 0.3s ease;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3); /* Subtle shadow for readability over art */
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-gold);
}

/* --- ANIMATION UTILITIES --- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- HERO BASE STYLE --- */
#hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    /* INCREASED TOP PADDING so content doesn't hide behind bigger navbar */
    padding-top: 140px;
    position: relative;
    overflow: hidden;
    background-color: var(--color-navy);
}

/* FOOTER COMPLIANCE */
footer {
    background: var(--color-charcoal);
    padding: 80px 0 40px;
    text-align: center;
    font-size: 14px;
    color: var(--color-text-muted);
}

.compliance {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 12px;
    opacity: 0.6;
}