/*
Theme Name: Community Directory Theme
Theme URI: https://example.com
Author: Your Name
Description: Professional community family directory theme
Version: 1.0.0
Text Domain: community-directory-theme
*/

:root {
    --primary: #2563eb;
    --secondary: #7c3aed;
    --dark: #1e293b;
    --light: #f8fafc;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--light);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 1.5rem 0;
}

.site-main {
    padding: 3rem 0;
    min-height: 60vh;
}

.site-footer {
    background: var(--dark);
    color: white;
    padding: 2rem 0;
    text-align: center;
}
