/**
 * Footer SafeSante Styles
 * Extracted from footer-safesante.php
 */

/* Footer Styles */
.site-footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 50px;
}

/* Footer Brand */
.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
}

.footer-contact-info {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-contact-info p {
    margin-bottom: 5px;
}

.footer-contact-info a {
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact-info a:hover {
    text-decoration: underline;
}

/* Footer Links */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    margin-top: 0;
}

.footer-bottom-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.footer-legal-links {
    display: flex;
    gap: 25px;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--white);
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-social-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-social-icons {
    display: flex;
    gap: 10px;
}

.footer-social-icons a {
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    color: var(--accent-color);
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-right {
        flex-direction: column;
        gap: 15px;
    }

    .footer-legal-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer-logo-img {
        height: 40px;
    }

    .footer-copyright {
        font-size: 0.75rem;
    }
}
