@font-face {
    font-family: 'Bangers';
    src: url('assets/fonts/Bangers-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Comicblast';
    src: url('assets/fonts/Comicblast Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Netron';
    src: url('assets/fonts/Netron.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

html, body, *, ::before, ::after {
    font-family: 'Montserrat', sans-serif !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

p {
    font-family: 'Montserrat', sans-serif !important;
}

.font-orbitron, .font-orbitron * {
    font-family: 'Netron', sans-serif !important;
}

.font-netron, .font-netron * {
    font-family: 'Netron' !important;   
}

.font-bangers, .font-bangers * {
    font-family: 'Bangers' !important;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 14px;
    right: 14px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}

/* Hero Background Animations */
@keyframes kenBurns {
    0% { transform: scale(1.05) translate(0, 0); }
    50% { transform: scale(1.15) translate(-1%, -1%); }
    100% { transform: scale(1.05) translate(0, 0); }
}
.animate-ken-burns {
    animation: kenBurns 30s ease-in-out infinite;
}

@keyframes pulseOverlay {
    0% { opacity: 0.8; }
    50% { opacity: 0.95; }
    100% { opacity: 0.8; }
}
.animate-pulse-overlay {
    animation: pulseOverlay 8s ease-in-out infinite;
}

/* Animated Link Underline */
.hover-underline-anim {
    position: relative;
}
.hover-underline-anim::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #f59e0b;
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}
.hover-underline-anim:hover::after,
.group:hover .hover-underline-anim::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Accessibility: Focus visible */
:focus-visible {
    outline: 2px solid #f59e0b;
    outline-offset: 2px;
}
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
    outline: none;
}

/* Skip to content (A11Y) */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 9999;
    background: #f59e0b;
    color: #000;
    padding: 12px 24px;
    font-weight: bold;
    font-size: 14px;
    border-radius: 0 0 8px 8px;
    transition: top 0.2s;
}
.skip-link:focus {
    top: 0;
}
