/* Footer layout */
.footer {
    background-color: var(--white);
    text-align: center;
}

/* Footer Main Section */
.footer-main {
    background-color: var(--white);
    padding: 3rem 2rem 2rem;
}

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

.logo-image-footer {
    height: 120px;
    width: auto;
}

/* Social icons in footer */
.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--darkblue);
    color: var(--white);
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--orange);
}

.footer-social svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Footer Links */
.footer-links {
    margin-bottom: 2rem;
}

.footer-links-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-links-row:last-child {
    margin-bottom: 0;
}

.footer-links a {
    color: var(--darkblue);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--orange);
    text-decoration: underline;
}

/* Footer Bottom Section */
.footer-bottom {
    background-color: var(--darkblue);
    color: var(--white);
    padding: 2rem;
}

.footer-contact {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.contact-item svg {
    color: var(--orange);
}

.footer-copyright {
    text-align: center;
    font-size: 0.85rem;
    color: #cccccc;
}

.footer-copyright a {
    color: var(--white);
    text-decoration: none;
}

.footer-copyright a:hover {
    color: var(--orange);
    text-decoration: underline;
}

.experience-list {
    display: inline-block;
    text-align: left;
    max-width: 600px;
    margin: 1rem auto;
    padding-left: 1.5rem;
    line-height: 1.4;
}

.experience-list li {
    margin-bottom: 0.5rem;
    padding-left: 0.25rem;
}

.footnote {
    max-width: 600px;
    margin: 1rem auto;
    font-style: italic;
    margin-bottom: 3rem;
}

/* Mobile styles */
@media (max-width: 768px) {
    .footer-main {
        padding: 2rem 1rem 1.5rem;
    }
    
    .footer-links-row {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-contact {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-social {
        gap: 0.75rem;
    }
    
    .footer-social a {
        width: 36px;
        height: 36px;
    }
    
    .footer-social svg {
        width: 18px;
        height: 18px;
    }
    
    .footer-copyright {
        font-size: 0.8rem;
    }
    
    .logo-image-footer {
        height: 100px;
    }
}
