@charset "utf-8";
/* CSS Document */

*{
    padding: 0;
    margin: 0px;
    box-sizing: border-box;
}

body{
    width: 100%;
    background-image: url("../afbeeldingen/Achtergrond01.png");
    background-color: lightgrey;
    background-size: cover;
    background-attachment: fixed;
}
/*-- Font stylen --*/
@font-face{
    font-family: 'Sriracha-Regular';
   src: url("../fonts/Sriracha-Regular.ttf");
}
h1{
    font-size: 2.5em;
    text-shadow: 1px 1px 1px cyan;
    font-style: italic;
    font-weight: 800;
}
h11{
    font-size: 2.5em;
    text-shadow: 1px 1px 1px #E80A78;
    font-style: italic;
    font-weight: 800;
}

h2{
    font-size: 1.5em;
}
h3{
    font-size: 1.2em;
}
h4{
    font-size: 1em;
}
h5{
    font-size: 0.7em;
    font-style: italic;
    font-weight: bolder;
}
h6{
    font-size: 0.8em;
}
.leading{
    font-size: 1.1em;
    font-family: "Sriracha-Regular";
    font-weight: 500;
}

/*-- Menu stylen --*/
li{
    list-style: none;
}

a{
    color: darkslategrey;
    text-decoration: none;
    
}
a:hover{
    color: #6e6e6e;
}
.navbar{
    min-height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
}

.nav-menu{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    font-size: 1.2em;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-style: italic;
    font-weight: bolder;
    transition: 0.7s;
}

.nav-branding{
    font-size: 1.8em;
}
.nav-branding:hover{
    transition: 0.7s ease;
    color: gray;
    box-shadow: 0 0 5px #33ffff,
                0 0 5px #66ffff;
}

.nav-link{
    transition: 0.7s ease;
}
.nav-item{
    padding: 2px 7px;
    border-radius: 7px;
}
.nav-item:hover{
    transition: 0.7s ease;
    box-shadow: 0 0 5px #33ffff,
                0 0 5px #66ffff;
}
.nav-link:hover{
    color: cyan;
}

.hamburger{
    display: none;
    cursor: pointer;
}

.bar{
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: darkslategrey;
}

/*-- Einde Menu stylen --*/
/*-- kolomen --*/
.kolomen-grid{
    display: grid;
    grid-template-columns: 65% 35%;
}
@media (max-width: 1000px){
    .kolomen-grid{
        grid-template-columns: auto;
    }
}

.container{
    width: 80%;
    max-width: 1400px;
    margin: 0 auto;
}

.head{
    max-width: 1400px;

    margin: .5em;
    background-image: url(../afbeeldingen/spanje01.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    box-shadow: 0 0 9px 1px #1D1C1C;
}
.head-tekst{
    padding: 150px 0 50px 100px;
}
/*-- Inhoud --*/
.inhoud{
    background-color: #F5F3F3;
    padding: 40px 20px 30px;
    border-radius: 10px;
    margin: .5em;
    box-shadow: 0 0 9px 1px #1D1C1C;
}
.fryske-walden_png{
    text-align: center;
    padding-bottom: 35px;
}
.fotoalbums{
    text-align: center;
}
.zijkolom{
    background-color: lightgrey;
    padding: 50px 20px 10px;
    border-radius: 10px;
    margin: .5em;
    box-shadow: 0 0 9px 1px #1D1C1C;
}

/*-- Footer --*/
#footer{
    background-color: #6e6e6e;
    padding: 8px 20px;
    border-radius: 8px;
    margin: .5em;
    box-shadow: 0 0 9px 1px #1D1C1C;
}
#contact{
    padding-bottom: 40px;
    /* color: darkgrey; */
}
#mail{
    color: darkgrey;
}


    /*------------Hamburgermenu styles---------*/
@media(max-width: 1000px){
    .hamburger{
        display: block;
    }
    .hamburger.active .bar:nth-child(2){
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1){
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(3){
        transform: translateY(-8px) rotate(-45deg);
    }
    .nav-menu{
        position: fixed;
        left: -100%;
        top: 70px;
        gap: 0;
        flex-direction: column;
        background-color: lightgrey;
        width: 25%;
        text-align: center;
        transition: 0.7s;
        }
    .nav-item{
        margin: 16px 0;
    }
    .nav-menu.active{
        left: 0;
    }
}
@media(max-width: 1000px){
    .container{
        width: 100%;
    }
    .head{
    background-image: url("../afbeeldingen/spanje01.jpg");
    }
}
@media(max-width:578px){
        .leading{
    font-size: 1em;
    }
    .nav-menu{
        width: 35%;
    }
    
}
@media(max-width:400px){
    h1{
    font-size: 1.5em;
    }
    h11{
    font-size: 1.5em;
    }
    .leading{
    font-size: 0.9em;
    }    
    .nav-menu{
        width: 100%;
    }
    .nav-branding{
    font-size: 1.4em;
    }
    .head{
    background-image: url("../afbeeldingen/spanje01.jpg");
    }
    .head-tekst{
    padding: 100px 0 0 20px;
    }
}

    /*-------Einde Hamburgermenu styles--------*/

/*----------------Fotopaginas------------------*/

.wachtwoord{
    margin: 10px 0 10px 0;
    background: none;
    text-align: center;
    padding: 4px 10px;
    width: 150px;
    border-radius: 20px;
    text-transform: uppercase;
    box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.6);
    display: inline-block;
    transition: 0.8s;
}
.button{
    margin: 10px 0 10px 0;
    background: none;
    text-align: center;
    padding: 4px 10px;
    width: 250px;
    border-radius: 20px;
    text-transform: uppercase;
    box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.6);
    display: inline-block;
    transition: 0.8s;
}
.button:hover{
    color: dodgerblue;
    text-shadow: 1px 2px 3px gray;
    background: #B3B3B3;
    transition: 0.8s;
}
.imagesmenu {
    align-content: center;
	margin: 10px auto;
    text-align: center;
}
.imagesmenu img{
	width: 250px;
	padding: 15px;
	filter: grayscale(60%);
	transition: 0.5s;
}
@media(max-width: 1100px){
    .imagesmenu img{
	    width: 140px;
    }
}
.imagesmenu img:hover{
	filter: grayscale(0);
	transform: scale(1.2);
}
/*-------------Einde-Fotopaginas---------------*/

.album {
    text-align: center;
}







/* Verberg de pagina-inhoud standaard */
        #beveiligde-inhoud {
            display: none;
        }
        /* Stijl voor het inlogscherm */
        #inlog-scherm {
            text-align: center;
            margin-top: 100px;
            font-family: Arial, sans-serif;
        }