/* ============================================================
   FOOTER.CSS – DiNC-POSiTiVE Ultra Footer (FIXED & SAFE)
   ============================================================ */

/* Wrapper */
.dp-footer-full {
    background: #050608;
    color: #fff;
    padding-top: 50px;
    margin-top: 60px;
    border-top: 2px solid rgba(0, 202, 255, 0.35);
    position: relative;
    overflow: hidden;

    /* NEW — prevents dark sections above from affecting colors */
    isolation: isolate;
    z-index: 10;
}

/* ABSOLUTE FIX FOR DARK INHERITANCE */
.dp-footer-top-wrapper,
.dp-footer-top,
.dp-footer-col,
.dp-footer-col p,
.dp-footer-col a,
.dp-footer-col h4 {
    color: #ffffff !important;   /* ensures visible text */
    opacity: 1 !important;
}

/* Leichte „Glow“-Kuppel nach oben */
.dp-footer-animated::before {
    content: "";
    position: absolute;
    left: -20%;
    top: -160px;
    width: 140%;
    height: 260px;
    background: radial-gradient(
        ellipse at top,
        rgba(0, 202, 255, 0.22),
        transparent 60%
    );
    opacity: 0.55;
    pointer-events: none;
}

/* Trust-Band oben im Footer */
.dp-footer-trust {
    padding: 20px 0;
    background: #0b0d10;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.dp-footer-trust-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.dp-trust-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: 14px;
}

.dp-trust-item i {
    font-size: 20px;
    margin-top: 2px;
    color: #00caff;
}

.dp-trust-item strong {
    display: block;
    margin-bottom: 2px;
}

.dp-trust-item small {
    opacity: 0.8;
}

/* TOP GRID (4 Spalten) */
.dp-footer-top-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 40px 20px 30px;
}

.dp-footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* Allgemeine Column-Styles */
.dp-footer-col h4 {
    font-size: 18px;
    margin-bottom: 12px;
}

.dp-footer-col p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.9;
}

/* Logo + Text in Spalte 1 */
.dp-footer-logo {
    height: 40px;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 8px rgba(0,0,0,0.6));
}

/* Links-Liste in Partner-Spalte */
.dp-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dp-footer-links li {
    margin-bottom: 10px;
}

.dp-footer-links a {
    color: #fff;
    opacity: 0.8;
    font-size: 14px;
}

.dp-footer-links a small {
    display: block;
    font-size: 12px;
    opacity: 0.8;
}

.dp-footer-links a:hover {
    opacity: 1;
}

/* Icons in den Info-/Kontakt-Zeilen */
.dp-footer-col i.fa-solid {
    margin-right: 8px;
    color: #00caff;
}

/* Kontakt-Links im Footer */
.dp-footer-col a {
    color: #fff;
    opacity: 0.9;
}

.dp-footer-col a:hover {
    opacity: 1;
}

/* Fade-In-Effekt für Spalten & Bottom-Bar (optional) */
.dp-footer-fade {
    opacity: 0;
    transform: translateY(8px);
    animation: footerFadeIn 0.7s ease-out forwards;
}

.dp-footer-fade:nth-child(2) { animation-delay: 0.08s; }
.dp-footer-fade:nth-child(3) { animation-delay: 0.16s; }
.dp-footer-fade:nth-child(4) { animation-delay: 0.24s; }

@keyframes footerFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Bottom-Bar */
.dp-footer-bottom {
    text-align: center;
    font-size: 13px;
    padding: 15px 20px 18px;
    background: #000;
    margin-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.dp-footer-bottom-copy {
    display: block;
    margin-bottom: 8px;
    opacity: 0.8;
}

/* Legal-Links unten */
.dp-footer-bottom-links {
    list-style: none;
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.dp-footer-bottom-links a {
    color: #ccc;
}

.dp-footer-bottom-links a:hover {
    color: #fff;
}

/* Kleinere Screens */
@media (max-width: 600px) {
    .dp-footer-top-wrapper {
        padding: 30px 16px 24px;
    }

    .dp-footer-bottom-copy {
        margin-bottom: 10px;
    }
}
