/* ==================================== */
/* ========= SECTION GENERAL =============== */
/* ==================================== */
section {
    /* padding: 3rem 0; */
    padding: 1rem 0;
    /* padding-bottom: 2rem 0; */
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.section-number {
    font-family: 'JetBrains Mono', monospace;
    color: var(--text-accent);
    font-size: 1.2rem;
    font-weight: 600;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
}

.section-line {
    flex: 1;
    height: 1px;
    background: var(--border);
}

/* ==================================== */
/* ========= HERO SECTION =============== */
/* ==================================== */
/* this section is what you should first see */
/* ie what the user sees when they first visit the page */
/* a call to action */

.hero {
    padding-top: 6rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-text h1 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--text-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text .subtitle {
    font-family: 'JetBrains Mono', monospace;
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* ==================================== */
/* ========= HERO SIMPLE SECTION =============== */
/* ==================================== */
/* this is the same as above, but has less */
/* of a gap at the top and is less strict */

.hero-simple {
    padding-top: 6rem;
    /* min-height: 70vh; */
    position: relative;
}

