/* ===== ROOT VARIABLES ===== */
:root {
    --primary: #6ab04c;
    --secondary: #7ec760;
    --dark: #1a1a1a;
    --text: #1a1a1a;
    --light: #f5f5f5;
    --gray: #888;
    --accent: #5a9c3e;
}
 
/* ===== FOOTER MAIN - COMPACT ===== */
.footer-wrapper {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg) var(--spacing-md);
}
 
/* Entfernt - Animierte background elements */
 
/* ===== FOOTER CONTENT ===== */
.footer-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}
 
/* ===== FOOTER GRID - COMPACT ===== */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    align-items: flex-start;
}
 
/* ===== FOOTER SECTION 1: BRAND ===== */
.footer-brand {
    text-align: center;
}
 
.footer-logo {
    font-size: 2.4rem;
    font-weight: 900;
    margin-bottom: var(--spacing-xs);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    justify-content: center;
    color: white;
    letter-spacing: -1px;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.15));
    animation: logoGlow 3s ease-in-out infinite;
}
 
.footer-logo i {
    font-size: 2.2rem;
    color: white;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.2));
    animation: leafFloat 4s ease-in-out infinite;
    background: linear-gradient(135deg, #ffffff 0%, #e6f2ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
 
@keyframes leafFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-6px) rotate(3deg);
    }
    50% {
        transform: translateY(0) rotate(0deg);
    }
    75% {
        transform: translateY(-4px) rotate(-2deg);
    }
}
 
@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 2px 8px rgba(0,0,0,0.15));
        letter-spacing: -1px;
    }
    50% {
        filter: drop-shadow(0 4px 12px rgba(0,0,0,0.25));
        letter-spacing: -0.5px;
    }
}
 
.footer-description {
    font-size: var(--text-xs);
    line-height: 1.4;
    margin-bottom: var(--spacing-sm);
    opacity: 0.9;
    color: rgba(255,255,255,0.95);
}
 
.footer-highlight {
    color: #ffd700;
    font-weight: 700;
}
 
.footer-tagline {
    display: none;
}
 
/* Social Icons - Compact */
.social-links {
    display: flex;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}
 
.social-link {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
    text-decoration: none;
}
 
.social-link:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}
 
/* ===== FOOTER SECTION 2-4: COLUMNS ===== */
.footer-column {
    text-align: center;
}
 
.footer-column h3 {
    font-size: var(--text-base);
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    padding-bottom: var(--spacing-xs);
    border-bottom: 2px solid rgba(255,255,255,0.3);
    position: relative;
}
 
.footer-column h3::after {
    display: none;
}
 
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}
 
.footer-link {
    color: white;
    text-decoration: none;
    font-size: var(--text-xs);
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    transition: all 0.3s ease;
    justify-content: center;
    opacity: 0.9;
}
 
.footer-link i {
    font-size: var(--text-sm);
}
 
.footer-link:hover {
    opacity: 1;
    color: #ffd700;
}
 
.footer-link:hover i {
    transform: scale(1.1);
}
 
.footer-link::before {
    display: none;
}
 
/* ===== FOOTER CONTACT ===== */
.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}
 
.footer-contact-item {
    color: white;
    font-size: var(--text-xs);
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.6rem;
    justify-content: center;
    opacity: 0.9;
    transition: all 0.3s ease;
}
 
.footer-contact-item:hover {
    opacity: 1;
    color: #ffd700;
}
 
.footer-contact-item i {
    font-size: 1.4rem;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    flex-shrink: 0;
    margin-top: 2px;
}
 
.footer-contact-item:hover i {
    transform: scale(1.15);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}
 
/* ===== FOOTER BOTTOM - COMPACT ===== */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: var(--spacing-md);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
    text-align: center;
    position: relative;
    z-index: 2;
}
 
.footer-copyright {
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.8);
}
 
.footer-bottom-links {
    list-style: none;
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}
 
.footer-bottom-link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: var(--text-xs);
    transition: all 0.3s ease;
}
 
.footer-bottom-link:hover {
    color: white;
}
 
.footer-credit {
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: var(--text-xs);
}
 
/* ===== COMPACT ACCENT ELEMENTS ===== */
.footer-accent-line {
    height: 1px;
    background: rgba(255,255,255,0.2);
    margin: var(--spacing-md) 0;
}
 
.footer-accent-dot {
    display: none;
}
 
/* ===== RESPONSIVE DESIGN ===== */
 
/* === SMALL MOBILE (< 480px) === */
@media (max-width: 479px) {
    .footer-wrapper {
        padding: var(--spacing-md) var(--spacing-sm);
    }
   
    .footer-grid {
        gap: var(--spacing-sm);
    }
   
    .footer-logo {
        font-size: var(--text-base);
        gap: var(--spacing-xs);
    }
   
    .footer-description {
        font-size: 0.8rem;
    }
   
    .footer-column h3 {
        font-size: var(--text-sm);
        margin-bottom: var(--spacing-xs);
    }
   
    .footer-link {
        font-size: 0.75rem;
    }
   
    .social-link {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
   
    .footer-bottom {
        gap: var(--spacing-xs);
    }
}
 
/* === MOBILE (480px - 576px) === */
@media (min-width: 480px) and (max-width: 575px) {
    .footer-wrapper {
        padding: var(--spacing-md) var(--spacing-md);
    }
   
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
   
    .footer-bottom {
        gap: var(--spacing-sm);
    }
}
 
/* === TABLET (576px - 768px) === */
@media (min-width: 576px) and (max-width: 767px) {
    .footer-wrapper {
        padding: var(--spacing-lg) var(--spacing-md);
    }
   
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
   
    .footer-brand {
        grid-column: 1 / -1;
    }
   
    .footer-bottom {
        grid-template-columns: 1fr;
    }
}
 
/* === TABLET LANDSCAPE (768px - 1024px) === */
@media (min-width: 768px) and (max-width: 1023px) {
    .footer-wrapper {
        padding: var(--spacing-lg) var(--spacing-md);
    }
   
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
   
    .footer-brand {
        grid-column: 1 / -1;
    }
   
    .footer-bottom {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }
   
    .footer-credit {
        text-align: right;
    }
}
 
/* === DESKTOP (1024px+) === */
@media (min-width: 1024px) {
    .footer-wrapper {
        padding: var(--spacing-lg) var(--spacing-lg);
    }
   
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: var(--spacing-lg);
    }
   
    .footer-brand {
        text-align: left;
    }
   
    .footer-column {
        text-align: left;
    }
   
    .footer-column h3 {
        text-align: left;
    }
   
    .footer-links,
    .footer-contact-list {
        align-items: flex-start;
    }
   
    .footer-link,
    .footer-contact-item {
        justify-content: flex-start;
    }
   
    .social-links {
        justify-content: flex-start;
    }
   
    .footer-bottom {
        grid-template-columns: 2fr 1fr 1fr;
        text-align: left;
    }
   
    .footer-credit {
        text-align: right;
    }
}
 
/* === PRINT STYLES === */
@media print {
    .social-links {
        display: none;
    }
}