/* Change the main menu background color */
.container-header {
    background-color: #fafafa !important;
    background-image: none !important; /* Removes the default purple gradient */
}

/* Force the main menu items to change color */
.header .navbar-nav .nav-link,
.container-header .mod-menu .nav-item a,
.container-header .navbar-nav .nav-link {
    color: #000000 !important; /* Change #000000 to your desired text color */
    font-weight: 700 !important;
}

/* Force the text color change when hovering */
.header .navbar-nav .nav-link:hover,
.container-header .mod-menu .nav-item a:hover,
.container-header .navbar-nav .nav-link:hover {
    color: #000000 !important;
    font-weight: 700 !important;
}

.header .navbar-nav .active > .nav-link,
.container-header .mod-menu .active > a {
    color: #000000 !important; 
    font-weight: 700 !important;
}

.container-header .mod-menu{
  align-items: center !important;
}

/* Configuração Geral do Rodapé */
footer.footer {
    background-color: #fafafa !important;
    background-image: none !important;  
    color: #000000 !important;
    padding: 25px 20px !important;
}

/* CORREÇÃO DO DESALINHAMENTO: Força o contentor do Joomla a centrar no ecrã */
footer.footer .site-grid,
footer.footer .container,
footer.footer .mod-custom {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
}

/* Barra de Contactos em Linha Totalmente Centrada */
.footer-contacts-line {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 25px; 
    margin-bottom: 20px;
    width: 100%;
    font-size: 0.95rem;
    text-align: center !important;
}

.footer-contacts-line span {
    white-space: nowrap; 
}

/* Barra Inferior (Copyright) */
.footer-bottom {
    width: 100%;
    max-width: 1100px;
    border-top: 1px solid #e5e5e5;
    padding-top: 15px;
    text-align: center !important;
}

.footer-bottom p {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

/* Links Legais */
footer.footer a {
    color: #000000 !important;
    text-decoration: none !important;
    font-weight: 600 !important;
}

footer.footer a:hover {
    text-decoration: underline !important;
}

/* Responsividade para Telemóveis */
@media (max-width: 768px) {
    .footer-contacts-line {
        flex-direction: column !important;
        gap: 10px;
    }
}