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

:root {
    --font-outfit: 'Outfit', sans-serif;
    --font-inter: 'Inter', sans-serif;
}

body {
    font-family: var(--font-inter);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-outfit);
}

/* Custom animations */
@keyframes float-slow {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(1deg);
    }
}

@keyframes float-medium {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(-1deg);
    }
}

@keyframes float-fast {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes pulse-soft {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(26, 179, 148, 0.4);
    }
    50% {
        box-shadow: 0 0 20px 8px rgba(26, 179, 148, 0.2);
    }
}

.animate-float-1 {
    animation: float-slow 6s ease-in-out infinite;
}

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

.animate-float-3 {
    animation: float-fast 4s ease-in-out infinite;
}

.animate-pulse-soft {
    animation: pulse-soft 3s infinite;
}

/* Glassmorphism card utility */
.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.glass-nav {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Modern Gradient Text */
.text-gradient-primary {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-accent {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Form inputs styling */
.custom-input {
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.custom-input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    outline: none;
}
