/* ===================================
   FOOTER - CSS Module
   Extracted from index.html
   =================================== */

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, var(--dark-green) 0%, #2c3e2d 100%);
    color: var(--pure-white);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(175, 207, 186, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(220, 205, 220, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.footer-section h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--sage-green);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    text-transform: lowercase;
    font-variant: small-caps;
    letter-spacing: 2px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: var(--text-sm);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--sage-green);
    text-shadow: 0 1px 5px rgba(175, 207, 186, 0.5);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sage-green);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(175, 207, 186, 0.2);
}

.social-link:hover {
    background: var(--sage-green);
    color: var(--dark-green);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 20px rgba(175, 207, 186, 0.4);
    border-color: var(--sage-green);
}

.social-link svg {
    transition: transform 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(175, 207, 186, 0.2);
    padding-top: 2rem;
    padding-bottom: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    text-align: center;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: var(--text-sm);
}

.footer-links a:hover {
    color: var(--sage-green);
}

.footer-separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: var(--text-sm);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
    }

    .footer-section a,
    .footer-section p {
        font-size: 0.9rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-separator {
        display: none;
    }
    
    /* Fix logo visibility on mobile */
    .footer-section img {
        filter: brightness(0) invert(1) contrast(1.5) !important;
        max-width: 120px !important;
        opacity: 1 !important;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Desktop Medium */
@media (min-width: 481px) and (max-width: 767px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

