/* Custom styles and overrides */
html {
    scroll-behavior: smooth;
}

body {
    background-color: #340f1c; /* plum-950 */
}

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

::-webkit-scrollbar-track {
    background: #340f1c;
}

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

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

/* Geometric Shape Utilities */
.shape-triangle {
    width: 0; 
    height: 0; 
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 100px solid #fbbf24;
}

/* Animation Utilities */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

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

/* Ensure text contrast is readable */
.text-plum-200 {
    color: #f5d0d7;
}
