@font-face {
    font-family: Inter;
    src: url(../assets/fonts/Inter.ttf);
}

.site-footer {
    background-color: transparent;
    color: #fff;
    padding: 40px 20px;
    font-size: 0.9em;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col.footer-contact {
    flex: 2.4;
}

.footer-label {
    font-weight: bold;
    text-transform: uppercase;
    /*letter-spacing: clamp(0.15em, 10vw, 5em);
    padding-left: clamp(0.15em, 10vw, 5em);*/
    margin-bottom: 10px;
    text-align: center;
    display: flex;
    justify-content: space-between;
}


.footer-contact {
    letter-spacing: 0.2em;
    font-family: Inter;
    font-size: 1.1em;
    font-weight: lighter;
    /*
    font-weight: bold;
    */
    margin-bottom: 10px;
    text-align: center;
}

.footer-info{
    font-family: Inter;
    font-size: 1.1em;
    text-align: left;
    font-weight: lighter;
}

.footer-contact a {
    color: #fff;
    text-decoration: none;
}

.footer-contact a:hover,
.footer-social a:hover {
    text-decoration: underline;
}

.footer-social {
    display: flex;
    justify-content: flex-end;
    /* Allinea le icone a destra */
    text-align: right;
    gap: 10px;
    margin-bottom: 10px;
}

/* Imposta le icone nere solo nella landing page */
.footer-social img {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
    /* icone bianche */
}

.landing-page .footer-social img {
    filter: none;
}

.footer-social a {
    display: inline-block;
}

.footer-social p {
    margin-top: 0;
}

.site-footer p {
    margin: 5px 0;
}

/* Footer fisso in fondo alla pagina solo per la landing page */
.footer-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 20px;
    background-color: transparent;
    color: #fff;
    box-sizing: border-box;
    z-index: 1000;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-col {
        flex: none;
        width: 100%;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-grey{
        background-color: #808080;
    }

    .footer-fixed {
        position: relative;
        background-color: #808080;
        /*
        position: static;
        bottom: 100;
        left: 0;
        right: 0;
        padding: 0px;
        background-color: transparent;
        color: #ffffff;
        box-sizing: border-box;
        z-index: 1000;
        */
        
    }

    .footer-info{
        text-align: center;
    }
}

@media screen and (max-width: 1024px) and (orientation: landscape) {
    
  .footer-fixed {
    bottom: -30px; 
  }

}
