/* Custom Image overlays */
html.dark .hero-overlay {
    background: linear-gradient(to right, rgba(0,0,0,0.9) 30%, rgba(0,0,0,0.5) 75%, rgba(0,0,0,0.1));
}
html:not(.dark) .hero-overlay {
    background: linear-gradient(to right, rgba(255,255,255,0.95) 30%, rgba(255,255,255,0.75) 75%, rgba(255,255,255,0.3));
}

html.dark .about-overlay {
    background: linear-gradient(to right, rgba(0,0,0,0.95) 40%, rgba(0,0,0,0.6) 80%, rgba(0,0,0,0.3));
}
html:not(.dark) .about-overlay {
    background: linear-gradient(to right, rgba(255,255,255,0.95) 40%, rgba(255,255,255,0.7) 80%, rgba(255,255,255,0.3));
}

/* For angled image cutouts like in the screenshots */
.profile-angle-right {
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
}

/* Continuous slow zoom for the hero background */
@keyframes slowZoom {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.animate-bg-zoom {
    animation: slowZoom 30s ease-in-out infinite;
}
