/* Troop 9546 v1 public site theme — Scout blue & gold */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Playfair+Display:wght@700&display=swap');

:root {
    --scout-blue: #1e3a8a;
    --scout-navy: #002855;
    --scout-gold: #d97706;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
}

.section-header {
    font-family: 'Playfair Display', Georgia, serif;
}

.hero-bg {
    background: linear-gradient(rgba(0, 40, 85, 0.88), rgba(0, 40, 85, 0.78)), url('https://picsum.photos/id/1016/2000/1200');
    background-size: cover;
    background-position: center;
}

.nav-link {
    position: relative;
    transition: color 0.2s;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--scout-navy);
    transition: width 0.2s ease;
}

.nav-link:hover:after {
    width: 100%;
}

.scout-gold {
    color: var(--scout-gold);
}

.troop-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.troop-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.meeting-day {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
}

.event-card {
    transition: all 0.2s ease;
}

.event-card:hover {
    border-color: var(--scout-blue);
}

.nav-active {
    color: var(--scout-blue);
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero-bg {
        height: 520px;
    }
}