@import url('https://fonts.googleapis.com/css2?family=KoHo:wght@300&family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Playpen+Sans:wght@300&display=swap');

* {
    margin: 0;
    padding: 0;
    color: white;
    font-family: "Merriweather", Arial, Helvetica, sans-serif;
}

a {
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease-in;
}

a:hover {
    color: #EA7C3F;
}

.pagetitle {
    text-align: center;
    margin-top: 2rem;
    text-shadow: 3px 3px 5px black;
    cursor: default;
}

.important {
    font-weight: bolder;
}

body {
    background-image: url("../pics/IMG_3100.jpg");
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
}

nav {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    left: 0;
    right: 0;
    background-color: black;
}
.unorderedlist {
    max-width: fit-content;
}

.unorderedlist li {
    margin: 1rem;
}

.active {
    cursor: not-allowed;
    color: #EA7C3F;
}

.placeholder {
    padding: 2.6rem;
}

.navsection {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    max-width: 50%;
    width: 50%;
    padding: 1.3rem;
}

.navsection:last-child {
    justify-content: flex-end;
}

.navsection a {
    margin-left: 1rem;
}

.menubutton {
    max-width: 10%;
    min-width: 4rem;
    margin-left: 1rem;
    display: none;
}

#logo {
    max-width: 13%;
    min-width: 6rem;
    margin-right: 1rem;
}

#logo img {
    max-width: 100%;
    border-radius: 1rem;
}

.roundedge img {
    border-radius: 1rem;
}

.dropdown {
    display: none;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    background-color: black;
    height: 100vh;
}

.dropdown a {
    margin: 1.2rem;
}

.contentcontainer {
    text-align: left;
    max-width: 40%;
    background-color: rgba(0,0,0,0.75);
    margin: 1rem auto;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 10px 10px 15px black;
    border: 1px solid black;
}

.contentsection {
    display: flex;
    align-items: start;
    justify-content: center;
}

.contentsection:last-child {
   text-align: center;
}

.content {
    text-align: left;
    width: 50%;
}

.sensitivecontent {
    text-align: left;
    width: 50%;
}

.sensitivecontent-img {
    margin-top: 1rem;
}

.content:nth-child(2) {
    margin-left: 1rem;
}

.content-align-center {
    text-align: center;
}

.content-align-center figcaption {
    margin: 1rem;
}

.contenttitle {
    margin-bottom: 1rem;
    color: #EA7C3F;
}

.content img {
    max-width: 60%;
    min-width: 10rem;
    border-radius: 1rem;
}

.contentcaption {
    margin-top: 1rem;
}

.sensitivedatas {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.sensitivedata {
    width: 25%;
    min-width: 10rem;
    border-radius: 0;
}

.sensitivedata figcaption {
    margin-bottom: 0.3rem;
}

.sensitivedata img {
    max-width: 100%;
    min-width: 10rem;
}

footer {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    background-color: black;
    padding: 0.5rem;
}

.footerinfo {
    max-width: 8%;
    min-width: 9rem;
}

.footerinfo img {
    max-width: 100%;
}

.gallerycontainer {
    text-align: left;
    max-width: 40%;
    background-color: rgba(0,0,0,0.75);
    margin: 1rem auto;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 10px 10px 15px black;
    border: 1px solid black;
}

.gallerysection {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.galleryimg {
    max-width: 25%;
    margin: 1rem;
}

.galleryimg img {
    max-width: 100%;
    border-radius: 1rem;
}

.map img {
    max-width: 100%;
}

.navlink {
    text-wrap: nowrap;
}

#facebook-logo {
    width: 10%;
    min-width: 100px;
    margin-top: 1rem;
}

#facebook-logo img {
    max-width: 100%;
    border-radius: 100%;
}

.facebook-logo-footer {
    width: 4%;
    min-width: 60px;
}

.facebook-logo-footer img {
    max-width: 100%;
}

@media only screen and (max-width: 950px) {
    .contentsection, .gallerysection {
        max-width: 100%;
        flex-direction: column;
        align-items: center;
    }
    
    .galleryimg {
        max-width: 100%;
    }

    footer {
        flex-direction: column;
    }

    footer img, a {
        margin-top: 1rem;
    }

    .sensitivedatas {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .sensitivedata:last-child {
        margin-top: 1rem;
    }

    .content:nth-child(2) {
        margin-left: 0;
    }

    .contentcontainer {
        max-width: 80%;
    }

    .content {
        width: 100%;
    }

    .sensitivecontent {
        width: 100%;
    }

    .content img {
        margin-top: 1rem;
        max-width: 60%;
    }

    .pagetitle {
        margin-top: 1rem;
    }
    
    .navlink {
        display: none;
    }
    
    .menubutton {
        display: block;
    }

    .map img {
        max-width: 100%;
    }
}

@media only screen and (max-width: 1000px) {
    .contentcontainer {
        max-width: 40%;
    }

    .galleryimg {
        max-width: 100%;
    }
}

@media only screen and (max-width: 650px) {
    .contentcontainer {
        max-width: 80%;
    }

    .gallerycontainer {
        max-width: 80%;
    }

    .galleryimg {
        max-width: 100%;
    }
}