/* Custom styles to complement Tailwind */

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

/* Geometric Blobs for background */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.5;
}

.blob-1 {
    top: 10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: #ccfbf1; /* teal-100 */
    animation: float 10s ease-in-out infinite;
}

.blob-2 {
    top: 40%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: #e2e8f0; /* slate-200 */
    animation: float 12s ease-in-out infinite reverse;
}

.blob-3 {
    bottom: 10%;
    left: 20%;
    width: 300px;
    height: 300px;
    background: #99f6e4; /* teal-200 */
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -20px); }
}

/* Clip path for buttons */
.clip-path-slant {
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
}

/* Navbar scroll effect */
.navbar-scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/* Animation delays */
.animation-delay-2000 {
    animation-delay: 2s;
}

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

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #0f766e;
}
