:root {
    --primary-green-rgb-values: 69, 174, 77;
    --primary-brown-rgb-values: 75, 46, 42;
    --light-brown-color: #f9f3ed
}

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

body {
    color: rgb(var(--primary-brown-rgb-values));
    font-family: "avenir-lt-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
    overflow-x: hidden;
    background-color: var(--light-brown-color);
}

a {
    cursor: pointer;
    text-decoration: none;
    color: unset;
}

b {
    font-weight: 800;
}

h1 {
    font-family: "avenir-lt-pro", sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 6rem;
    color: rgb(var(--primary-brown-rgb-values))
}

header {
    position: sticky;
    margin: auto;
    top: 10px;
    width: 90vw;
    color: white;
    height: 0px;
}

nav {
    display: flex;
    color: var(--light-brown-color);
    flex-direction: row;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 20px;
    justify-content: center;
    gap: 40px;
    align-items: center;
    padding: 14px;
    backdrop-filter: blur(2px);
    z-index: 1;
}

#banner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url("../assets/white-texture.webp");
    background-attachment: fixed;
    background-size: cover;
    height: 100vh;
    width: 100vw;
}

#motto {
    font-size: 2rem;
    font-weight: 200;
    color: rgba(var(--primary-green-rgb-values), 0.9)
}

.info-block h2, .info-block p {
    padding: 10px 25vw;
}

.info-block {
    padding: 100px 0;
}

.background-block {
    width: 100vw;
    height: 60vh;

    background-size: cover;
    background-attachment: fixed;
}

.background-block:nth-child(1 of .background-block) {
    background-image: url("../assets/peopleinnaturewow.webp");
}

.background-block:nth-child(2 of .background-block) {
    background-image: url("../assets/water.webp");
}

.background-block:nth-child(3 of .background-block) {
    background-image: url("../assets/coffee.webp");
}

.background-block:nth-child(4 of .background-block) {
    background-image: url("../assets/nature.webp");
}

.background-block:nth-child(5 of .background-block) {
    background-image: url("../assets/coffee2.webp");
}

.background-block:nth-child(6 of .background-block) {
    background-image: url("../assets/ecofriendly.webp");
}

footer {
    display: flex;
    flex-direction: column;
    gap: 40px;
    color: rgb(var(--primary-brown-rgb-values));
    background-color: rgb(var(--primary-green-rgb-values));
    height: fit-content;
    width: 100vw;
    padding: 50px 60px;
    font-weight: 400;
}

.footer-rows {
    display: flex;
    flex-direction: row;
    gap: 80px;
}

.footer-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-weight: 600;
}
