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

:root {
    --bg-primary: 23 24 26;
    --bg-secondary: 34 36 40;
    --nav-border: 212 212 216;
    --font-color: 229 231 235;
    --text-hero: 241 120 39;
    --text-sub: 212 212 216;
    --button-bg: 255 255 255;
    --button-text: 23 24 26;
}

body {
    font-family: "Space Mono", monospace;
    line-height: 1.6;
    color: rgb(var(--font-color));
    background-color: rgb(var(--bg-primary));
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Syne", sans-serif;
}

/* Hero Section */
.hero-section {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    background-color: rgb(var(--bg-primary));
}

.nav-background {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(212, 212, 216, 0.2);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: rgb(var(--font-color));
    text-decoration: none;
}

.menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border: 2px solid rgb(var(--font-color));
    background: transparent;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
    display: block;
    position: absolute;
    width: 20px;
    height: 2px;
    background: rgb(var(--font-color));
    left: 50%;
    transform: translateX(-50%);
    transition: transform 0.3s ease, top 0.3s ease, opacity 0.3s ease;
}

.menu-toggle span {
    top: 50%;
}

.menu-toggle span::before {
    content: "";
    top: -7px;
}

.menu-toggle span::after {
    content: "";
    top: 7px;
}

.menu-toggle[aria-expanded="true"] span {
    background: transparent;
}

.menu-toggle[aria-expanded="true"] span::before {
    top: 0;
    transform: translateX(-50%) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span::after {
    top: 0;
    transform: translateX(-50%) rotate(-45deg);
}

.menu {
    display: flex;
    gap: 15px;
    list-style: none;
    justify-content: center;
}

.nav-link {
    color: rgb(var(--font-color));
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
    color: rgb(var(--text-hero));
}

.hero {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url("images/1801.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero {
    /* Image background with tinted overlay-start */
    position: relative;
    background-image: url("images/1801.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Image background with tinted overlay-end */
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;

    h1 {
        font-size: 6rem;
        text-transform: uppercase;
        color: rgb(var(--secondary-color));
        display: none;
    }

    .blotter-wrapper {
        position: relative;
        width: 100%;
        height: 145px;
    }

    #blotterTitle {
        position: absolute;
        top: -70px;
        left: 50%;
        transform: translateX(-50%);
        pointer-events: none;
    }

    p {
        font-size: 1.2rem;
    }

    .cta-button {
        display: inline-block;
        background-color: rgb(var(--button-bg));
        color: rgb(var(--button-text));
        font-weight: 700;
        border: none;
        border-radius: 5px;
        margin-block: 1em 0;
        outline: none;
        padding: 10px 20px;
        font-size: 1rem;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;

        &:hover {
            background-color: rgb(var(--text-hero));
            transition: all 0.3s ease;
        }
    }
}

.hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgb(0 0 0 / 0.80);
    }

    .hero-content {
        position: relative;
        z-index: 1;
    }