/* Footer Styles */
.footer {
    background: white;
    margin-top: auto;
    width: 100%;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
}

.footer-content {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    padding: 2rem 0;
    border-bottom: 1px solid #eee;
    width: 100%;
}

.footer-link {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-link i {
    font-size: 1.1rem;
    color: #1a237e;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #1a237e;
}

.footer-link:hover i {
    transform: translateY(-2px);
}

.footer-credits {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: #666;
    font-size: 0.95rem;
    padding: 2rem 0;
    width: 100%;
}

.footer-special-link {
    color: #1a237e;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-special-link:hover {
    color: #0d47a1;
    text-decoration: underline;
}

.donate-button {
    background: #1a237e;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 35, 126, 0.2);
}

.donate-button:hover {
    background: #0d47a1;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 35, 126, 0.3);
    color: white;
    text-decoration: none;
}

.donate-button i {
    font-size: 1.1rem;
}

.disclaimer-text {
    color: #666;
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.6;
    margin-top: 0.5rem;
    opacity: 0.9;
    padding: 0 1rem;
}

@media (max-width: 768px) {
    .footer-nav {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem 0;
    }

    .footer-credits {
        padding: 1.5rem 0;
    }

    .disclaimer-text {
        font-size: 0.85rem;
    }
} 