:root {
    --color-primary: #eb4f5c;
    --color-secondary: #f0eeee;
    --color-header: #c2823a;
    --color-footer: #535353;
}

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

body {
    font-family: 'Roboto', sans-serif;
}

header, nav, section, main, footer {
    width: 100%;
}

/* Header */
header .header-top {
    min-height: 111px;
    background-color: var(--color-header);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hamburger button */
.nav-toggle {
    display: none;
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    background-color: inherit;
    border: 0;
    outline: 0;
    transition: all 0.1s ease-in-out;
}

.nav-toggle svg {
    width: 40px;
    height: 40px;
    fill: #fff;
}

.nav-toggle:hover {
    background-color: #8f5b22;
    border-radius: 15%;
}

/* Navigation */
nav {
    min-height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav ul {
    width: 60%;
    margin: 0 auto;
    list-style-type: none;
    display: flex;
    min-height: 60px; /* aa */
}

nav ul li {
    min-height: 100%;
    width: 100%;
    cursor: pointer;
    color: #000;
    transition: all 0.2s ease-in-out;
}

nav ul li a {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

nav ul li.li-active,
nav ul li:hover {
    background-color: var(--color-primary);
    color: #fff;
}

/* Footer */
footer {
    background-color: #000;
    color: #fff;
}

/* Footer top */
.footer-top {
    display: flex;
    justify-content: space-between;
    padding: 2% 20%;
    line-height: 22px;
}

.footer-top section {
    max-width: 30%;
}

.footer-top h2 {
    font-weight: 500;
    margin-bottom: 8px;
}

.footer-top p {
    font-size: 17px;
    font-weight: 350;
    word-spacing: 5px;
}

.footer-top ul {
    font-size: 18px;
    list-style-type: none;
    text-transform: uppercase;
}

.footer-top ul li {
    transition: all 0.2s ease-in-out;
}

.footer-top ul li a {
    text-decoration: none;
    color: inherit;
}

.footer-top ul li.li-active,
.footer-top ul li:hover {
    color: var(--color-primary);
}

.footer-top a {
    text-decoration: none;
}

.footer-top a svg {
    width: 40px;
    height: 40px;
    fill: #fff;
}

.footer-top a svg.yt {
    fill: #ff0033;
}

.footer-top a svg.fb {
    fill: #0966ff;
}

/* Footer Bottom */
.footer-bottom {
    color: var(--color-footer);
    text-align: center;
    padding: 1% 0;
}

.footer-bottom a {
    text-decoration: none;
    color: var(--color-footer);
    transition: all 0.2s ease-in-out;
}

.footer-bottom a:hover {
    color: var(--color-primary);
}

/* Responsiveness */
/* xl */
@media (max-width: 1200px) {
    nav ul {
        width: 70%;
    }

    .footer-top {
        padding: 2% 10%;
    }
}

/* lg */
@media (max-width: 992px) {
    nav ul {
        width: 85%;
    }

    .footer-top {
        padding: 2% 5%;
    }
}

/* md */
@media (max-width: 768px) {
    /* Navigation */
    nav {
        overflow: hidden;
        min-height: 0;
        max-height: 0;
        transition: max-height 0.3s ease;
    }

    nav.nav-open {
        max-height: 250px;
    }

    nav ul {
        width: 100%;
        flex-direction: column;
    }

    nav ul li {
        width: 100%;
        background-color: var(--color-secondary);
    }

    nav ul li a {
        justify-content: center;
        padding: 15px 0;
    }

    .nav-toggle {
        display: flex;
    }

    /* Footer */
    .footer-top {
        flex-direction: column;
        align-items: center;
        padding: 3% 10% 2%;
    }

    .footer-top section {
        max-width: 80%;
        margin-bottom: 20px;
    }
}

/* sm */
@media (max-width: 576px) {
    .footer-top {
        padding: 5% 10% 0;
    }

    .footer-top section {
        text-align: center;
    }

    .footer-top section p {
        text-align: left;
    }
}