/* Custom CSS */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Custom transitions */
.transition {
    transition: all 0.3s ease;
}

/* Hero section overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1;
}