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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f0f0f0;
}

.main-header {
    /* Gradiente di sfondo fedele all'immagine */
    background: linear-gradient(to bottom, #1e2a3a 0%, #2c343f 40%, #8e94a0 100%);
    height: 500px; /* Regola l'altezza secondo le tue necessità */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
    position: relative;
}

/* Titoli */
.title {
    font-size: 5rem; /* Molto grande e bold */
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.subtitle {
    font-size: 2.2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #cbd5e0; /* Grigio chiaro/azzurrato */
    margin-bottom: 30px;
}

/* Bottone HOME */
.home-button-container {
    margin-bottom: 40px;
}

.home-btn {
    background-color: #000;
    color: white;
    text-decoration: none;
    padding: 10px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: transform 0.2s;
    display: inline-block;
}

.home-btn:hover {
    transform: scale(1.05);
}

/* Navbar a forma di pillola */
.navbar-container {
    background-color: white;
    padding: 10px 30px;
    border-radius: 100px; /* Crea l'effetto pillola */
    width: 90%;
    max-width: 1000px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: absolute;
    bottom: 30px; /* Posiziona la barra in fondo all'header */
}

.navbar {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar li {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid #ddd; /* Separatori tra voci */
}

.navbar li:last-child {
    border-right: none;
}

.navbar a {
    text-decoration: none;
    color: #000;
    font-weight: 800;
    font-size: 0.85rem;
    text-align: center;
    padding: 5px 10px;
    line-height: 1.2;
}

.navbar a:hover {
    color: #555;
}

/* Responsive per schermi piccoli */
@media (max-width: 768px) {
    .title { font-size: 2.5rem; }
    .subtitle { font-size: 1.2rem; }
    .navbar-container { 
        border-radius: 20px;
        bottom: 10px;
    }
    .navbar { flex-wrap: wrap; }
    .navbar li { border-right: none; margin: 5px 0; }
}






/* --- Linea sotto le voci della NAVBAR quando attive --- */
.navbar li.active a {
    position: relative;
    font-weight: 900; /* Rende il testo leggermente più marcato */
}

.navbar li.active a::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;      /* Linea lunga quanto la parola */
    height: 3px;
    background-color: #000;
    border-radius: 5px;
}





/* --- Linea sotto le voci della NAVBAR quando attive --- */
.navbar li.active a {
    position: relative;
    font-weight: 900; /* Rende il testo leggermente più marcato */
}

.navbar li.active a::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;      /* Linea lunga quanto la parola */
    height: 3px;
    background-color: #000;
    border-radius: 5px;
}


