/* Shared styles across all pages */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

#vanta-background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Custom transition effects */
.transition-slow {
    transition: all 0.5s ease;
}

/* Custom shadows */
.shadow-strong {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Responsive tweaks */
@media (max-width: 640px) {
    .text-5xl {
        font-size: 2.5rem;
    }
    .text-6xl {
        font-size: 3rem;
    }
}