
:root {
    /* Colors */
    --base-navyblue: #0f172a;
    --accent-red: #dc2626;
    --text-blue: #334155;
    --clr-white: #ffffff;
    --clr-charcoal: #333333;
    --clr-highlight-bg: #4f5f7f; 
}

.hero-img {
    flex: 0.7 1 0;
}

.hero-section {
    max-height: fit-content;
    display: flex;
    flex-direction: column;
    padding: 0vw 4vw 0 4vw;
    align-items: center;
    gap: 3rem;
    overflow: hidden ;
    margin-block-end: 2vw;
    margin-block-start: 10vw;
}

.hero-text-cta-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    flex: 1 1 0;
    align-items: flex-start;
}

.hero-section-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-section-text p{
    font-family: "Inter", sans-serif;
    font-weight: 300;
    color: var(--text-blue);
    width: 90%;
    font-size: clamp(1rem, 0.6vw + 1rem, 1.1rem);
}

.hero-section-text h1 {
    font-family: Montserrat, Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 800;
    color: var(--base-navyblue);
    font-size: clamp(2rem, 2vw + 1rem, 5rem);
}

.red-underline {
    color: var(--accent-red);
    text-decoration: underline;
    font-style: italic;
}

@media (max-width: 350px) {
    .hero-section {
        margin-inline: 2vw;
    }
}

@media (min-width: 850px) {
    .hero-section {
        flex-direction: row;
        gap: 1rem;
        margin-block-start: 5vw;
    }
    .hero-img {
        flex: 1.2 1 0;
    }
    
}

@media (min-width: 1024px) {
    .hero-section {
        margin-block-start: 0;
    }
    .hero-img {
        flex: 0.7 1 0;
    }
}