@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

body {
    font-family: 'Outfit', sans-serif;
    scroll-behavior: smooth;
    background-color: #f8fafc; /* Slate 50 */
    color: #0f172a; /* Slate 900 */
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.glass-nav {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

.text-gradient {
    background: linear-gradient(135deg, #22c55e 0%, #10b981 40%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
}

.bg-gradient-hover {
    background: linear-gradient(135deg, #16a34a 0%, #059669 100%);
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.animate-float {
    animation: float 5s ease-in-out infinite;
}

.animate-float-delayed {
    animation: float 6s ease-in-out 2.5s infinite;
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    70% { box-shadow: 0 0 0 25px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.pulse-button {
    animation: pulse-glow 2s infinite;
}

@keyframes drawBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.creative-border {
    position: relative;
    background-clip: padding-box;
    border: 2px solid transparent;
}
.creative-border::before {
    content: '';
    position: absolute;
    top: -2px; bottom: -2px;
    left: -2px; right: -2px;
    background: linear-gradient(90deg, #22c55e, #3b82f6, #22c55e);
    background-size: 200% auto;
    border-radius: inherit;
    z-index: -1;
    animation: drawBorder 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.creative-border:hover::before {
    opacity: 1;
}

/* 3D Hover Effects for Cards */
.hover-3d {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}
.hover-3d:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.08);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Blob Backgrounds */
.blob-1 {
    position: absolute;
    top: -10%;
    left: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(34,197,94,0.12) 0%, rgba(248,250,252,0) 70%);
    filter: blur(60px);
    z-index: -1;
    animation: float 10s ease-in-out infinite;
}

.blob-2 {
    position: absolute;
    top: 30%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(59,130,246,0.1) 0%, rgba(248,250,252,0) 70%);
    filter: blur(70px);
    z-index: -1;
    animation: float 12s ease-in-out infinite reverse;
}

.blob-3 {
    position: absolute;
    top: 85%;
    left: 20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(234,179,8,0.08) 0%, rgba(248,250,252,0) 70%);
    filter: blur(60px);
    z-index: -1;
    animation: float 8s ease-in-out infinite;
}
