/* ==========================================================================
   Footer: Orange High-Contrast
   ========================================================================== */

.footer-break {
    background-color: #000;
    line-height: 0;
    margin-top: -1px;
    position: relative;
    z-index: 60;
}

.footer-break svg {
    display: block;
    width: 100%;
    height: auto;
}

.main-footer {
    background-color: #ff503c;
    color: #000;
    padding: 80px 0 40px;
    font-family: 'Outfit', sans-serif;
    position: relative;
    z-index: 100;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -2px;
}

.footer-socials {
    display: flex;
    gap: 30px;
}

.social-link {
    color: #000;
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 0.9rem;
    position: relative;
    transition: opacity 0.3s ease;
}

.social-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #000;
    transition: width 0.3s ease;
}

.social-link:hover::after {
    width: 100%;
}

.footer-bottom {
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    opacity: 0.7;
}

.footer-credit a {
    color: #000;
    text-decoration: none;
    font-weight: 800;
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
