html {
    scroll-behavior: smooth;
}

body { 
    font-family: 'Manrope', sans-serif; 
    background-color: #F9F9F9; 
    color: #373e4c; 
}

.material-symbols-outlined { 
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24; 
}

/* Ulepszone Sticky Menu */
.glass-nav { 
    background: rgba(255, 255, 255, 0.85); 
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(197, 198, 205, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animacje Fade-In (Intersection Observer) */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Ukryte pole powstrzymujące boty (Honeypot) */
.hp-field {
    display: none !important;
}
