/* ============================================================
   TERRE ALTE APS — Custom Footer
   ============================================================ */

.ta-footer {
    background-color: #08555d;
    color: #f2e9db;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    line-height: 1.7;
}

.ta-footer a {
    color: #f2e9db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ta-footer a:hover {
    color: #b3a281;
}

/* --- Inner grid --------------------------------------------- */
.ta-footer__inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 2rem;
}

/* --- Colonna: Brand ----------------------------------------- */
.ta-footer__logo {
    display: inline-block;
    margin-bottom: 1rem;
}

.ta-footer__logo img {
    width: 140px;
    height: auto;
}

.ta-footer__address {
    margin-bottom: 0.5rem;
    opacity: 0.85;
}

.ta-footer__cf {
    opacity: 0.7;
    font-size: 13px;
}

/* --- Social ------------------------------------------------- */
.ta-footer__social {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
}

.ta-footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(242, 233, 219, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.ta-footer__social a:hover {
    border-color: #b3a281;
    color: #b3a281;
}

/* --- Colonna: Nav ------------------------------------------- */
.ta-footer__menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ta-footer__menu li {
    margin-bottom: 0.4rem;
}

.ta-footer__menu a {
    font-size: 15px;
}

/* --- Colonna: Contatti -------------------------------------- */
.ta-footer__heading {
    font-family: "Big Shoulders Display", sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #b3a281;
    margin: 0 0 0.8rem;
}

.ta-footer__contacts a,
.ta-footer__contacts .ta-footer__sede {
    display: block;
    margin-bottom: 0.4rem;
}

.ta-footer__sede {
    margin-top: 0.6rem;
    opacity: 0.85;
}

/* --- Bottom bar --------------------------------------------- */
.ta-footer__bottom {
    border-top: 1px solid rgba(242, 233, 219, 0.15);
    text-align: center;
    padding: 1rem 2rem;
    font-size: 13px;
    opacity: 0.6;
}

/* --- Responsive --------------------------------------------- */
@media (max-width: 768px) {
    .ta-footer__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem 1.5rem;
    }

    .ta-footer__logo img {
        width: 120px;
    }
}
