/**
 * Custom Footer Styles - Natur-Luftballons
 * Ersetzt Elementor Advanced Hook (Post 35)
 *
 * Hintergrund: Brand-Gruen #62BC66
 * Font: Nunito 400/700
 * Layout: 4 Spalten Desktop -> 2x2 Tablet -> 1 Spalte Mobile
 */

/* Nunito laden (wird nicht global geladen) */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700&display=swap');

/* ===================================================================
   FOOTER CONTAINER
   =================================================================== */

.natur-custom-footer {
    background-color: #62BC66;
    color: #ffffff;
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.6;
    margin-top: 0;
}

.natur-custom-footer .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===================================================================
   4-SPALTEN GRID
   =================================================================== */

.natur-custom-footer .footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 48px 0 40px;
}

.natur-custom-footer .footer-col h4 {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #ffffff;
    margin: 0 0 16px 0;
    padding: 0;
    letter-spacing: 0.02em;
}

/* ===================================================================
   SPALTE 1: KONTAKT (Logo + Adresse)
   =================================================================== */

.natur-custom-footer .footer-logo {
    display: block;
    width: 180px;
    height: auto;
    filter: brightness(0) invert(1);
    margin-top: -22px;
    margin-bottom: 16px;
}

.natur-custom-footer .footer-logo-link:hover .footer-logo {
    opacity: 0.85;
}

.natur-custom-footer .footer-address {
    font-style: normal;
    line-height: 1.7;
    margin-bottom: 12px;
}

.natur-custom-footer .footer-contact-list {
    list-style: none;
    margin: 0 0 12px 0;
    padding: 0;
}

.natur-custom-footer .footer-contact-list li {
    margin-bottom: 4px;
}

.natur-custom-footer .footer-contact-link {
    display: inline-block;
    margin-top: 4px;
}

/* ===================================================================
   SPALTE 2: RECHTLICHES (Link-Liste)
   =================================================================== */

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

.natur-custom-footer .footer-col-rechtliches li {
    margin-bottom: 8px;
}

/* ===================================================================
   LINKS (global im Footer)
   =================================================================== */

.natur-custom-footer a {
    color: #ffffff;
    text-decoration: underline;
    transition: opacity 0.2s ease;
}

.natur-custom-footer a:hover,
.natur-custom-footer a:focus {
    opacity: 0.8;
    text-decoration: none;
}

/* ===================================================================
   BADGES (Versand + Zahlungsarten)
   =================================================================== */

.natur-custom-footer .footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.natur-custom-footer .badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    border-radius: 6px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 13px;
    line-height: 1;
    white-space: nowrap;
    min-width: 60px;
}

/* Versand-Badges */
.natur-custom-footer .badge-dhl {
    background-color: #FFCC00;
    color: #CC0000;
}

.natur-custom-footer .badge-dpd {
    background-color: #DC0032;
    color: #ffffff;
}

/* Payment-Badges */
.natur-custom-footer .badge-visa {
    background-color: #1A1F71;
    color: #ffffff;
}

.natur-custom-footer .badge-mc {
    background-color: #EB001B;
    color: #ffffff;
}

.natur-custom-footer .badge-paypal {
    background-color: #003087;
    color: #ffffff;
}

.natur-custom-footer .badge-applepay {
    background-color: #000000;
    color: #ffffff;
}

.natur-custom-footer .badge-ueberweisung {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

/* ===================================================================
   VERSAND-INFO
   =================================================================== */

.natur-custom-footer .footer-versand-info {
    margin: 0 0 8px 0;
    font-size: 14px;
    opacity: 0.9;
}

/* ===================================================================
   COPYRIGHT-ZEILE
   =================================================================== */

.natur-custom-footer .footer-copyright {
    background-color: #4fa853;
    padding: 16px 0;
    font-size: 14px;
    text-align: center;
}

/* ===================================================================
   RESPONSIVE: TABLET (768px)
   =================================================================== */

@media (max-width: 768px) {
    .natur-custom-footer .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
        padding: 36px 0 32px;
    }

    .natur-custom-footer .footer-logo {
        width: 150px;
    }
}

/* ===================================================================
   RESPONSIVE: MOBILE (480px)
   =================================================================== */

@media (max-width: 480px) {
    .natur-custom-footer .footer-columns {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 32px 0 28px;
    }

    .natur-custom-footer .footer-col {
        text-align: center;
    }

    .natur-custom-footer .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }

    .natur-custom-footer .footer-address {
        text-align: center;
    }

    .natur-custom-footer .footer-badges {
        justify-content: center;
    }

    .natur-custom-footer .footer-copyright {
        padding: 12px 0;
        font-size: 13px;
    }
}
