/* ========================
   Footer
   ======================== */

#site-footer {
    background-color: var(--yellow);
    padding: 60px 0 0;
}

/* Top row: menu (left) + slogans/contact (right) */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

/* Footer nav */
.footer-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav ul li {
    margin: 0;
    padding: 0;
}

.footer-nav a {
    color: var(--black);
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

.footer-nav a:hover {
    opacity: 0.5;
}

/* Slogans (desktop only) */
.footer-slogans {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    text-align: right;
}

.footer-slogans span {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.6rem, 2.8vw, 3rem);
    font-weight: 800;
    color: var(--black);
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

/* Contact block */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: right;
}

.footer-contact a,
.footer-contact span,
.footer-contact p {
    color: var(--black);
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    margin: 0;
}

.footer-contact a:hover {
    text-decoration: underline;
}

/* Mobile contact: hidden on desktop */
.footer-contact--mobile {
    display: none;
}

/* Divider */
.footer-divider {
    border: none;
    border-top: 2px solid var(--black);
    margin: 48px 0 0;
}

/* Socket row */
.footer-socket {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 20px 0;
}

.footer-socket-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
}

.footer-socket-nav ul li {
    margin: 0;
    padding: 0;
}

.footer-socket-nav a {
    color: var(--black);
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.65;
    transition: opacity 0.2s ease;
}

.footer-socket-nav a:hover {
    opacity: 1;
}

/* Desktop contact in socket */
.footer-contact--desktop {
    display: flex;
    flex-direction: row;
    gap: 20px;
    text-align: right;
}

/* Mobile */
@media only screen and (max-width: 1023px) {
    #site-footer {
        padding: 48px 0 0;
    }

    /* Hide slogans on mobile */
    .footer-slogans {
        display: none;
    }

    /* Show contact next to footer menu on mobile */
    .footer-contact--mobile {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 6px;
        text-align: right;
    }

    /* Hide contact from socket on mobile */
    .footer-contact--desktop {
        display: none;
    }

    .footer-socket {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .footer-socket-nav ul {
        gap: 6px 16px;
    }
}
