/* Custom Styles for The Sweet Fix */
html {
    scroll-behavior: smooth;
}

body {
    background-color: #020617;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #0f172a;
}
::-webkit-scrollbar-thumb {
    background: #34d399;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #10b981;
}

/* Animation Delays */
.animation-delay-2000 {
    animation-delay: 2s;
}
.animation-delay-4000 {
    animation-delay: 4s;
}

/* Geometric Decorations */
.geometric-shape-1 {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(94, 234, 212, 0.2);
    transform: rotate(45deg);
    z-index: 0;
}

.geometric-shape-2 {
    position: absolute;
    bottom: 15%;
    left: 5%;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(94, 234, 212, 0.1), transparent);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    z-index: 0;
}
