/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Menu navbar futuristico */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, #0f2027, #203a43, #2c5364); /* Gradiente futuristico */
    padding: 1rem 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #00eaff; /* Colore neon */
    text-transform: uppercase;
    text-shadow: 0 0 8px #00eaff, 0 0 15px #00eaff; /* Effetto bagliore */
}

.navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.navbar .nav-links li {
    position: relative;
}

.navbar .nav-links a {
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    color: #ffffff;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.navbar .nav-links a:hover {
    color: #00eaff; /* Neon on hover */
    text-shadow: 0 0 8px #00eaff, 0 0 15px #00eaff; /* Bagliore neon */
}

/* Effetto linea futuristica sotto il link */
.navbar .nav-links li::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #00eaff;
    transition: width 0.4s ease;
}

.navbar .nav-links li:hover::after {
    width: 100%; /* Linea completa al passaggio del mouse */
}





/* Sezioni occio */
.section {
    padding: 5rem 0;
    text-align: center;
    background-color: #ffffff;  /* Sfondo chiaro per sezione */
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #00aaff;
    letter-spacing: 0.5px;
}

.section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #333;
    line-height: 1.8;
}






/* Animazione della linea luminosa */
@keyframes scanline {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}
/* Footer futuristico */
footer {
    background: linear-gradient(90deg, #0f2027, #203a43, #2c5364); /* Gradiente come nel menu */
    padding: 2rem 0;
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

footer .footer-logo-container {
    margin-bottom: 1rem;
}

footer .footer-logo {
    max-width: 120px;
    filter: drop-shadow(0 0 10px #00eaff); /* Effetto neon */
    transition: transform 0.3s ease, filter 0.3s ease;
}

footer .footer-logo:hover {
    transform: scale(1.1); /* Leggero ingrandimento al passaggio del mouse */
    filter: drop-shadow(0 0 20px #00eaff); /* Bagliore più intenso */
}

footer p {
    font-size: 1rem;
    font-weight: 400;
    color: #00eaff; /* Testo neon */
    text-shadow: 0 0 8px #00eaff, 0 0 15px #00eaff;
    letter-spacing: 1px;
    margin: 0;
}

