#sizeTitolo{
    font-size: 50px;
}

#sizeSottotitolo{
    font-size: 30px;
}

#sizeTesto{
    font-size: 20px;
}


.text-justify {
    text-align: justify;
    line-height: 1.7;
}
  

/* Navbar con allineamento corretto */
nav ul {
    list-style: none;
    display: flex;
    justify-content: center; /* Centra orizzontalmente */
    align-items: center; /* Allinea verticalmente gli elementi */
    margin: 0;
    padding: 0;
    height: 50px; /* Altezza uniforme per tutta la navbar */
}

nav ul li {
    margin: 0 15px;
    font-size: 18px; /* Mantieni la stessa dimensione del testo */
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
    position: relative;
    font-size: 18px;
    display: inline-flex; /* Assicura che il testo sia allineato correttamente */
    align-items: center;
    justify-content: center;
}


nav ul li a:hover {
    color: #cc7a00;
}

nav ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 3px;
    background-color: #cc7a00;
    transition: width 0.3s ease-in-out;
}

nav ul li a:hover::after {
    width: 100%;
}



/* Footer personalizzato */
.full-footer {
    width: 100vw;
    background-color: #1f1f1f;
    color: white;
    text-align: center;
    padding: 20px 0;
    box-sizing: border-box;
}




.hero-orange {
    background-color: #ff9900cc; /* Arancione brillante */
    color: white;
}

.hero-deepblue {
    color: #1c1c84;
}

.hero-color{
    color:#1f1f1f;
}


 
.cyber-link {
    text-decoration: underline;
    color: #1c1c84;
    cursor: pointer;
}

.cyber-link:hover {
    color: #1c1c84;
}



/* Stile per immagini cliccabili (galleria o altro) */
.clickable-img {
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.clickable-img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.scroll-section {
    padding: 80px 20px;
    text-align: justify;
    border-bottom: 1px solid #1c1c84;
}

 

.scrollable-box {
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid #1c1c84;
    padding: 20px;
    text-align: justify;
    border-radius: 8px;
    background-color: #ffffff;
    margin-top: 20px;
}



.btn-download-custom {
    color: #ff9900;
    background-color: white;
    border: 1px solid 	#1c1c84;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}
  
.btn-download-custom:hover {
    background-color: #cc7a00;
    color: white;
}


img.rounded.shadow {
    border: 2px solid #1c1c84; /* o #ff9900 per arancione */
}

