
:root {
    --color-1: #3E77E0;
    --color-2: #3E9DE0;
    --color-3: #4A6D86;
    --color-4: #94C5EA;
    --color-5: #F9F7FE;
    --h1-size: 3.75rem;
    --h2-size: 2rem;
    --h3-size: 1.5rem;
}

body {
    font-family: "Figtree", Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    font-optical-sizing: auto;
    color: var(--color-3)
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

p a {
    text-decoration: none;
    color: var(--color-3)
}

p a:not(.u-link-hidden) {
    text-decoration: underline;
    font-weight: 700;
}

p:last-of-type {
    margin-bottom: 0;
}

/* util */

.u-section {
    padding: 50px 0;
}

.u-container {
    max-width: 1200px;
    margin: 0 auto;
}

.u-gutter {
    padding: 0 25px;
}

.u-grid {
    display: grid;
    grid-gap: 30px;
}

.u-social-logo {
    width: 24px;
    height: 24px;
}

/* typography */
.u-underline {
    text-decoration: underline;
}

.u-bold {
    font-weight: 500;
}

.u-extra-bold {
    font-weight: 700;
}

.u-indented-list {
    margin-top: 0;
    padding-left: 32px;
    list-style-type: none;
}

.u-indented-list:last-child {
    margin-bottom: 0;
}

.u-white {
    color: #fff;
}

.u-indented-list li {
    font-weight: 500;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--color-4);
}

h1 {
    margin-top: 0;
    font-weight: 400;
    font-size: var(--h1-size);
    line-height: 1.1;
    color: var(--color-2);

    span {
        font-weight: 700;
        color: var(--color-1);
    }
}

h2 {
    margin-top: 0;
    font-weight: 400;
    font-size: var(--h2-size);
    line-height: 1.1;
}

h3 {
    margin-top: 0;
    font-weight: 700;
    font-size: var(--h3-size);
    line-height: 1.1;
    color: var(--color-2);
}

/* buttons */

.u-button {
    display: inline-block;
    padding: 10px 20px;
    color: var(--color-3);
    text-decoration: none;
    border-radius: 100em;
    border: 1px solid var(--color-4);
    line-height: 1;
    width: 90%;
    text-align: center;
}

.u-button > span {
    text-decoration: underline;
    font-weight: bold;
}

/* ======================================================== */
/* sections */

/* header */
.c-header {
    padding-top: 50px;
}

.c-header__logo {
    width: 50%;
    max-width: 180px;
}

/* hero */
.c-hero {

}

.c-hero__grid {
    grid-template-columns: 3fr 2fr;
}

.c-hero__grid-cell-1 {

}

.c-hero__grid-cell-2 {

}

.c-hero__grid-cell-2-content {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.c-profile-picture {
    border-radius: 100em;
    overflow:hidden;
}

.c-profile-picture img {
    max-width: 100%;
    height: auto;
}

/* services */
.c-services {
    background-color: var(--color-5);
}

.c-services__grid {
    grid-template-columns: 1fr 1fr;
}

/* footer */
.c-footer {
    background-color: var(--color-4);
}

.c-footer__grid {
    grid-template-columns: 3fr 2fr;
}

.c-footer__grid-cell-1 {
    padding: 50px 20px;
}

.c-footer__grid-cell-2 {
    background-image: url(../images/footer-pattern.png);
    background-size: cover;
    background-position: 0 50%;
    min-height: 200px;
}

/* responsive */

@media (max-width: 960px) {
    :root {
        --h1-size: 3rem;
        --h2-size: 1.5rem;
        --h3-size: 1.2rem;
    }
}

@media (max-width: 780px) {
    .c-hero__grid,
    .c-services__grid,
    .c-footer__grid {
        grid-template-columns: 1fr;
    }

    .c-footer__grid-cell-2 {
        background-position: 0 0;
    }

    .u-indented-list {
        padding-left: 0;
    }
}