﻿html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #004a99; /* colore footer */
}

.page-content {
    flex: 1 0 auto;
    background-color: #ffffff;
}

.site-footer {
    flex-shrink: 0;
}


.content {
    padding-bottom: 2rem; /* o quello che vuoi */
}


@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}


.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}




/* new */


/* TOP BAR */
.top-bar {
    background-color: #004a99 !important;
}

    .top-bar a {
        color: #ffffff !important;
        text-decoration: none !important;
        font-size: 14px !important;
    }

/* HEADER PRINCIPALE */
.main-header {
    background-color: #ffffff !important;
    border-bottom: 1px solid #e5e5e5 !important;
}

.header-logo {
    height: 60px !important;
}

.header-title {
    color: #005fc5 !important;
    font-size: 28px !important;
    font-weight: 600 !important;
}

/* SEARCH */
.search-box span {
    color: #005fc5 !important;
    font-weight: 500 !important;
}

.btn-search {
    background-color: #005fc5 !important;
    border-radius: 50% !important;
    color: #fff !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* MENU */
.main-nav {
    background-color: #0066cc !important;
}

    .main-nav .nav-link {
        color: #ffffff !important;
        font-weight: 500 !important;
    }

        .main-nav .nav-link:hover {
            text-decoration: underline !important;
        }

/* FOOTER ROOT – azzurro reale */
.site-footer {
    margin: 0 !important;
    padding: 0 !important;
    background-color: #004a99 !important;
    color: #ecf7f6 !important;
    font-size: 14px !important;
}

    /* Rimuove BIANCHI bootstrap */
    .site-footer *,
    .site-footer p,
    .site-footer .container {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    /* TOP FOOTER */
    .site-footer .footer-top {
        padding: 32px 0 !important;
    }

    /* Container override */
    .site-footer .container {
        max-width: 1200px !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    /* Colonne */
    .site-footer .footer-columns {
        display: flex !important;
        gap: 32px !important;
    }

    /* 3 parti uguali */
    .site-footer .footer-col {
        flex: 1 1 0 !important;
    }

    /* Titoli */
    .site-footer h4 {
        margin: 0 0 8px 0 !important;
        font-size: 16px !important;
        font-weight: 700 !important;
        color: #ffffff !important;
    }

    /* Testo */
    .site-footer p {
        line-height: 1.5 !important;
        color: #ecf7f6 !important;
    }

    /* Link */
    .site-footer a {
        color: #bff1ee !important;
        text-decoration: none !important;
    }

        .site-footer a:hover {
            color: #ffffff !important;
            text-decoration: underline !important;
        }

    /* FOOTER BOTTOM – barra più scura */
    .site-footer .footer-bottom {
        background-color: #177a76 !important;
        padding: 10px 0 !important;
        text-align: center !important;
        font-size: 13px !important;
        margin: 0 !important;
    }

/* RESPONSIVE */
@media (max-width: 900px) {
    .site-footer .footer-columns {
        flex-direction: column !important;
        gap: 24px !important;
    }
}

/* FOOTER BOTTOM */
.site-footer .footer-bottom {
    background-color: #177a76 !important; /* azzurro scuro */
    margin: 0 !important;
    padding: 10px 0 !important;
}

/* Container */
.site-footer .footer-bottom-links {
    display: flex !important;
    justify-content: center !important;
    gap: 24px !important;
    flex-wrap: wrap !important;
}

    /* Link base: BIANCHI */
    .site-footer .footer-bottom-links a {
        color: #ffffff !important;
        font-size: 13px !important;
        text-decoration: none !important;
        font-weight: 500 !important;
        padding: 2px 0 !important;
        position: relative !important;
    }

        /* Hover: BLU più intenso + sottolineatura */
        .site-footer .footer-bottom-links a:hover,
        .site-footer .footer-bottom-links a:focus {
            color: white !important; /* blu intenso */
            text-decoration: underline !important;
        }

        /* Elimina qualsiasi bordo bootstrap */
        .site-footer .footer-bottom-links a::after {
            content: none !important;
        }


.site-footer {
    background-color: #004a99 !important; /* base */
    margin-bottom: 0 !important;
}

    .site-footer .footer-bottom {
        background-color: #003366 !important; /* più scuro */
        margin-bottom: 0 !important;
    }


