/* --- Global Site Styles for SDAA Website --- */

:root {
  /* Core Brand Colors */
  --nfaa-red: #C63527;
  --nfaa-navy: #00263E;
  --nfaa-yellow: #F2A900;
  
  /* Secondary & Accent Colors */
  --nfaa-cyan-blue: #05C3DD;
  --nfaa-dark-green: #00594C;
  --nfaa-grey: #D7D2CB;
  
  /* Modern UI Colors */
  --bg-color: #F8FAFC; /* Slate-50 */
  --card-bg: #FFFFFF;
  --text-primary: #0F172A; /* Slate-900 */
  --text-secondary: #475569; /* Slate-600 */
  
  --header-height: 88px;
}

/* Base Setup */
body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.font-primary {
    font-family: 'Roboto Condensed', sans-serif;
}
.font-secondary {
    font-family: 'Roboto', sans-serif;
}

/* --- Animations & Micro-interactions --- */
.hover-lift {
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.hover-lift:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Glassmorphism Utilities --- */
.glass-panel {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* --- Form Styles Overrides --- */
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--nfaa-cyan-blue);
    box-shadow: 0 0 0 3px rgba(5, 195, 221, 0.1);
}

/* --- Mobile Menu --- */
/* (Kept existing logic but updated colors) */
.mobile-menu {
    position: fixed;
    top: 80px; /* Approximate header height */
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--nfaa-navy);
    opacity: 0.98;
    display: none; 
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 40;
}
.mobile-menu.active {
    display: flex;
}
