/* ============================================================
   footer.css — Stili footer
   Sito: Lavanderia L'ApeGreen
   Percorso: lavanderialapegreen/css/footer.css
   ============================================================ */

@import url('style.css');

/* ------------------------------------------------------------
   FOOTER — struttura generale
   ------------------------------------------------------------ */
#footer {
    background-color: #2C2C2A;
    color: rgba(255, 255, 255, 0.75);
    font-size: 17px;
    margin-top: auto;
}

/* ------------------------------------------------------------
   GRIGLIA 3 COLONNE
   ------------------------------------------------------------ */
.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2.5rem var(--spacing-md) 2rem;
    border-bottom: 0.5px solid #444441;
}

/* ------------------------------------------------------------
   COLONNA BRAND
   ------------------------------------------------------------ */
.footer-brand h3 {
    color: #FAF9F7;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
}

/* ------------------------------------------------------------
   COLONNE NAVIGAZIONE E CONTATTI
   ------------------------------------------------------------ */
.footer-col h4 {
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-col ul li a:hover {
    color: #FFFFFF;
}

/* ------------------------------------------------------------
   LISTA CONTATTI CON ICONE
   ------------------------------------------------------------ */
.footer-contacts li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 0.6rem;
}

.footer-contacts li i {
    color: var(--btn-bg);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contacts li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contacts li a:hover {
    color: #FFFFFF;
}

/* ------------------------------------------------------------
   BARRA COPYRIGHT
   ------------------------------------------------------------ */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1rem var(--spacing-md);
    border-bottom: 0.5px solid #444441;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 15px;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 1.2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 15px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #FFFFFF;
}

/* ------------------------------------------------------------
   POWERED BY
   ------------------------------------------------------------ */
.footer-powered {
    text-align: center;
    padding: 0.7rem var(--spacing-md);
}

.footer-powered p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 13px;
    margin: 0;
}

.footer-powered a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-powered a:hover {
    color: #FFFFFF;
}

/* ------------------------------------------------------------
   RESPONSIVE — TABLET
   ------------------------------------------------------------ */
@media (max-width: 991px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

/* ------------------------------------------------------------
   RESPONSIVE — MOBILE
   ------------------------------------------------------------ */
@media (max-width: 575px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.6rem;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}