/**
 * Scroll Offset Fix for Anchor Links
 * Prevents content from hiding behind the fixed header
 */

/* Add scroll margin to all sections with IDs used as anchors */
section[id] {
    scroll-margin-top: 100px; /* Offset for fixed header height */
}

/* Smooth scrolling for better UX */
html {
    scroll-behavior: smooth;
}

/* Specific sections that need offset */
#newsletter,
#briefings,
#defense,
#approach,
#home {
    scroll-margin-top: 120px; /* Extra space for visual comfort */
}
