/* ================================
   Custom Footer
   ================================ */

.sabaya-footer {
    width: 100%;
    background: #f7f7f7;
    border-top: 1px solid #eeeeee;
    padding-top: 80px;
    position: relative;
    overflow: hidden; /* Clips the bottom half of the huge logo */
}

.sabaya-footer__inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sabaya-footer__socials {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.sabaya-footer__socials a {
    font-family: 'SweetSansPro-Regular', sans-serif !important;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #191938;
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
    display: inline-block;
}

.sabaya-footer__socials a:hover {
    color: #191901;
    transform: translateY(-2px);
}

.sabaya-footer__bottom {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    height: 120px; /* Constrains height to help clip the text */
}

.sabaya-footer__logo-bg {
    font-family: 'TAN-Pearl-Regular', serif !important;
    font-size: 18vw; /* Huge responsive size */
    line-height: 1;
    color: #191938;
    letter-spacing: 0.15em;
    position: absolute;
    bottom: -10vw; /* Sunk halfway */
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    text-align: center;
}

/* Footer Navigation Menu */
.sabaya-footer__navigation {
    margin-bottom: 50px;
    width: 100%;
}

.sabaya-footer__menu {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
    padding-bottom: 50px;
}

.sabaya-footer__menu li {
    margin: 0 !important;
    padding: 0 !important;
}

.sabaya-footer__menu a {
    font-family: 'SweetSansPro-Regular', sans-serif !important;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #191938;
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
    display: inline-block;
}

.sabaya-footer__menu a:hover {
    color: #191903;
    transform: translateY(-2px);
}

/* Mobile responsive adjustments for the footer */
@media (max-width: 768px) {
    .sabaya-footer {
        padding-top: 60px;
    }
    
    .sabaya-footer__socials {
        gap: 24px;
        margin-bottom: 40px;
    }
    
    .sabaya-footer__socials a {
        font-size: 11px;
    }
    
    .sabaya-footer__bottom {
        height: 80px;
    }
    
    .sabaya-footer__logo-bg {
        font-size: 20vw;
        bottom: -10vw;
    }

    .sabaya-footer__navigation {
        margin-bottom: 30px;
    }

    .sabaya-footer__menu {
        gap: 16px;
    }

    .sabaya-footer__menu a {
        font-size: 10px;
    }
}
