/* @import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.1/font/bootstrap-icons.css"); */

@font-face {
    font-family: openSans;
    src: url(../font/Open_Sans/static/OpenSans-SemiBold.ttf);
}

* {
    font-family: openSans;
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: none;
}

.nodisplay {
    display: none;
}

#current_page>section {
    background-color: white;
    color: black;
}

.lightbox {
    display: none;
    /* In eerste instantie verborgen */
    position: fixed;
    /* Blijft op zijn plaats bij scrollen */
    z-index: 1100;
    /* Zorgt ervoor dat hij boven andere elementen ligt */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    /* Donkere achtergrond */
    text-align: center;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.lightbox-prev,
.lightbox-next {
    font-size: 30px;
    font-weight: bold;
    color: white;
    opacity: 0.6;
    cursor: pointer;
    user-select: none;
    padding: 10px;
    background: none;
    border: none;
    outline: none;
    position: absolute;
    /* Zorg ervoor dat position absolute is */
    left: 50%;
    /* Centreer horizontaal */
    transform: translateX(-50%);
    /* Compenseer voor de breedte van het element */
}

.lightbox-prev {
    top: 50px;
    /* Positioneer aan de bovenkant */
    bottom: auto;
    /* Reset de bottom positie */
}

.lightbox-next {
    bottom: 50px;
    /* Positioneer aan de onderkant */
    top: auto;
    /* Reset de top positie */
}

.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 1;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;

    /* Centreert verticaal */
    display: block;
    /* Verwijdert extra ruimte onder de afbeelding */
    margin-left: auto;
    margin-right: auto;
}

.lightbox-index {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 16px;
}

/* !!!!!!!!!!!check!!!!!!!!!!!!!!! */
/* header */
body>header {
    position: fixed;
    z-index: 100;
    background-color: white;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
}

body>header>section {
    width: 95%;
}

body>header>section>section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: none;
}

body>header>section>section>a {
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
}

#logo_hedwig {
    width: 50px;
}

header>section>section>h1 {
    width: fit-content;
    text-wrap: wrap;
}

#hamburger_menu {
    width: 50px;
}

#hamburger_cross {
    display: none;
    width: 50px;
}

#header_menu {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    /* position: fixed;
    top: 73px;
    right: 0px; */
    background-color: black;
    border-radius: 12px;
    padding: 5px;
    display: none;
    margin-left: auto;
}

#header_menu>a {
    width: 100%;
    padding: 5px;
    border-radius: 10px;
    text-decoration: none;
    color: white;
}

#header_menu>a>section {
    width: 100%;
    padding: 5px;
    border-radius: 10px;
    text-decoration: none;
}

body>header>section>div {
    display: none;
    background-color: none;
}

/* header */
/* !!!!!!!!!!!check!!!!!!!!!!!!!!! */


/* !!!!!!!!!!!check!!!!!!!!!!!!!!! */
/* main */
.main {
    width: 70%;
    height: fit-content;
    background-color: none;
}

.index {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    z-index: 0;
    padding-top: 100px;
    padding-bottom: 100px;
}

.photos {
    margin-top: 70px;
}

/* index_page */
/* Slideshow container */
.slideshow-container {
    width: 80%;
    position: relative;
    z-index: 1000;
    margin: auto;
    height: fit-content;
}

