/* Custom Geometric Animations & Utilities */

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Geometric Shapes for Hero */
.hero-shape {
    position: absolute;
    z-index: 0;
    opacity: 0.6;
}

/* Reveal Animation Classes (JS handled) */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Geometric Background Pattern */
.pattern-bg {
    background-image: radial-gradient(#9f1239 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #fdf2f2;
}

::-webkit-scrollbar-thumb {
    background: #7f1d1d;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #450a0a;
}
