/* ==========================================================================
   Hero Section
   ========================================================================== */
.section-container {
    max-height: fit-content;
}

.section-content {
    max-width: 75%;
}

.hero {
    min-height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: nowrap;
    align-content: center;
    padding-top: 8rem;
}

.hero-holder-box {
    max-width: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-container-column {
    padding: 1rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: space-around;
}

.hero-container-row {
    padding: 0 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: space-around;
}

.hero-content {
    padding: 0.2rem;
}

.hero-title {
    font-size: 7.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 5rem;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.hero-subtitle {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 2rem;
    font-family: 'Inter', sans-serif;
}

.hero-blurb {
    font-size: 1.5rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 2rem;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

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

.section-blurb {
    font-size: 1rem;
    font-weight: 400;
}

/* ==========================================================================
   Media Queries
   ========================================================================== */

/* Large Screens */
@media screen and (max-width: 1440px) {
    .hero-container-column {
        margin-top: 2rem;
    }

    .hero-container-row {
        width: 70%;
    }

    .hero-title {
        margin-bottom: 0rem;
    }

    .hero-subtitle {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }
    
    .section-blurb {
        font-size: 1rem;
    }
}

/* Medium Screens */
@media screen and (max-width: 1030px) {
    .hero-container-row {
        flex-direction: column;
    }

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

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

    .hero-container-row {
        align-items: center;
    }
}

@media screen and (max-width: 1024px) {
    .hero-title {
        font-size: 5rem;
    }

    .hero-subtitle {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-blurb {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .hero-content {
        display: flex;
        justify-content: flex-start;
        flex-direction: column;
        align-items: center;
        margin-bottom: 1rem;
    }
}

/* Small Screens */
@media screen and (max-width: 768px) {
    .section-blurb {
        font-size: 0.8rem;
    }

    .section-content {
        padding: 1rem;
    }

    .hero-container-column {
        margin-top: 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
        margin: 0rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }
}

/* Mobile Screens */
@media screen and (max-width: 670px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-blurb {
        font-size: 0.8rem;
        text-align: center;
    }
}
