@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;450;500;550;600;650;700;750;800&display=swap');

html, body, main, header, footer, section, div, h1, h2, h3, h4, h5, h6, p, a, span,
button, .btn, input, select, textarea, option {
    font-family: "Nunito", sans-serif;
}


#footer {
    width: 100%;
    background: #1a1a2e;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    padding: 4rem 2rem;
    color: white;
}

/* ---- Component Elements ---- */
#footer h3 {
    font-size: 1.5rem;
    font-weight: 650;
    margin-bottom: 1.5rem;
    color: white;
    letter-spacing: -0.5px;
}

/* ---- Section Column 1: Contacts & Details ---- */
#footer .contact-us {
    display: flex;
    flex-direction: column;
}

#footer .contact-us .contacts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

#footer .contact-us .contact-details {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

#footer .contact-us .contact-details img {
    height: 1.8rem;
    width: 1.8rem;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
}

#footer .contact-us .contact {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

#footer .contact-us .contact-title {
    font-weight: 500;
    color: white;
    font-size: 1rem;
    margin: 0;
}

#footer .contact-us .contact h5 {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 350;
    margin: 0;
}

#footer .contact-us .contact h5 a {
    color: white;
    text-decoration: none;
}

/* ---- Section Column 2: Offerings & Quick Links ---- */
#footer .what-offer {
    display: flex;
    flex-direction: column;
}

#footer .what-offer .offers {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#footer .what-offer .offers a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 350;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

#footer .what-offer .offers a:hover {
    color: white;
    margin-left: 5px;
}

#footer .what-offer .offers a h4 {
    margin: 0;
    font-size: 0.95rem;
}

/* ---- Section Column 3: Platform & Social Channels ---- */
#footer .social-platforms {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

#footer .social-platforms .platform {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

#footer .social-platforms .platform:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

#footer .social-platforms .platform img {
    height: 1.5rem;
    width: 1.5rem;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
}

#footer .social-platforms .platform h4 {
    font-size: 1rem;
    font-weight: 300;
    color: white;
    margin: 0;
}

/* =========================================================================
   MEDIA QUERY RESPONSIVENESS ARCHITECTURE
   ========================================================================= */
@media (max-width: 630px) {
    #footer {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem 1.5rem;
    }
    
    #footer .social-platforms .platform {
        justify-content: flex-start;
    }
    
    #footer .contact-us .contacts {
        gap: 1.2rem;
    }
    
    #footer h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 400px) {
    #footer {
        padding: 2rem 1rem;
        gap: 1.5rem;
    }
    
    #footer h3 {
        font-size: 1.1rem;
    }
    
    #footer .what-offer .offers a {
        font-size: 0.9rem;
    }
}