@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Playfair+Display:wght@700;900&display=swap');

/* =================================================================
   THEME CONFIGURATION - Only edit these variables
   ================================================================= */
:root {
    /* Brand Colors - These 5 variables define the entire theme */
    --brand-primary: #475e91;    /* Lindsay's blue - Main brand color */
    --brand-dark: #2a3a5a;       /* Darker blue - Headers, dark sections */
    --brand-light: #f5f7fb;      /* Light blue-grey - Light backgrounds */
    --brand-accent: #ffd21f;     /* Bright Lemon - CTAs, highlights */
    --brand-neutral: #6b7280;    /* Grey - Body text, secondary elements */
    
    /* Derived Colors - DO NOT EDIT DIRECTLY */
    --gradient-primary: linear-gradient(135deg, var(--brand-primary), var(--brand-dark));
    --gradient-accent: linear-gradient(135deg, var(--brand-accent), var(--brand-primary));
    --gradient-overlay: linear-gradient(135deg, rgba(71, 94, 145, 0.95) 0%, rgba(42, 58, 90, 0.9) 100%);
    --text-on-primary: white;
    --text-on-accent: var(--brand-dark);
    --hero-padding-top: 120px;
    --hero-padding-top-mobile: 80px;
    
    /* System Colors - Rarely need editing */
    --white: #FFFFFF;
    --black: #000000;
    --success: #10B981;
    --error: #EF4444;
    --warning: #F59E0B;
    --info: #3B82F6;
    
    /* Overlay colors derived from brand colors */
    --overlay-dark: rgba(71, 94, 145, 0.85);
    --overlay-gradient: linear-gradient(to right, rgba(71,94,145,0.9), rgba(71,94,145,0.7), rgba(71,94,145,0.4));
    
    /* Typography Scale - Consistent across all themes */
    --font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Playfair Display', serif;
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    --text-7xl: 4.5rem;
    
    /* Spacing Scale - Consistent across all themes */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;
}

/* =================================================================
   UNIVERSAL CMS CLASSES - DO NOT EDIT
   These classes are used by Faster CMS and must remain consistent
   ================================================================= */

/* Reset & Base Styles */
body {
    font-family: var(--font-family);
    line-height: 1.5;
    margin: 0;
    padding: 0;
    color: var(--brand-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.02em;
}

* {
    box-sizing: border-box;
}

/* Background Colors */
.cms-bg-primary {
    background-color: var(--brand-primary) !important;
}
.cms-bg-dark {
    background-color: var(--brand-dark) !important;
}
.cms-bg-light {
    background-color: var(--brand-light) !important;
}
.cms-bg-accent {
    background-color: var(--brand-accent) !important;
}
.cms-bg-neutral {
    background-color: var(--brand-neutral) !important;
}
.cms-bg-white {
    background-color: var(--white) !important;
}

/* Text Colors */
.cms-text-primary {
    color: var(--brand-primary) !important;
}
.cms-text-dark {
    color: var(--brand-dark) !important;
}
.cms-text-light {
    color: var(--brand-light) !important;
}
.cms-text-accent {
    color: var(--brand-accent) !important;
}
.cms-text-neutral {
    color: var(--brand-neutral) !important;
}
.cms-text-white {
    color: var(--white) !important;
}

/* Border Colors */
.cms-border-primary {
    border-color: var(--brand-primary) !important;
}
.cms-border-dark {
    border-color: var(--brand-dark) !important;
}
.cms-border-light {
    border-color: var(--brand-light) !important;
}
.cms-border-accent {
    border-color: var(--brand-accent) !important;
}
.cms-border-neutral {
    border-color: var(--brand-neutral) !important;
}

/* Button Component */
.cms-btn {
    display: inline-block;
    padding: var(--space-3) var(--space-6);
    font-weight: 600;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: var(--text-base);
}

.cms-btn-primary {
    background-color: var(--brand-primary);
    color: var(--white);
}

.cms-btn-accent {
    background-color: var(--brand-accent);
    color: var(--brand-dark);
}

/* Required classes for Faster CMS */
.site-logo {
    max-height: 50px;
    width: auto;
}

.site-navigation-1 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-secondary-navigation-1 {
    list-style: none;
    padding: 0;
    margin: 0;
}