@import url(https://fonts.googleapis.com/css?family=Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic);

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

html,
body {
    height: 100%;
    width: 100%;
    background-color: #F6F0EB;
    font-family: 'poppins', sans-serif;
    scroll-behavior: smooth;
}

.nav-container {
    background-color: #fff;

    padding: 8px 16px;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

main {
    padding: 0 16px;
}

.logo {
    width: 40px;
}

.navbar-right {
    display: flex;
    gap: 40px;
}

a {
    text-decoration-line: none;
    color: inherit;
}

.navbar-right a {
    font-weight: 600;
    font-size: 16px;
    color: #492118;
}

.hero-section {
    max-width: 1200px;
    margin: 16px auto;
}

.hero-section img {
    width: 100%;
}

.hero-section p {
    color: #492118;
    text-align: center;
    font-size: 16px;
    margin-bottom: 40px;
}

.section {
    max-width: 1040px;
    margin: 0 auto;
}

.section h2 {
    font-weight: 700;
    font-size: 24px;
    color: #492118;
    text-align: center;
    margin: 8px 0;
}

.section img {
    width: 100%;
}

.section-1 {
    margin-bottom: 48px;
}

.section-2 {
    margin-bottom: 48px;
}

.section-3 {
    margin-bottom: 48px;
}

.section-4 {
    margin-bottom: 48px;
}

.go-to-top {
    display: flex;
    justify-content: end;
    padding: 10px 0;
    font-size: 16px;
    text-decoration-line: underline;
}

footer {
    text-align: center;
    padding: 32px 0;
}

footer i {
    color: red;
}

footer span {
    color: red;
    font-weight: 600;
}

.navbar-right span {
    display: none;
}

.mobile-navbar i {
    cursor: pointer;
}

.mobile-navbar {
    display: none;
}

.desktop-navbar {
    display: flex;
}

@media (max-width: 812px) {
    .section {
        width: 90%;
    }

    .section h2 {
        font-size: 20px;
    }

    .navbar-right {
        gap: 20px;
    }

    .navbar-right a {
        font-size: 14px;
    }

    .mobile-navbar {
        display: none;
    }

    .desktop-navbar {
        display: flex;
    }
}

@media (max-width: 666px) {
    .nav-container {
        background-color: #f6f0ebb7;
        position: sticky;
        top: 0;
        backdrop-filter: blur(8px);
    }

    .navbar-right {
        position: absolute;
        background-color: rgba(255, 255, 255, 0.9);
        flex-direction: column;
        gap: 16px;
        top: 2px;
        right: 10px;
        padding: 24px;
    }

    .navbar-right span {
        position: absolute;
        top: 8px;
        right: 12px;
        cursor: pointer;
        display: block;
        font-size: 20px;
    }

    .logo {
        width: 25px;
    }

    .hero-section p {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .section h2 {
        font-size: 12px;
    }

    .section-1 {
        margin-bottom: 20px;
    }

    .section-2 {
        margin-bottom: 20px;
    }

    .section-3 {
        margin-bottom: 20px;
    }

    .section-4 {
        margin-bottom: 20px;
    }

    .go-to-top {
        font-size: 10px;
    }

    footer {
        font-size: 12px;
    }

    .mobile-navbar i {
        font-size: 20px;
    }

    .mobile-navbar {
        display: block;
    }

    .mobile-navbar.open-menu {
        display: none;
    }

    .desktop-navbar.open-menu {
        display: flex;
    }

    .desktop-navbar {
        display: none;
    }
}