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

:root {
    --zippi-primary: #22c55e;
    --zippi-secondary: #0a0a0a;
    --zippi-accent: #ff6b35;
    --zippi-text: #1e293b;
    --zippi-bg: #f8fafc;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--zippi-text);
    background-color: var(--zippi-bg);
}

.font-brand {
    font-family: 'Questrial', sans-serif;
}

.font-display {
    font-family: 'Outfit', sans-serif;
}

/* Glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-dark {
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

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

/* Custom Illustrations using CSS shapes */
.illustration-container {
    position: relative;
    width: 300px;
    height: 300px;
}

.circle-blob {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--zippi-primary) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(40px);
}

/* Delivery Route Illustration */
.delivery-route {
    width: 100%;
    height: 100%;
    position: relative;
}

.route-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--zippi-primary);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--zippi-primary);
}

.route-line {
    position: absolute;
    background: linear-gradient(90deg, var(--zippi-primary) 0%, transparent 100%);
    height: 2px;
    width: 100px;
    transform-origin: left center;
}

/* Bento Grid Specifics */
.bento-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-card:hover {
    transform: translateY(-5px);
}

/* Smooth Scroll Padding */
html {
    scroll-padding-top: 80px;
}

/* Selection Color */
::selection {
    background: var(--zippi-primary);
    color: white;
}

/* Card Glass Effect */
.card-glass-effect {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
}

.card-glass-effect:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(34, 197, 94, 0.3);
    transform: translateY(-10px) rotateX(5deg);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
}