
/* Google Fonts */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

/* CSS Custom Properties */

:root {
    --font-main: 'Poppins', sans-serif;
    --color-primary: #0a0a1a;
    --color-accent: #6c63ff;
    --color-light: #f8f9fa;
}

/* Base */

body {
    font-family: var(--font-main);
    font-weight: 400;
    color: #333;
    padding-top: 70px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-main);
    font-weight: 700;
}

/* Media Queries */

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }
}

/* Hero */

.hero-section {
    background-color: var(--color-primary);
    min-height: 100vh;
}

.profile-img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border: 4px solid var(--color-accent);
}

/* Scroll offset for fixed navbar */

section {
    scroll-margin-top: 70px;
}

/* Smooth Scroll */

html {
    scroll-behavior: smooth;
}