@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Outfit:wght@400;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #050b14;
    color: #f8fafc;
    overflow-x: hidden;
    position: relative;
}

/* Particles JS Background Canvas Overlay */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -10;
    background-color: #050b14;
    background-image:
        linear-gradient(to bottom, rgba(5, 11, 20, 0.88), rgba(5, 11, 20, 0.96)),
        url('../assets/cyber_bg.png');
    /* Adjusted relative path to assets */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

h1,
h2,
h3,
.brand-font {
    font-family: 'Outfit', sans-serif;
}

.hero-bg {
    background: radial-gradient(circle at 50% 0%, rgba(30, 58, 138, 0.4) 0%, #050b14 70%);
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.glass-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.glow-image {
    filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.3));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 100;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wa-float:hover {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

/* Mobile Menu Transitions */
#mobile-menu {
    transition: max-height 0.4s ease-in-out, opacity 0.3s ease-in-out;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}

#mobile-menu.open {
    max-height: 400px;
    opacity: 1;
}

/* Dynamic Dark Mode Logo Inversion */
.logo-dark-mode {
    filter: invert(1) hue-rotate(180deg) brightness(1.2) contrast(1.2);
    mix-blend-mode: screen;
    max-height: 40px;
}

/* Cookie Banner Visibility */
#cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}