@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@700&display=swap');

.site-footer-custom {
    width: 100%;
    position: relative;
    background-color: black; /* Replace with your local image path if needed */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    margin-top: 0;
}

.footer-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 20px 20px; /* Top padding approximates the 50px top position */
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 187px;
    box-sizing: border-box;
}

.footer-social {
    display: flex;
    gap: 5px; /* Matches the spacing in your design */
    margin-bottom: 22px;
}

.footer-social-icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.footer-social-icon:hover {
    transform: translateY(-3px);
}

.footer-divider {
    width: 100%;
    height: 1px;
    background-color: #282828;
    margin-bottom: 28px;
}

.footer-copyright {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 14px;
    text-align: center;
    color: white;
}

@media (max-width: 768px) {
    .site-footer-custom {
        height: auto;
    }
    
    .footer-inner {
        padding: 30px 20px;
    }
    
    .footer-social {
        margin-bottom: 20px;
    }
    
    .footer-divider {
        margin-bottom: 20px;
    }
}