/* Ocultar el logo H del footer */
footer img[src*="fav.png"],
footer img[alt*="Hugo"],
footer .footer-logo {
    display: none !important;
}

/* Ocultar todo el texto "Made with ❤️ and Hugo Profile" */
footer p:last-of-type,
footer .powered-by,
footer p:contains("Made with"),
#footer p:last-child {
    display: none !important;
}

/* Ocultar cualquier mención a Hugo Profile en el footer */
footer a[href*="hugo-profile"],
footer a[href*="gurusabarish"] {
    display: none !important;
}

/* Ocultar el párrafo completo que contiene "Made with" */
footer div:has(a[href*="hugo-profile"]) {
    display: none !important;
}

/* Selectores más específicos para ocultar el texto Made with */
footer > div > div > div:last-child p:last-child,
footer .container p:last-of-type {
    display: none !important;
}

/* Agregar espacio superior a los iconos de redes sociales */
footer .socialNetworks,
footer .social-icons,
footer a[href*="github"],
footer a[href*="linkedin"],
footer a[href*="youtube"] {
    margin-top: 20px !important;
}

/* Agregar padding al footer completo */
footer {
    padding-bottom: 30px !important;
}

/* Ajustar tamaño de las imágenes de proyectos */
#projects .card-img-top,
#projects img {
    width: 100% !important;
    height: 250px !important;
    object-fit: cover !important;
    object-position: center !important;
}