/* Hide the images by default */
.mySlides {
    display: none;
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 10px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Caption text */
.text {
    color: #f2f2f2;
    font-size: 10px;
    padding: 8px 12px;
    position: absolute;
    bottom: 0px;
    width: 100%;
    text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 10px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* The dots/bullets/indicators */
#dot_menu_left {
    text-align: center;
    position: absolute;
    left: 0px;
    top: auto;
    bottom: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

#dot_menu_right {
    display: none;
}


.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #d8d8d8;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active {
    background-color: #717171;
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

/* index_page */
/*photopage*/

.images_photopage {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
}

/*photopage*/
/*contact_page*/
.contact {
    height: fit-content;
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 15px;
}

.contactpage_text {
    overflow-wrap: break-word;
    height: fit-content;
}

.contact>section {
    background-color: none;
    border-style: none;
    width: 100%;
    height: fit-content;
}

.contact>div {
    background-color: none;
    border-style: solid;
    width: 100%;
    height: fit-content;
}

.contact>div>form>h2 {
    margin-bottom: 15px;
}

/* input[type=text],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid none;
    border-radius: 4px;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical
}

input[type=submit] {
    background-color: none;
    color: none;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type=submit]:hover {
    background-color: none;
} */

.container {
    border-radius: 5px;
    background-color: none;
    padding: 20px;
}

/*contact_page*/
/* main */
/* !!!!!!!!!!!check!!!!!!!!!!! */

/* !!!!!!!!!!check!!!!!!!!!!!! */
/*footer*/
footer {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    background-color: none;
}

footer>aside {
    display: block;
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
}

footer button {
    width: 75%;
    height: fit-content;
    padding: 7px;
    border-radius: 7px;
    margin-bottom: 15px;
    border-style: none;
    background-color: #3fa9f5;
}

footer a {
    text-decoration: none;
    text-align: center;
    color: white;
}

footer>section {
    padding-bottom: 10px;
}

footer>section img {
    width: 40px;
}

footer>div {
    display: none;
}

footer h2 {
    text-align: center;
}

footer h1 {
    text-align: center;
}


footer h3 {
    text-align: center;
}



/*footer*/
/* !!!!!!!!!!check!!!!!!!!!!!! */

@media only screen and (min-width: 500px) {

    .lightbox-prev,
    .lightbox-next {
        top: 50%;
        /* Reset de horizontale transformatie */
        transform: translateY(-50%) translateX(0%);
        left: 20px;
        /* Positioneer de linkerkant van de "prev" knop */
        right: auto;
        /* Zorg ervoor dat "right" niet in de weg zit */
    }

    .lightbox-next {
        left: auto;
        /* Reset de "left" van de "next" knop */
        right: 20px;
        /* Positioneer de rechterkant van de "next" knop */
    }

    /* !!!!!!!!!!check!!!!!!!!!!!! */
    /* header */
    body>header {
        padding-left: 0px;
        padding-right: 0px;
        height: fit-content;
    }

    header>section>section>h1 {
        font-size: 35px;
        text-wrap: nowrap;
    }

    /* header */
    /* !!!!!!!!!!check!!!!!!!!!!!! */
    /*main*/
    .main {
        margin-top: 150px;
        width: 95%;
    }

    .prev,
    .next {
        font-size: 18px;
    }

    #dot_menu_left {
        text-align: center;
        position: absolute;
        left: 0px;
        top: auto;
        bottom: auto;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    #dot_menu_right {
        text-align: center;
        position: absolute;
        right: 0px;
        top: auto;
        bottom: auto;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .text {
        color: #f2f2f2;
        font-size: 25px;
        padding: 8px 12px;
        position: absolute;
        bottom: 8px;
        width: 100%;
        text-align: center;
    }

    .numbertext {
        font-size: 30px;
    }

    /*photopage*/
    .photos {
        margin-top: 150px;
    }

    .images_photopage {
        width: 33.3%;
    }

    /*photopage*/

    /*main*/
    /* !!!!!!!!!!check!!!!!!!!!!!! */
    /* footer */
    footer {
        flex-direction: row;
        justify-content: space-between;
        padding-left: 15px;
        padding-right: 15px;
        align-items: center;
        padding-top: 15px;
        padding-bottom: 15px;
    }

    footer>aside {
        display: none
    }

    footer>section {
        padding-bottom: 0px;
    }

    footer>div {
        display: block;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-evenly;
    }

    /* footer */
    /* !!!!!!!!!!check!!!!!!!!!!!! */
}

@media only screen and (min-width: 650px) {

    /* !!!!!!!!!!check!!!!!!!!!!!! */
    /* header */
    header>section>section h1 {
        margin-left: auto;
        margin-right: auto;
        font-size: xx-large;
        width: fit-content;
        padding-right: auto;
        padding-left: auto;
        text-wrap: nowrap;
    }

    #hamburger {
        display: none;
    }

    #hamburger_menu {
        display: none;
    }

    #hamburger_cross {
        display: none;
    }

    body>header>section>div {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    body>header>section>div>section {
        border-style: solid;
        border-radius: 12px;
        border-width: 3px;
        padding: 4px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    body>header>section>div a {
        text-decoration: none;
        color: black;
    }

    /* header */
    /* !!!!!!!!!!check!!!!!!!!!!!! */

    /*main*/
    .main {
        margin-top: 170px;
    }

    .contact {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .contact>section {
        height: fit-content;
        padding: 20px;
    }

    .contact>div {
        margin-right: 15px;
    }

    /*main*/
}

@media only screen and (min-width: 700px) {

    /* !!!!!!!!!!check!!!!!!!!!!!! */
    /* header */

    #logo_hedwig {
        min-width: 100px;
        background-color: none;
    }

    body>header>section>div>div {
        height: fit-content;
    }

    /* header */
    /* !!!!!!!!!!check!!!!!!!!!!!! */
    /*index*/
    .slideshow-container {
        width: 50%;
        position: relative;
        z-index: 1000;
        margin: auto;
        height: fit-content;
    }

    /*index*/
    /* !!!!!!!!!!check!!!!!!!!!!!! */
    /* footer */
    footer>div>button {
        width: 100%;
        height: 60px;
        border-radius: 20px;
    }

    /* footer */
    /* !!!!!!!!!!check!!!!!!!!!!!! */
}

@media only screen and (min-width: 1000px) {

    .main {
        max-width: 1200px;
    }

    footer {
        min-width: 90%;
    }

    /* !!!!!!!!!!check!!!!!!!!!!!! */
    /* header */
    body>header {
        padding-left: 30px;
        padding-right: 30px;
    }

    body>header>section {
        width: 100%;
        align-items: center;
        height: fit-content;
    }

    #logo_hedwig {
        width: 100px;
    }

    body>header>section>section {
        align-items: center;
    }

    body>header>section>section h1 {
        font-size: 80px;
    }

    /* header */
    /* !!!!!!!!!!check!!!!!!!!!!!! */

    /* main */
    .main {
        margin-top: 220px;

    }

    .index {
        margin-top: 200px;
        padding-top: 0px;
        padding-bottom: 0px;
        margin-bottom: 40px;
    }

    .images_photopage {
        width: 20%;
    }

    /* main */
    /* footer */
    /* footer {
        padding-left: 5%;
    } */

    /* footer */
    /* !!!!!!!!!!double_checked!!!!!!!!!!!! */
}