/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-body);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--text-primary);
}

h1 {
    font-size: 3rem;
    line-height: 1.0;
    letter-spacing: 0.01em;
    color: var(--color-prime-blue);
    font-weight: 800;
}

h2 {
    font-size: 2rem;
    line-height: 1.15;
    letter-spacing: 0.005em;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.25;
}

p {
    margin-bottom: var(--space-4);
}

a {
    color: var(--color-prime-blue);
    text-decoration: none;
    transition: color var(--trans-fast);
}

a:hover {
    color: var(--color-prime-blue-hover);
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-5);
    width: 100%;
}

.text-center {
    text-align: center;
}

.hidden {
    display: none !important;
}

.fade-in {
    animation: fadeIn 0.4s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}