/* ============================================
   FOOTER (NEU)
   ============================================ */

.footer-new {
    background: #060606;
    border-top: 1px solid rgba(220, 65, 65, 0.2);
    padding: 4rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

.footer-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgb(220, 65, 65) 50%, transparent 100%);
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* Col 1 */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logos {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logos img {
    height: 50px;
    object-fit: contain;
}

.footer-brand-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.footer-brand-sub {
    font-family: 'Segoe UI', sans-serif;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.7;
    max-width: 320px;
    margin: 0;
}

.footer-event-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(220, 65, 65, 0.1);
    border: 1px solid rgba(220, 65, 65, 0.3);
    border-radius: 8px;
    padding: 0.6rem 1rem;
    font-family: 'Segoe UI', sans-serif;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    width: fit-content;
}

.footer-event-badge span.badge-dot {
    width: 8px;
    height: 8px;
    background: rgb(220, 65, 65);
    border-radius: 50%;
    animation: blink 1.5s infinite;
    flex-shrink: 0;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

/* Col 2 & 3 */
.footer-col h4 {
    font-family: 'Segoe UI', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgb(220, 65, 65);
    margin: 0 0 1.2rem;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-col ul li a,
.footer-col ul li span {
    font-family: 'Segoe UI', sans-serif;
    font-size: 0.92rem;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: rgb(220, 65, 65);
    transform: translateX(10px);
    transition: 500ms;
}

/* Bottom Bar */
.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    font-family: 'Segoe UI', sans-serif;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.25);
}

/* WEBAGENTUR CREDIT BADGE */
.footer-credit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 0.65rem 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-credit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(220, 65, 65, 0.08), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-credit:hover {
    border-color: rgba(220, 65, 65, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.footer-credit:hover::before {
    opacity: 1;
}

.footer-credit-label {
    font-family: 'Segoe UI', sans-serif;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.3);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-credit-name {
    font-family: 'Segoe UI', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    transition: color 0.3s;
}

.footer-credit:hover .footer-credit-name {
    color: rgb(220, 65, 65);
}

.footer-credit img {
    height: 28px;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
}

.footer-legal-links a {
    font-family: 'Segoe UI', sans-serif;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.25);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal-links a:hover {
    color: rgba(255,255,255,0.6);
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .footer-new {
        padding: 3rem 1rem 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-legal-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
}