/* --- SEKTION 10: FOOTER --- */

.footer-section {
    display: flex;
    flex-direction: column;
    
    /* ÄNDERUNG: Startet oben, damit wir es manuell schieben können */
    justify-content: flex-start; 
    align-items: center;
    
    /* ÄNDERUNG: HIER IST DEIN REGLER */
    /* Erhöhe diesen Wert (z.B. 20vh, 25vh), um es weiter runter zu schieben */
    padding-top: 35vh; 
    
    padding-left: 40px;
    padding-right: 40px;
    
    background: transparent;
    min-height: 100vh;
    position: relative;
    box-sizing: border-box; /* Wichtig, damit Padding nicht die Höhe sprengt */
}

/* Hauptcontainer (Split Layout) */
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 1200px;
    gap: 60px;
    
    /* Keine Flex-Spielereien mehr, Positionierung kommt durch die Sektion */
    flex-grow: 0;
}
/* --- LINKE SEITE --- */
.footer-brand-col {
    flex: 1;
    max-width: 350px;
}

/* Logo (Slightly larger than navbar) */
.footer-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
    margin-bottom: 24px;
}
.footer-logo .logo-icon {
    width: 40px; 
    height: 40px;
    /* CSS Variablen sollten von style.css geerbt werden, 
       sonst hier fest: background-color: #f97316 */
    background-color: var(--primary-orange); 
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0c0b09;
}
.footer-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 800;
}

/* Slogan */
.footer-slogan {
    color: #9ca3af;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 32px;
}

/* Social Buttons */
.social-buttons {
    display: flex;
    gap: 16px;
}

.social-btn {
    width: 42px;
    height: 42px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a1a1aa;
    transition: all 0.2s;
}

.social-btn:hover {
    background-color: var(--primary-orange);
    color: #0c0b09;
    border-color: var(--primary-orange);
    transform: translateY(-3px);
}

/* --- RECHTE SEITE (GRID CARDS) --- */
.footer-links-col {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Die Link-Karten */
.footer-card {
    background-color: #0c0b09;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s, transform 0.2s;
}

.footer-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Titel in der Karte */
.f-title {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Liste */
.f-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.f-list li {
    margin-bottom: 12px;
}
.f-list li:last-child {
    margin-bottom: 0;
}

.f-list a {
    text-decoration: none;
    color: #9ca3af;
    font-size: 0.9rem;
    transition: color 0.2s, padding-left 0.2s;
}

.f-list a:hover {
    color: var(--primary-orange);
    padding-left: 5px; /* Kleiner Slide-Effekt */
}

/* --- COPYRIGHT (UNTEN) --- */
.footer-bottom {
    width: 100%;
    text-align: center;
    padding: 30px 0;
    
    /* WICHTIG: Das drückt das Copyright immer ganz nach unten an den Rand */
    margin-top: auto; 
    
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    color: #52525b;
    font-size: 0.85rem;
}
/* Responsive */
@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }
    .footer-brand-col {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-links-col {
        width: 100%;
        grid-template-columns: repeat(2, 1fr); /* 2 Spalten auf Tablet */
    }
}

@media (max-width: 600px) {
    .footer-links-col {
        grid-template-columns: 1fr; /* 1 Spalte auf Handy */
    }
    .footer-logo {
        flex-direction: column;
    }
}