@font-face {
    font-family: 'Frick 0.3';
    src: url('assets/fonts/Frick0.3-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Frick 0.3';
    src: url('assets/fonts/Frick0.3-Condensed.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: clip;
    background-color: #002257;
    color: white;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Frick 0.3', sans-serif;
}

/* Initial state for scroll animations */
.animate-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-slide-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Final state */
.visible {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}

/* Stagger delays */
.delay-100 {
    transition-delay: 100ms;
}

.delay-200 {
    transition-delay: 200ms;
}

.delay-300 {
    transition-delay: 300ms;
}

.faq-content {
    max-height: 0;
    transition: max-height 0.3s ease-out;
}

/* Extracted from index.php inline styles */
.film-grain-overlay {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.hero-title {
    font-family: 'Frick 0.3', sans-serif;
    font-size: 79px;
    line-height: 69px;
}

#ba-before {
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

#ba-handle {
    left: calc(50% - 2px);
}

/* Common Section Title font size standardization */
.section-title {
    font-size: 2.25rem; /* 36px (text-4xl) */
    line-height: 2.5rem;
}
@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem; /* 48px (text-5xl) */
        line-height: 1;
    }
}

/* Footer Widget Titles Typography */
footer h4 {
    font-family: 'Inter', sans-serif;
}