/* Custom Styles & Animations */
html {
    scroll-behavior: smooth;
}

body {
    background-color: #500724; /* Burgundy 900 */
}

/* Geometric Shapes */
.shape-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(190, 24, 93, 0.4), rgba(148, 163, 184, 0.1));
    z-index: -1;
}

/* Navbar Glass Effect */
.glass-nav {
    background: rgba(80, 7, 36, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Text Gradient */
.text-gradient {
    background: linear-gradient(90deg, #FBCFE8 0%, #FDA4AF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

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

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

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #be185d;
}
