
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600&display=swap');

body {
    /*font-family: 'Inter', sans-serif;*/
    font-family: "Open Sans", sans-serif;
}

main h1,
main h2,
main h3 {
    /*font-family: 'IBM Plex Sans', sans-serif;*/
}

html {
    scroll-behavior: smooth;
}

.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-image: url('../images/mainpageHeaderBlue.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    width: 90%;
    max-width: 1000px;
    padding: 10px 10px;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(1px);
    border-radius: 6px;
}

.hero-content h1 {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: clamp(2.8rem, 4vw, 4.2rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 35px;
    color: var(--beige);
    text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-outline {
    display: inline-block;
    padding: 11px 22px;
    border: 2px solid var(--white);

    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: #fff;
    text-decoration: none;
    background: transparent;

    transition: all 0.25s ease;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--navy);
}

.why-coventure {
    background: var(--cream);
    padding: 80px 0;
}

.why-coventure-inner {
    width: min(86%, 1300px);
    margin: 0 auto;
}

.why-coventure-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 75px;
}

.why-coventure-grid {
    display: grid;
    grid-template-columns: 32% 68%;
    gap: 70px;
    align-items: start;
}

.why-coventure-heading h2 {
    margin: 0 0 14px;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--navy);
}

.why-coventure-copy {
    max-width: 780px;
}

.why-coventure-copy p {
    margin: 0 0 20px;
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 400;
    color: var(--slateblue);
}

@media (max-width: 800px) {
    .why-coventure {
        padding: 65px 0 75px;
    }

    .why-coventure-inner {
        width: 88%;
    }

    .why-coventure-eyebrow {
        margin-bottom: 40px;
    }

    .why-coventure-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .why-coventure-heading h2 {
        font-size: 2.4rem;
    }

    .why-coventure-copy {
        max-width: none;
    }

    .why-coventure-copy p {
        font-size: 0.95rem;
        line-height: 1.65;
    }
}