body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, #FEF9E9, #FFFDF8, #FEF9E9, #FFFDF8);
    color: #333;
    --edge-color: #2B2408;
    --text-color: var(--text-color);
    --nav-bg: #FEF9E9;
    --gutter: 100px;
    --page-max-width: 1400px;
}

html {
    scroll-behavior: smooth;
}

a:link {
    color: var(--text-color);
}

a:visited {
    color: var(--text-color);
}

a:hover {
    color: var(--text-color);
}

a:active {
    color: var(--text-color);
}

header {
    background: var(--nav-bg);
    color: var(--text-color);
    height: 100px;
    display: flex;
    position: sticky;
    top: 0;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--gutter);
    z-index: 1000;
}

header .inner-wrap {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
    max-width: var(--page-max-width);
}


header a.logo {
    display: flex;
}

header a.logo img {
    width: 200px;
}


nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: var(--rem-2xl);
}

nav li {
    display: flex;
    align-items: center;
}

nav a {
    color: var(--text-color);
    text-decoration: none;
    font-size: var(--rem-l);
    font-weight: bold;
    font-family: 'bryant';
}

nav a:hover {
    text-decoration: underline;
}

nav #contact-button {
    border: 2px solid var(--edge-color);
    background-color: transparent;
    font-family: bryant;
    font-size: var(--rem-l);
    padding: 8px 24px;
    border-radius: 4px;
    white-space: nowrap;
    cursor: pointer;
}

nav #contact-button:active {
    scale:0.98;
}

.language-switcher {
    display: flex;
    flex-direction: row;
    gap: 8px;
}

.language-switcher img {
    width: 32px;
    height: 32px;
}

main {
    padding: 42px var(--gutter);
    min-height: 3000px;
}

footer-wrap {
    display: flex;
    padding: 0 var(--gutter);
}

footer {
    height: auto;
    background: transparent;
    text-align: center;
    max-width: var(--page-max-width);
    display: flex;
    gap: 16px;
    bottom: 0;
    width: 100%;
    margin: 0 auto;
}

footer .column {
    display: flex;
    flex-direction: column;
    width: 25%;
    padding: 64px 0;
    padding-right: 32px;
    gap: 32px;
}

footer .column h3 {
    font-size: var(--rem-xl);
}

footer .column li {
    list-style: none;
    margin: 8px 0;
    text-align: left;
    font-family: 'Poppins';
    color: #333333 !important;
}

footer .column1 img {
    width: 80%;
}

@media all and (max-width: 1239px) {

    nav #contact-button {
        font-size: var(--rem-base);
    }

    nav li.language-switcher {
        display: flex;
        align-items: center;
        flex-direction: column;
    }

}


@media all and (max-width: 904px) {
    header a.logo img {
		width: 120px;
	}

    nav li {
        display: none;
    }

    nav li.contact {
        display: flex;
    }

    nav #contact-button {
        font-size: var(--rem-s);
    }

    .language-switcher img {
        width: 18px;
        height: 18px;
    }

    nav #contact-link {
        padding: 10px 8px;
    }

    body {
        --gutter: 32px;

    }

    footer {
        flex-direction: column;
    }

    footer .column {
        width: 100%;
        padding: 16px 0;
        gap: 0;
    }

    footer .column1 img {
        width: 50%;
        margin: 16px 0;
    }
}

