@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Inter:wght@100..900&display=swap');

/* Font setup */
html {
    font-family: Inter, system-ui, sans-serif;
}

button {
    cursor: pointer;
}

:root {
    --color-primary: #a3cf6e;
    --color-primary-dark: #8cb35e;
    --color-background-light: #fdfdfb;
    --color-background-dark: #121212;
    --color-surface-light: #ffffff;
    --color-surface-dark: #1e1e1e;
    --color-soft-green: #f0f7e9;
    --color-text-main-light: #0f172a;
    --color-text-main-dark: #f8fafc;
    --color-text-muted-light: #475569;
    --color-text-muted-dark: #94a3b8;

    --font-display: "Bricolage Grotesque", sans-serif;
    --font-body: "Inter", sans-serif;

    --image-gradient-green: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    --image-gradient-button: linear-gradient(90deg, #a3cf6e 0%, #d4e590 100%);
    --image-mesh-glow: radial-gradient(circle at 50% -20%, rgba(163, 207, 110, 0.15), transparent 70%);
}

/* Button Gradient */
.btn-gradient {
    background-image: linear-gradient(to right, var(--color-primary), #4ade80);
    color: white;
    transition: all 0.3s ease;
    transform: translateY(0);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}

.btn-gradient:hover {
    background-image: linear-gradient(to right, var(--color-primary-dark), #22c55e);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.25);
}

/* Text Shadows */
.text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.text-shadow-lg {
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Hide Scrollbar */
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

/* Marquee Animation */
.animate-marquee {
    animation: marquee 35s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Entry Animations */
.animate-fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(20px);
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-500 {
    animation-delay: 0.5s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}