@font-face {
    font-family: 'CervoNeue';
    src: url('/assets/fonts/Typoforge Studio - CervoNeue-MediumNeue.ttf') format('truetype');
}

@font-face {
    font-family: 'S-CoreRegular';
    src: url('/assets/fonts/S-CORE - CORESANSB35REGULAR.OTF') format('truetype');
}

@font-face {
    font-family: 'S-CoreMedium';
    src: url('/assets/fonts/S-CORE - CORESANSB45MEDIUM.OTF') format('truetype');
}

html, body {
    margin: 0;
    padding: 0;

    color: white;
    font-size: 1.1rem;
    font-family: 'S-CoreRegular', sans-serif;
    line-height: 1.5;
}

html,  * {
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'CervoNeue', serif;
    margin: 0;
}

ul {
    list-style-position: inside;
    margin: 0;
    padding: 0;
}

ul, li {
    padding: 8px 0;
}

img {
    height: 100%;
    width: 100%;
    max-width: 100%;
    object-fit: cover;
}

a {
    color: white;
    text-decoration: none;
}

.heading-main {
    font-size: 2rem;
    margin: 1rem 0;
    text-transform: uppercase;
}

.heading-secondary {
    margin-bottom: .5rem;
    margin-top: 1.5rem;
}

.bg-brown {
    background: linear-gradient(to bottom, #6a4e3c, #150f0a);
}

.text-column {
    margin: 1rem;
    padding: 1.5rem;
}

.coffee-cup-img {
    height: 25rem;
}

.who-we-are--container {
    margin: 1rem;
}

.section--specialty-program,
.section--premium-coffee-program {
    padding: 1rem;
}

.aspect-3-2 {
    aspect-ratio: 3/2;
}

.grid-container {
    display: grid;
    gap: .5rem;
}

.grid-content {
    grid-row: 1;
    grid-column: 1;
    align-self: center;
}

.grid-row-reverse {
    grid-row: 1;
}

.grid-two-column {
    display: grid;
}

.grid-three-column {
    display: grid;
    gap: .5rem;
}

.grid-four-column {
    display: grid;
    gap: .5rem;
}

.grid-three-column--title {
    grid-row: 1;
}

.flex-content {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.logo-size-l {
    width: 150px;
}

.logo-size-m {
    width: 120px;
}

.logo-size-s {
    width: 100px;
}

.logo-size-xs {
    width: 70px;
}


 /*768 */
@media screen and (min-width: 768px) {
    .md-logo-size-l {
        width: 150px;
    }

    .grid-container.grid-two-column {
        grid-template-columns: 1fr 1fr;
    }

    .grid-three-column {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-four-column {
        grid-template-columns: repeat(4, 1fr);
    }

    .grid-three-column--title {
        grid-column: 1 / -1;
    }

    .grid-three-column--divided img {
        grid-row: 2;
    }

    .grid-three-column--divided .grid-three-column--title {
        grid-column: 2 / -1;
    }

    .flex-container {
        display: flex;
        gap: 2rem;
        align-items: center;
    }

    .flex-content {
        flex-direction: column;
        max-width: 100px;
        gap: 4rem;
    }
}

/* 1280 */
@media screen and (min-width: 1280px) {
    .grid-two-column {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .section--specialty-program,
    .section--premium-coffee-program {
        padding: 4rem;
        gap: 4rem;
    }

    .text-column {
        align-self: start;
        margin: 0 0 2rem 0;
        max-width: 22rem;
    }

    .text-column-right {
        justify-self: end;
    }

    .text-column-left {
        justify-self: start;
    }

    .aspect-3-2 {
        aspect-ratio: unset;
        height: 80vh;
    }

    .grid-row-reverse {
        grid-row: unset;
    }

    .coffee-cup-img {
        height: 100%;
    }

    .lg-mt-0 {
        margin-top: 0;
    }
}

/* 1440 */
@media screen and (min-width: 1440px) {
    body {
        font-size: 1.25rem;
    }

    .section--specialty-program,
    .section--premium-coffee-program {
        gap: 8rem;
    }
}
