:root {
    --primary-blue: #0c2340;
    --conservative-blue: #002395;
    --accent-red: #d71920;
    --accent-light-blue: #64a0ce;
    --bg-light: #f8f9fa;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(12, 35, 64, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.logo {
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, #fff, var(--accent-light-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav a {
    color: rgba(255,255,255,0.8);
    margin-left: 2rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.nav a:hover {
    color: var(--text-light);
    border-bottom: 2px solid var(--accent-red);
}

/* Hero */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('assets/kitchener_hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-light);
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(12,35,64,0.8) 0%, rgba(0,35,149,0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    font-weight: 300;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
    background: var(--accent-red);
    color: white;
    border: 2px solid var(--accent-red);
    margin-right: 1rem;
}

.btn-primary:hover {
    background: #b5151b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(215, 25, 32, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.2);
}

.hero-cta {
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

/* Sections */
.section {
    padding: 6rem 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.divider {
    width: 80px;
    height: 4px;
    background: var(--accent-red);
    margin: 0 auto;
    border-radius: 2px;
}

/* Cards */
.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.vision-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid var(--conservative-blue);
}

.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.vision-card .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.vision-card h3 {
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif; /* Keep headers clean here */
    color: var(--primary-blue);
}

/* Inspiration Section */
.inspiration-section {
    background: var(--primary-blue);
    color: white;
}

.inspiration-section h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.inspiration-section strong {
    color: var(--accent-light-blue);
}

.split-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.text-content {
    flex: 1;
}

.image-content {
    flex: 1;
    height: 400px;
}

.accent-block {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--conservative-blue), var(--accent-red));
    border-radius: 20px;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: #081628;
    color: #8892b0;
    padding: 4rem 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-col h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a:hover {
    color: var(--accent-light-blue);
}

.small {
    font-size: 0.8rem;
    opacity: 0.6;
    margin-top: 1rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .split-layout {
        flex-direction: column;
    }
    
    .image-content {
        width: 100%;
        height: 200px;
    }
}
