.footer {
    padding: 4rem;
    background: var(--light);
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: none;
    transition: all 0.8s ease;
    z-index: 5;
    width: 100%;
    margin-top: auto;
    display: block !important;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 1;
    visibility: visible;
}

.footer-text h2 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--dark);
}

.contact-btn {
    display: inline-block;
    padding: 1rem 2rem;
    border: 2px solid var(--dark);
    color: var(--dark);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: var(--dark);
    color: var(--light);
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 2px solid var(--dark);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--dark);
}

.github-icon,
.linkedin-icon {
    width: 24px;
    height: 24px;
    fill: var(--dark);
    transition: fill 0.3s ease;
}

.social-link:hover .github-icon,
.social-link:hover .linkedin-icon {
    fill: var(--light);
}

/* Mobile responsive styles */
@media screen and (max-width: 768px) {
    .footer {
        padding: 3rem 2rem;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }

    .footer-text h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .contact-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .social-links {
        justify-content: center;
        gap: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .footer-text h2 {
        font-size: 2rem;
    }
} 