/* Load Lucide Icon Font */
@font-face {
    font-family: 'LucideIcons';
    src: url(https://cdn.jsdelivr.net/npm/lucide-static@latest/font/lucide.ttf) format('truetype');
}

/* Style for using Lucide Icons */
.lucide {
    font-family: 'LucideIcons';
    font-size: 1.25rem; /* Default icon size */
    line-height: 1;     /* Ensure proper vertical alignment */
    vertical-align: middle; /* Align icons with text */
}

/* Basic body font */
body {
    font-family: 'Inter', sans-serif;
}

/* Style for active navigation link */
.nav-active {
    font-weight: 700; /* Bold */
    color: #2CA58D; /* Teal Accent */
}

/* Offset scroll target for fixed header */
section {
    scroll-margin-top: 80px; /* Adjust based on header height */
}