/*!
 * Copyright (c) 2026 Daki.cc — Niclas Specht. All rights reserved.
 *
 * Proprietary and confidential. Unauthorized copying, distribution,
 * modification, or use of this file or its contents, in whole or in
 * part, via any medium, is strictly prohibited.
 */

.daki-footer {
    background: #111111;
    color: #fff;
    font-family: 'Work Sans', sans-serif;
    position: relative;
    margin-top: 80px;
}
.daki-footer::before {
    content: '';
    display: block;
    height: 1px;
    background:
        linear-gradient(90deg, transparent 0%, rgba(164,50,192,0.30) 22%, rgba(196,38,211,0.55) 50%, rgba(164,50,192,0.30) 78%, transparent 100%),
        linear-gradient(90deg, transparent, rgba(244,168,255,0.95), transparent);
    background-size: 100% 100%, 24% 100%;
    background-repeat: no-repeat;
    background-position: 0 0, -30% 0;
    box-shadow: 0 0 10px rgba(196, 38, 211, 0.30);
    animation: daki-divider-sweep 6s ease-in-out infinite;
}
@keyframes daki-divider-sweep {
    0%   { background-position: 0 0, -30% 0; }
    100% { background-position: 0 0, 130% 0; }
}
@media (prefers-reduced-motion: reduce) {
    .daki-footer::before { animation: none; }
}

.daki-footer-main {
    padding-top: 60px;
    padding-bottom: 52px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1.25fr;
    gap: 36px;
}

.daki-footer-brand h3 {
    font-size: 17px;
    font-weight: 400;
    color: #fff;
    margin: 0 0 10px 0;
}
.daki-footer-brand h3 strong {
    font-weight: 700;
}
.daki-footer-brand p {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    margin: 0 0 16px 0;
}
.daki-footer-brand-meta {
    font-size: 13.5px;
    color: rgba(255,255,255,0.78);
    line-height: 1.85;
}

.daki-footer-col h4 {
    font-size: 13.5px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px 0;
    letter-spacing: 0.01em;
}
.daki-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.daki-footer-col ul li {
    margin-bottom: 11px;
}
.daki-footer-col ul li a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.88);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    transition: color 0.15s ease;
}
.daki-footer-col ul li a:hover {
    color: #fff;
}
.daki-footer-col ul li a svg {
    flex-shrink: 0;
    color: rgba(255,255,255,0.65);
    transition: color 0.15s ease;
}
.daki-footer-col ul li a:hover svg {
    color: #fff;
}

.daki-footer-bottom {
    padding-top: 20px;
    padding-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid rgba(255,255,255,0.07);
}
.daki-footer-bottom-left {
    flex: 1;
    font-size: 13px;
    color: rgba(255,255,255,0.88);
}
.daki-footer-quote {
    flex: 0 0 240px;
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    cursor: pointer;
    user-select: none;
    justify-content: flex-end;
    transition: color 0.15s ease;
    overflow: hidden;
}
.daki-footer-quote:hover {
    color: rgba(255,255,255,0.95);
}
.daki-footer-quote svg {
    flex-shrink: 0;
}
.daki-footer-quote-text {
    font-style: italic;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: opacity 0.3s ease;
}
.daki-footer-quote-text.fade {
    opacity: 0;
}

@media (max-width: 1280px) {
    .daki-footer-main {
        gap: 28px;
    }
}
@media (max-width: 1024px) {
    .daki-footer {
        margin-top: 60px;
    }
    .daki-footer-main {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
        padding-top: 48px;
        padding-bottom: 40px;
    }
    .daki-footer-brand {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 0 40px;
        padding-top: 8px;
        border-top: 1px solid rgba(255,255,255,0.06);
    }
    .daki-footer-brand h3 {
        grid-column: 1;
        grid-row: 1;
    }
    .daki-footer-brand p {
        grid-column: 1;
        grid-row: 2;
        max-width: 340px;
        margin-bottom: 0;
    }
    .daki-footer-brand-meta {
        grid-column: 2;
        grid-row: 1 / 3;
        align-self: center;
    }
}
@media (max-width: 768px) {
    .daki-footer {
        margin-top: 48px;
    }
    .daki-footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 32px;
        padding-top: 40px;
        padding-bottom: 32px;
    }
    .daki-footer-brand {
        grid-column: 1 / -1;
        display: block;
    }
    .daki-footer-brand p {
        max-width: 100%;
        margin-bottom: 10px;
    }
}
@media (max-width: 480px) {
    .daki-footer {
        margin-top: 40px;
    }
    .daki-footer-main {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-top: 32px;
        padding-bottom: 24px;
    }
    .daki-footer-col ul li {
        margin-bottom: 10px;
    }
    .daki-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding-bottom: 24px;
    }
    .daki-footer-quote {
        flex: 0 0 auto;
        width: 100%;
        justify-content: flex-start;
    }
}
