@import url('colori.css');
@import url('default.css');
@import url('btn-utilities.css');
@import url('wpml-language-switcher.css');
@import url('contact-form-7.css');
@import url('ico-sci.css');
@import url('nav-large-mobile.css');
@import url('card.css');

body {
    font-family: 'Helvetica Neue', sans-serif;
    background-color: #f9f9f9;
}

/* Header Sticky - Classe personalizzata */
.sticky-header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 100% !important;
}

/* Effetto scroll */
.sticky-header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

/* Responsive */
@media (max-width: 768px) {
    .sticky-header {
        box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    }
}

/* Migliora la gestione degli anchor link */
html {
    scroll-behavior: smooth;
}

/* Assicura che gli elementi con ID abbiano scroll-margin per compensare l'header */
[id] {
    scroll-margin-top: 100px; /* Regola questo valore in base all'altezza del tuo header */
}

