/* Global styles and base configuration */
@font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter-200.woff2') format('woff2');
    font-weight: 200;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter-300.woff2') format('woff2');
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter-400.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #09090b;
    color: #f4f4f5;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 300;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 1.2s ease-in;
}

/* Utilities */
.border-line {
    border-color: rgba(255, 255, 255, 0.12);
}

/* Main Content */
main {
    padding-top: 5rem;
}

section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 0;
}

@media (min-width: 1024px) {
    section {
        padding: 8rem 0;
    }
}
