/* ============================================================
   FOOTER.CSS - Footer & Cookie-Banner
   ============================================================ */

/* === FOOTER === */
.footer {
    background: var(--teal-950);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--sp-16) 0 0;
}

.footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--sp-10);
    padding-bottom: var(--sp-12);
}

/* Brand-Spalte */
.footer__brand {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    font-weight: 800;
    font-size: var(--fs-xl);
    color: white;
    margin-bottom: var(--sp-4);
    text-decoration: none;
}

.footer__brand-icon {
    width: 36px;
    height: 36px;
    background: var(--teal-600);
    border-radius: var(--r-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer__brand-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

.footer__tagline {
    font-size: var(--fs-sm);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    max-width: 280px;
    margin-bottom: var(--sp-6);
}

/* Newsletter */
.footer__newsletter-label {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: white;
    margin-bottom: var(--sp-3);
}

.footer__newsletter-form {
    display: flex;
    gap: var(--sp-2);
}

.footer__newsletter-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--r-md);
    padding: var(--sp-3) var(--sp-4);
    font-size: var(--fs-sm);
    color: white;
    font-family: var(--font-sans);
    transition: border-color 0.2s ease, background 0.2s ease;
}

.footer__newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.footer__newsletter-input:focus {
    outline: none;
    border-color: var(--teal-400);
    background: rgba(255, 255, 255, 0.12);
}

.footer__newsletter-btn {
    background: var(--teal-700);
    color: white;
    border: none;
    border-radius: var(--r-md);
    padding: var(--sp-3) var(--sp-5);
    font-size: var(--fs-sm);
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-sans);
    transition: background 0.2s ease;
    white-space: nowrap;
}

.footer__newsletter-btn:hover {
    background: var(--teal-600);
}

/* Navigations-Spalten */
.footer__col-title {
    font-size: var(--fs-sm);
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--sp-5);
}

.footer__nav {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
}

.footer__nav-link {
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.15s ease;
    text-decoration: none;
}

.footer__nav-link:hover {
    color: var(--teal-300);
}

/* Trennlinie */
.footer__divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Bottom-Bar */
.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--sp-6) 0;
    gap: var(--sp-4);
    flex-wrap: wrap;
}

.footer__copy {
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, 0.6);
}

.footer__legal-links {
    display: flex;
    gap: var(--sp-5);
    flex-wrap: wrap;
}

.footer__legal-link {
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.15s ease;
}

.footer__legal-link:hover {
    color: var(--teal-300);
}


/* === Statische Seiten (Datenschutz, Impressum) === */
.static-page {
    padding-top: calc(68px + var(--sp-12));
    padding-bottom: var(--sp-24);
}

.static-page__hero {
    background: var(--teal-50);
    padding: var(--sp-12) 0;
    margin-bottom: var(--sp-12);
    border-bottom: 1px solid var(--teal-100);
}

.static-page__title {
    font-size: var(--fs-4xl);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--sp-3);
}

.static-page__updated {
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
}

.static-content {
    max-width: 780px;
    font-size: var(--fs-lg);
    line-height: 1.8;
    color: var(--gray-700);
}

.static-content h2 {
    font-size: var(--fs-2xl);
    font-weight: 700;
    color: var(--gray-900);
    margin: var(--sp-10) 0 var(--sp-4);
}

.static-content h3 {
    font-size: var(--fs-xl);
    font-weight: 600;
    color: var(--gray-900);
    margin: var(--sp-8) 0 var(--sp-3);
}

.static-content p {
    margin-bottom: var(--sp-5);
}

.static-content ul {
    list-style: disc;
    padding-left: var(--sp-6);
    margin-bottom: var(--sp-5);
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
}

.static-content a:not(.btn) {
    color: var(--teal-600);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Hervorgehobener Hinweis-Block (z. B. Widerspruchsrecht Art. 21 Abs. 4 DSGVO) */
.static-content__notice {
    border-left: 3px solid var(--teal-600);
    background: var(--teal-50);
    padding: var(--sp-4) var(--sp-5);
    border-radius: 0 var(--r-md) var(--r-md) 0;
    margin-bottom: var(--sp-5);
}

.static-content__notice p {
    margin-bottom: 0;
}

/* === Responsive === */
@media (max-width: 960px) {
    .footer__top {
        grid-template-columns: 1fr 1fr;
    }

    .footer__brand-col {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .footer__top {
        grid-template-columns: 1fr;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

