:root {
    /* Branding Colors */
    --club-green: #2E7D32;  /* A deep, natural forest green */
    --club-green-dark: #1B5E20;
    --honey-yellow: #FFC107; /* Bright beeswax color */
    --honey-orange: #FF8F00;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    background-color: #f9fdf9; /* Very faint green tint background */
}

h1, h2, h3, h4, h5, .font-serif {
    font-family: 'Merriweather', serif;
}

/* Navbar Customization */
.bg-club-green {
    background-color: var(--club-green) !important;
}

.nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #fff !important;
    text-shadow: 0 0 5px rgba(255,255,255,0.3);
}

/* Honey Button (for Swarms) */
.btn-honey {
    background-color: var(--honey-yellow);
    border: none;
    transition: all 0.2s ease;
}

.btn-honey:hover {
    background-color: var(--honey-orange);
    transform: translateY(-1px);
}

/* Footer Links */
.hover-white:hover {
    color: #fff !important;
    text-decoration: underline !important;
}

/* Card Styling (Standardizing across apps) */
.card {
    border: none;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

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