/* Main Footer Styles */
footer-container {
    background-color: white;
    z-index: 900;
}

.main-footer {
    background-color: white;
    padding: 2rem 0;
    width: 100%;
    position: relative;
    z-index: 900;
}

.main-footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    pointer-events: none;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.foundation-info,
.foundation-mission,
.foundation-contact {
    flex: 1;
}

.foundation-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.foundation-mission h4,
.foundation-contact h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.foundation-info p,
.foundation-mission p,
.foundation-contact p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.foundation-contact i {
    color: var(--primary-color);
    width: 20px;
    margin-right: 0.5rem;
}

/* Developer Footer Styles */
.dev-footer {
    background-color: #000;
    padding: 0.1rem;
    text-align: right;
    width: 100%;
}

.dev-footer p {
    color: var(--primary-color);
    margin: 0;
    font-size: 0.6rem;
    padding-right: 1.5rem;
}

.dev-footer a {
    color: var(--primary-color);
    text-decoration: none;
}

.dev-footer a:hover {
    opacity: 0.8;
}

.heart {
    color: var(--primary-color);
    display: inline-block;
    margin: 0 0.1rem;
    animation: heartbeat 1.5s ease infinite;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    30% { transform: scale(1.1); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .foundation-contact i {
        width: auto;
        margin-right: 0.5rem;
    }
}