@import url('https://fonts.googleapis.com/css2?family=Stack+Sans+Text:wght@200..700&display=swap');

* {
    margin: 0;
    padding: 0;
}

#nojs-title {
    display: flex;
    justify-content: center;
    color: #000;
    text-align: center;
    margin: 10% 0;
}


html,body {
    margin: 0;
    height: 100%;
} 

body {
    display: flex;
    flex-direction: column;
    font-family: 'Stack Sans Text';
    font-size: 20px;
    font-weight: 300;
}

.fixedmaxwidth {
    margin: 0 auto;
    max-width: 1200px;
}

/* START OF HEADER */

header {
    width: 100%;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    padding: 0 15px;
}

.logo-link {
    display: flex;
    align-items: center;
    width: 100px;
    height: 100px;
}

.logo-link p {
    display: none;
}

.logo-link img {
    width: inherit;
    height: inherit;
}

.header-main-links {
    display: flex;
    gap: 20px;
}

.header-main-links * {
    color: black;
    text-decoration: none;
    transition: 0.3s ease-in-out;
    font-weight: 500;
}

#nav-item1 {
    border-bottom: 2px solid black;
    user-select: none;
}

#nav-item2:hover {
    color: #75C149;
    cursor: pointer;
}

#nav-item3:hover {
    color: #75C149;
    cursor: pointer;
}

#nav-item4:hover {
    color: #75C149;
    cursor: pointer;
}

/* END OF HEADER */

/* BURGERMENU START */

#burgermenu {
    display: none;
}

.burgermenu-popup {
    display: none;
}

#burgerclose {
    width: 30px;
    height: 30px;
    display: none;
}
#burgeropen {
    width: 35px;
    height: 35px;
    display: none;
}

.burger-links-container {
    position: absolute;
    right: 10%;
    display: flex;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.847);
    padding: 20px;
    border-radius: 5px;
    font-size: 24px;
    gap: 5px;
}

.burger-links-container a {
    text-align: center;
    text-decoration: none;
    color: white;
}
.burger-links-container p {
    text-align: center;
    color: #75C149;
    font-weight: 600;
}

/* BURGERMENU END */





/* START OF CONSTRUCTION */

.constructing {
    display: flex;
    justify-content: center;
    color: black;
    margin-bottom: 20px;
}

.constructing h1 {
    font-size: 26px;
    font-weight: 500;
    border-radius: 5px;
    text-align: center;
    padding: 10px 0;
}

.constructing a {
    color: black;
    transition: 0.2s ease-in-out;
}

.constructing a:hover {
    color: #75C149;
}

/* END OF CONSTRUCTION */


/* START OF FILLER */

.filler-gallery {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.gallery-title {
    display: flex;
    justify-content: center;
    font-weight: 400;
    margin-bottom: 10px;
}

.filler-images-container {
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
}   

.filler-images-container img {
    width: 25%;
    height: auto;
    margin: 0 10px 10px 10px;
}

/* END OF FILLER */



/* START OF FOOTER */

footer {
    width: 100%;
    background-color: #75C149;
}

.footer-wrap {
    padding: 10px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    color: white;
    font-weight: 500;
}

.footer-container img {
    width: 5%;
    height: auto;
    filter: brightness(0) saturate(100%) invert(100%) sepia(94%) saturate(0%) hue-rotate(209deg) brightness(106%) contrast(106%);
}

/* END OF FOOTER */


/* START OF OPTIMIZATION HOME */

@media screen and (max-device-width: 1215px) {
    .fixedmaxwidth {
        max-width: 1000px;
    }
}
@media screen and (max-device-width: 1050px) {
    .fixedmaxwidth {
        max-width: 800px;
    }
}

@media screen and (max-device-width: 850px) {
    .fixedmaxwidth {
        max-width: 700px;
    }
}

@media screen and (max-device-width:777px) {

    .footer-container img {
        width: 5%;
    }

    .logo-link {
        width: 80px;
        height: 80px;
    }

    .filler-images-container img {
        width: 30%;
    }

    .constructing h1 {
        font-size: 20px;
    }

    .fixedmaxwidth {
        max-width: 700px;
    }
}

@media screen and (max-device-width:641px) {

    .footer-container img {
        width: 6%;
    }

    .constructing h1 {
        font-size: 18px;
    }

    .filler-images-container img {
        width: 35%;
    }

    .fixedmaxwidth {
        margin: 0 auto;
        max-width: 600px;
    }
}

@media screen and (max-device-width:570px) {

    .fixedmaxwidth {
        max-width: 450px;
    }

    .footer-container img {
        width: 8%;
    }

    body {
        font-size: 16px;
    }

    .constructing h1 {
        font-size: 16px;
    }

    .filler-images-container img {
        width: 40%;
    }
}

    @media screen and (max-device-width:521) {
        #burgermenu {
            display: none;
        }

        #burgerclose {
            display: none;
        }
        #burgeropen {
            display: none;
        }

        .header-main-links {
            display: flex;
        }
    }

    @media screen and (max-device-width:520px) {

    #burgermenu {
        display: block;
    }

    #burgerclose {
        display: none;
    }
    #burgeropen {
        display: block;
    }

    .header-main-links {
        display: none;
    }

    .logo-link {
        width: auto;
        height: 80px;
        text-decoration: none;
    }

    .logo-link p {
        display: block;
        margin-left: 10px;
        color: black;
        font-size: 18px;
        font-weight: 400;
    }

    @media screen and (max-device-width: 360px) {
    .fixedmaxwidth {
        max-width: 300px;
    }
    .logo-link p {
        display: none;
    }
}
}