:root {
    --liberal-red: #ed2e38;
    --liberal-dark: #1a1a1a;
}

body {
    font-family: 'Arial', sans-serif;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-section {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('assets/sault-ste-marie.jpg') center/cover;
    padding-top: 76px;
}

.btn-primary {
    background-color: var(--liberal-red);
    border-color: var(--liberal-red);
}

.btn-primary:hover {
    background-color: #d41920;
    border-color: #d41920;
}

.card {
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.social-links a {
    color: var(--liberal-red);
    font-size: 1.5rem;
    text-decoration: none;
}

.social-links a:hover {
    color: #d41920;
}

#volunteer-form {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
} 