/* Mobile Social Icons Fix */

/* Make sure social icons are visible and properly aligned on mobile */
@media (max-width: 991px) {
    .home .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .home-img {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .social {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        margin: 2rem auto 0;
    }
    
    .home-text {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .social a {
        transform: scale(0.9);
        margin: 0 5px;
    }
    
    .home .container .social {
        margin-top: 1.5rem;
        padding: 0;
    }
}

/* Fix for social icon bottom spacing */
@media (max-width: 768px) {
    .home .container .social {
        margin-bottom: 10px;
    }
}
