/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    color-scheme: dark;
    --primary-color: #1b1c26;
    --secondary-color: #a3b5d3;
    --secondary-dark: #8498bd;
    --text-color: #d8d6db;
    --surface-color: #33374a;
    --surface-deep-color: #262836;
    --muted-color: #596479;
    --background-rgb: 27, 28, 38;
    --accent-rgb: 163, 181, 211;
    --accent-deep-rgb: 132, 152, 189;
    --text-rgb: 216, 214, 219;
    --surface-rgb: 51, 55, 74;
    --surface-deep-rgb: 38, 40, 54;
    --shadow-rgb: 10, 11, 18;
    --container-width: 1400px;
    --font-heading: 'Space Grotesk', 'Segoe UI', sans-serif;
    --font-body: 'DM Sans', 'Segoe UI', sans-serif;
}

/* Apply Space Grotesk to all headings */
h1,
h2,
h3,
h4,
.hero-title,
.section-title,
.about-name,
.experience-position,
.project-title,
.contact-info h3,
.cta-item h3,
.footer-logo span,
.modal-header h3 {
    font-family: var(--font-heading);
}

body {
    font-family: 'DM Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background-color: var(--primary-color);
    /* Optimize for smooth scrolling */
    will-change: scroll-position;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
