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

:root {
    --light-black: #4A4947;
    --white: #FAF7F0;
    --pure-black: #000000;

    --font-inter: "Inter", sans-serif;
}

.section-1 {
    display: flex;
    width: 80%;
    height: 8vh;
    margin: 0 auto;
    justify-content: space-around;
    align-items: center;
}

.left {
    display: flex;
    flex-direction: column;
    align-items: left;
}

.links ul {
    display: flex;
    gap: 20px;
    list-style-type: none;
}

.links a {
    color: var(--pure-black);
    text-decoration: none;
    font-family: var(--font-inter);
}

.links a:hover {
    color: #676562;
    text-decoration: none;
    font-family: var(--font-inter);
}

.left .nav-name {
    font-family: var(--font-inter);
    font-weight: 600;
    color: var(--pure-black);
}

.left .nav-tagline {
    font-family: var(--font-inter);
    color: var(--light-black);
}


/* section - 2 */

.hero-nav-container {
    height: 100vh;
    background: #f5fafc;
    background: linear-gradient(180deg, rgba(245, 250, 252, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(227, 248, 255, 1) 100%);
}

.hero-container {
    width: 80%;
    margin: 0 auto;
    height: 92vh;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 1fr);
    font-family: var(--font-inter);
}

.hero-text {
    grid-column: 2 / span 6;
    grid-row: 4 / span 5;
    
}

.hero-text h1 {
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.hero-links ul {
    display: flex;
    gap: 20px;
    list-style: none;
    margin-top: 20px;
}

.hero-links a {
    text-decoration: none;
    color: var(--pure-black);
    font-weight: 500;
}

.hero-links a:hover {
    color: #676562;;
}

.image img {
    height: 100%;
    border-radius: 10px;
}

.image {
    grid-column: 9 / span 4;
    grid-row: 4 / span 5;
}

/* mobile styles */

@media only screen and (max-width: 600px) {
    .hero-nav-container {
        height: 100vh;
    }

    .hero-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 50px;
    }

    .image img {
        width: 50%;
        border-radius: 50%;
        border: 5px solid transparent;
        background: linear-gradient(#151515, #151515) padding-box, linear-gradient(to top, #66023c, #cd1c18) border-box;
    }

    /* .section-1 {
        display: flex;
        flex-direction: column;
    } */

    .left {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .links {
        display: none;
    }

}