@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* Base Variables */
:root {
  --brand-navy: #051b38;
  --brand-orange: #fba919;
  --brand-light: #f3f4f6;
  --brand-border: #e2e8f0;
}

body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* ── NAVBAR STYLES ── */
#navbar {
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
}

#navbar.nav-sticky {
    box-shadow: 0 4px 20px -5px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.98);
    padding-top: 0;
    padding-bottom: 0;
}

/* Logo Separator Line */
.logo-separator {
    height: 24px;
    width: 1px;
    background-color: var(--brand-border);
    margin: 0 12px;
    display: inline-block;
}

/* Navigation Links */
.nav-link {
    position: relative;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    color: var(--brand-navy);
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--brand-orange);
}

/* Active State (Added by JS) */
.nav-link.active {
    color: var(--brand-orange) !important;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--brand-orange);
    border-radius: 2px;
}

/* Mobile Menu Transitions */
#mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

#mobile-menu.open {
    max-height: 400px; /* Adjust based on content */
    border-bottom: 1px solid var(--brand-border);
}

/* ── GLOBAL UTILITIES ── */
.focus-ring:focus-visible {
    outline: 2px solid var(--brand-orange);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Footer Links */
.footer-link {
    transition: color 0.2s;
}
.footer-link:hover {
    color: var(--brand-orange);
}