/* Custom styles for geometric, vibrant design */
html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Geometric decorative shapes */
.geometric-shape {
    position: absolute;
    z-index: 0;
}

.shape-circle {
    border-radius: 50%;
}

.shape-square {
    transform: rotate(15deg);
}

/* Hover animations */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 12px 12px 0px 0px rgba(15, 23, 42, 0.2);
}

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

::-webkit-scrollbar-track {
    background: #0F172A;
}

::-webkit-scrollbar-thumb {
    background: #34D399;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #10B981;
}

/* Mobile menu animations */
.mobile-link {
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-menu.active .mobile-link {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu.active .mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-link:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-link:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-link:nth-child(4) { transition-delay: 0.4s; }

/* Button press effect */
.btn-press:active {
    transform: translate(4px, 4px);
    box-shadow: 4px 4px 0px 0px rgba(0,0,0,1);
}
