/* =============================================
   FOOTER — OpenBadge Pro
   v1: solo colori e font, struttura invariata
   ============================================= */

/* Palette OBP
   --obp-orange:    #C44A1E   (arancione logo)
   --obp-blue:      #2E3E4D   (blu scuro logo)
   --obp-blue-mid:  #4A6278   (blu medio, per testi secondari)
   --obp-bg:        #F7F8F9   (bianco leggermente freddo, non puro)
   --obp-rule:      #DDE2E7   (separatore)
*/

body {
    overflow-x: hidden;
}

.container {
    min-height: 150pt;
}

.text-grey {
    color: #4A6278;
}

/* --- FOOTER BASE --- */
.footer {
    bottom: 0;
    width: 100%;
    background: #F7F8F9;
    border-top: 3px solid #C44A1E; /* accento arancione in cima al footer */
}

    /* --- TESTO GENERICO NEL FOOTER --- */
    .footer p,
    .footer .subtitle {
        color: #2E3E4D;
        font-size: 10.5pt;
    }

    /* --- LINK --- */
    .footer a {
        color: #2E3E4D;
        text-decoration: none;
        transition: color 0.2s ease;
    }

        .footer a:hover {
            color: #C44A1E;
            text-decoration: underline;
        }

    /* --- SEPARATORE HR --- */
    .footer hr {
        color: #DDE2E7;
        border-color: #DDE2E7;
        opacity: 1;
    }

    /* --- SOCIAL ICONS --- */
    .footer .social-icons li.iqcblue-icon a {
        background-color: #2E3E4D;
        color: #ffffff;
        transition: background-color 0.2s ease;
    }

        .footer .social-icons li.iqcblue-icon a:hover {
            background-color: #C44A1E;
            color: #ffffff;
            text-decoration: none;
        }

    /* --- TESTO LEGALE IN FONDO --- */
    .footer p[style*="font-size: 10pt"] {
        color: #4A6278;
    }

    /* --- LINK PIÈ DI PAGINA (privacy, cookies, ecc.) --- */
    .footer .col-lg-6.text-right a,
    .footer .col-lg-6.text-center-mobile a {
        color: #4A6278;
        font-size: 9.5pt;
    }

        .footer .col-lg-6.text-right a:hover,
        .footer .col-lg-6.text-center-mobile a:hover {
            color: #C44A1E;
        }

    /* --- TESTO CERTIFICAZIONE 1EdTech --- */
    .footer p[style*="--iqcblue"] {
        color: #2E3E4D !important;
        font-weight: 500;
    }

/* --- MOBILE: footer scuro --- */
@media (max-width: 990px) {
    .footer {
        background: #1A252F !important;
        border-top: 3px solid #C44A1E;
    }

        .footer p,
        .footer .subtitle {
            color: #ffffff;
        }

        .footer a {
            color: #ffffff;
        }

            .footer a:hover {
                color: #C44A1E;
            }

        .footer hr {
            border-color: rgba(255, 255, 255, 0.15);
            color: rgba(255, 255, 255, 0.15);
        }

        .footer .social-icons li.iqcblue-icon a {
            background-color: rgba(255, 255, 255, 0.15);
            color: #ffffff;
        }

            .footer .social-icons li.iqcblue-icon a:hover {
                background-color: #C44A1E;
            }

        .footer p[style*="font-size: 10pt"] {
            color: rgba(255, 255, 255, 0.6);
        }

        .footer .col-lg-6.text-right a,
        .footer .col-lg-6.text-center-mobile a {
            color: rgba(255, 255, 255, 0.6);
        }

            .footer .col-lg-6.text-right a:hover,
            .footer .col-lg-6.text-center-mobile a:hover {
                color: #C44A1E;
            }

        .footer p[style*="--iqcblue"] {
            color: #ffffff !important;
        }
}
