@import url('https://fonts.googleapis.com/css2?family=Michroma&family=Orbitron:wght@700;800;900&family=Quantico:wght@400;700&display=swap');
@import "./base.css";

:root {
    --primary-color: rgb(146, 179, 255);
    --secondary-color: rgb(85, 2, 78);
    --tertiary-color: rgb(255, 167, 95);
    --card-color: rgb(79, 47, 39);
    --text-color: #ffffff;
    --text-light-color: #d6d3d3e7;
    --background-color: rgb(17, 5, 19);
    --font-family-primary: 'quantico', sans-serif;
    --font-family-secondary: 'orbitron', sans-serif;
    --font-family-tertiary: 'michroma', sans-serif;
    --h1-size: 2.9rem;
    --h2-size: 2.45rem;
    --h3-size: 1.85rem;
    --h4-size: 1.25rem;
    --paragraf-size: 1rem;
}

html {
    scroll-behavior: smooth;
}

section[id] {
    scroll-margin-top: 120px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--background-color);
    overflow-x: hidden;
    position: relative;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* gap: 100px; */
}

#bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

/* Scroll Reveal Animations */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}