@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;800&family=Merriweather:wght@700&display=swap');

/* Basic Typography */
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.serif {
    font-family: 'Merriweather', serif;
}

/* Custom Navigation Button */
.nav-btn {
    background-color: #4f46e5;
    color: white;
    padding: 0.625rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 10px 15px -3px rgba(165, 180, 252, 0.4);
    transition: all 0.2s;
}

.nav-btn:hover {
    background-color: #4338ca;
    transform: translateY(-1px);
}

/* Hero Section Branding */
.hero-gradient {
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.95)), 
                url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
}

.stat-badge {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
}

/* Layout Components */
.art-placeholder {
    border: 2px dashed #cbd5e1;
    background-color: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16 / 9;
}

.info-card {
    background-color: #f8fafc;
    padding: 1rem;
    border-radius: 0.75rem;
    border: 1px solid #f1f5f9;
}

.commitment-card {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}



