/*
Theme Name: CCR Hybrid Performance
Description: High-performance theme with selective Divi integration for Christian Credit Restoration
Version: 1.0.0
Author: Republic of Company
Template: Divi
License: GPL v2 or later
*/

/* CSS Variables - Piper Sandler Inspired Design System */
:root {
    --primary-grey: #444444;
    --secondary-grey: #666666;
    --light-grey: #f8f8f8;
    --indigo: #4B0082;
    --tangerine: #FF8C00;
    --goldenrod: #DAA520;
    --white: #ffffff;
    --eggshell: #F0EAD6;
}

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

/* Typography */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--primary-grey);
    background-color: var(--white);
}

/* Header Styles */
.site-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    height: 80px;
}

.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-logo h1 {
    color: var(--primary-grey);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.site-logo .highlight {
    color: var(--tangerine);
}

.btn-primary {
    background: linear-gradient(135deg, var(--tangerine) 0%, var(--goldenrod) 100%);
    color: var(--white);
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
    color: var(--white);
}

.site-footer {
    background: var(--primary-grey);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}
