/* Custom Styles */
@layer utilities {
  .tracking-extratight {
    letter-spacing: -0.02em;
  }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: 'Montserrat', sans-serif;
}

h1 {
    line-height: 1.05;
    letter-spacing: -0.02em;
}

/* Focus State Accessibility */
*:focus-visible {
    outline: 3px solid #002A86 !important;
    outline-offset: 2px;
}

/* Custom CSS to hide scrollbar if needed or animations */
@keyframes bounce-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-bounce-slow {
    animation: bounce-slow 2s infinite;
}

/* Lightbox */
#lightbox {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#lightbox.active {
    display: flex;
    opacity: 1;
}
