/*
Theme Name: District Neuro Rehabilitation
Theme URI: https://districtneurorehab.com
Author: District Neuro Rehab
Author URI: https://districtneurorehab.com
Description: Custom theme for District Neuro Rehabilitation - Comprehensive neurological care
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: district-neuro
*/

:root {
    --navy: #0a1628;
    --navy-light: #142238;
    --gold: #c9a962;
    --gold-light: #e4d4a8;
    --cream: #faf8f5;
    --white: #ffffff;
    --text-muted: #6b7a8f;
    --gradient-dark: linear-gradient(135deg, #0a1628 0%, #1a2d4a 100%);
    --gradient-gold: linear-gradient(135deg, #c9a962 0%, #e4d4a8 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--cream);
    color: var(--navy);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
}

/* Utility */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* All other CSS will be in the header.php */
