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


    /* CSS HEX https://coolors.co/palette/000000-14213d-fca311-e5e5e5-ffffff */
    --black: #000000ff;
    --prussian-blue: #14213dff;
    --orange: #fca311ff;
    --alabaster-grey: #e5e5e5ff;
    --white: #ffffffff;
}
body {
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.5;
    color: var(--black);
}



#header-wrapper {
    position: relative;
    width: 100%;
    height: 4rem;
    overflow: hidden;
    background: #000;
}

#header-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

#header-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /* Padding keeps the text from touching the very edge of your screen */
    box-sizing: border-box;
    padding: 0 3rem;

    /* ✨ Flexbox pushes the left and right groups to opposite sides */
    display: flex;
    justify-content: space-between;
    align-items: center;

    z-index: 2;

    /* Allows you to click "through" the empty space in the middle of the header */
    pointer-events: none;
}

.nav-left {
    color: #fff;
    font-family: sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    pointer-events: auto; /* Makes this part interactable again */
}

.nav-right {
    color: #fff;
    font-family: sans-serif;
    font-size: 1.1rem;
    pointer-events: auto; /* Crucial: Makes your links clickable! */
}

.nav-right a {
    color: #fff;
    text-decoration: none;
    padding: 0 0.5rem;
    transition: opacity 0.2s ease, text-decoration 0.2s ease;
}

.nav-right a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

footer {
    height: 4rem;
    background-color: var(--black);
    color: var(--white);
    padding: 1rem;
    text-align: center;
}

main {
    position: relative;
    min-height: calc(100vh - 8rem);

    padding-block: 2rem;
    padding-inline: 1rem;

    display: flex;
    flex-direction: column;
}

p {
    margin-bottom: 0.5rem;
    text-align: left;
}
