/* Custom styles for geometric accents and animations */

html {
    scroll-behavior: smooth;
}

body {
    background-color: #2D1B33; /* Plum 900 */
}

/* Geometric shape decorations */
.deco-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

/* Smooth image loading */
img {
    transition: opacity 0.3s ease-in-out;
}

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

::-webkit-scrollbar-track {
    background: #2D1B33;
}

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

::-webkit-scrollbar-thumb:hover {
    background: #8B5299;
}

/* Animation classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile menu transitions */
#mobile-menu {
    box-shadow: -5px 0 15px rgba(0,0,0,0.5);
}
