/* Global Footer Styles for Healing Happens Here Campaign */

.site-footer {
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    color: var(--color-text, #d0d0d0);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(8, 146, 208, 0.2);
}

/* Footer Tagline */
.footer-tagline-section {
    text-align: center;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(8, 146, 208, 0.1);
    margin-bottom: 3rem;
}

.footer-tagline {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    color: #0892D0;
    margin: 0;
    text-transform: uppercase;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .footer-tagline {
        font-size: 2.5rem;
    }
}

/* Footer Main Content */
.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 2rem;
    }
}

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

.footer-column h3 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Footer Logo Section */
.footer-logo-section {
    margin-bottom: 2rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

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

.footer-org-name {
    font-size: 0.9rem;
    color: #b0b0b0;
    line-height: 1.6;
    margin: 0;
}

/* Footer Lists */
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 1rem;
}

.footer-list a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-list a:hover {
    color: #0892D0;
}

.footer-list a i {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Social Links */
.footer-social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-social-link {
    width: 44px;
    height: 44px;
    background: rgba(8, 146, 208, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0892D0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.footer-social-link:hover {
    background: #0892D0;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Campaign HQ */
.footer-hq {
    margin-top: 1rem;
}

.footer-hq-label {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-hq-address {
    color: #b0b0b0;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Fiscal Sponsor Section */
.footer-fiscal {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 30px;
}

.footer-fiscal-sponsor {
    background: rgba(8, 146, 208, 0.05);
    border: 1px solid rgba(8, 146, 208, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin: 3rem 0;
}

.footer-fiscal-sponsor h3 {
    color: #0892D0;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-fiscal-text {
    color: #d0d0d0;
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

.footer-fiscal-text strong {
    color: #ffffff;
    font-weight: 600;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(8, 146, 208, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-copyright {
    color: #b0b0b0;
    font-size: 0.85rem;
    margin: 0;
}

.footer-campaign-name {
    color: #0892D0;
    font-weight: 600;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .site-footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-tagline-section {
        padding: 2rem 0;
    }

    .footer-tagline {
        font-size: 1.5rem;
    }

    .footer-grid {
        gap: 2.5rem;
    }

    .footer-fiscal {
        display: flex;
        flex-direction: column;
    }

    .footer-fiscal-sponsor {
        padding: 1.5rem;
        margin: 0;
    }
}

/* Print Styles */
@media print {
    .site-footer {
        background: white;
        color: black;
        border-top: 2px solid black;
    }

    .footer-social-links,
    .footer-list a[href^="http"] {
        display: none;
    }
}
