* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    margin: 0;
    font-family: 'Lato', sans-serif;
    background-color: #ffffff;
}

main {
    flex-grow: 1;
    flex-shrink: 0;
    flex-basis: auto;
}

.bottomnavigation {
    flex-shrink: 0;
}


/*OPMAAK HEADER EN NAVIGATION BAR*/

header {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
	flex-shrink: 0;
    width: 100%;
    padding: 1vw;
    font-family: 'Dancing Script', cursive;
    font-size: 3vw;
    text-shadow: 2px 2px 4px #000000;
    background-color: #c5a278;}

nav {
	display: flex;
	flex-shrink: 0;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1vw;
    background-color: #c5a278;
}

nav a {
    padding: 1vw 0.5vw;
    text-decoration: none;
    font-size: 1vw;
    letter-spacing: 0.1vw;
    color: black;
    background-color:  #c5a278;
    cursor: pointer;
}

nav a:hover {
    text-decoration: underline;
} 

.actievepagina {
    color: #be5b0a;
    font-weight: bold;
}

.actievetaal {
    color: #be5b0a;
    font-weight: bold;
}

.buttonmobiel {
    display: none;
}

/*Header en navigation Tablet*/

@media only screen and (max-width: 1366px) and (orientation: landscape) {
    header {
        font-size: 4vw;
    }

    nav a {
        font-size: 1.5vw;
        letter-spacing: 0.2vw;
    }
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
    header {
        font-size: 4vw;
    }

    nav a {
        font-size: 2vw;
        letter-spacing: 0.2vw;
    }
}


@media only screen and (max-width: 750px) and (orientation: portrait) {
    header {font-size: 5vw;}
    
    nav {
        flex-direction: column;
    }

    nav a {
        display: flex;
        justify-content: center;
        padding: 2vw 1vw;
        font-size: 3vw;
        letter-spacing: 0.3vw;
    }

    .languages {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    .languages a {
        padding: 2vw 3vw;
    }
}

/*Header en navigation Phone*/

@media only screen and (max-width: 480px) {
    header {
        font-size: 8vw;
    }

    nav a {
        padding: 3vw 0;
        font-size: 5vw;
        letter-spacing: 0.4vw;
    }

    .languages a {
        padding-left: 6vw;
        padding-right: 6vw;
        display: none;
    }

    .menuknoppen a {
        display: none;
    }
    
    .buttonmobiel {
        display: flex;
        margin: auto;
        text-decoration: none;
        border: none;
        font-size: 8vw;
        background-color: #c5a278;
    }

    .buttonmobiel:focus {
        outline: none;
        box-shadow: none;
    }

    .menuknoppen.mobiel a {
        display: flex;
    }

    .languages.mobiel a {
        display: flex;
    }
    
}

@media only screen and (max-width: 400px) {
    header {
        font-size: 9vw;
        padding: 4vw;
    }

    nav a {
        padding: 4vw 0;
        font-size: 6vw;
    }
}


/*OPMAAK BOTTOM NAVIGATION*/
.bottomnavigation {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1vw;
    background-color: #c5a278;
}

.bottomnavigation div a {   /*Deze eigenschappen gelden voor alle links*/
    padding: 1vw;
    text-decoration: none;
    color: black;
}

.socialmediabuttons {
    font-size: 1.2vw;
    margin-left: 2vw;
	color: black;
}

.sitemap {
    font-size: 1vw;
    letter-spacing: 0.1vw;
}

.sitemap:hover {
    text-decoration: underline;
} 

.socialmediabuttons a:hover {
    color: #be5b0a;
}

.copyright {
    font-size: 0.8vw;
}

#sitemapbutton.actievepagina {
    color: #be5b0a;
    font-weight: bold;
}


/*Bottom navigation Tablet*/

@media only screen and (max-width: 1366px) and (orientation: landscape) {
    .sitemap {
        font-size: 1.5vw;
        letter-spacing: 0.2vw;
    }

    .socialmediabuttons {
        font-size: 2.0vw;

    }

    .socialmediabuttons a {
        margin: 0 1.5vw;
    }

    .copyright {
        font-size: 1.2vw;
    }
}


@media only screen and (max-width: 1024px) and (orientation: portrait) {
    .sitemap {
        font-size: 2vw;
        letter-spacing: 0.2vw;
    }

    .socialmediabuttons {
        font-size: 2.5vw;
    }

    .socialmediabuttons a {
        margin: 0 1.5vw;
    }

    .copyright {
        font-size: 1.5vw;
    }
}

@media only screen and (max-width: 750px) and (orientation: portrait) {
    .bottomnavigation {
        flex-direction: column;
        padding: 3vw 0;
    }

    .sitemap {
        font-size: 3vw;
        letter-spacing: 0.3vw;
    }

    .socialmediabuttons {
        font-size: 3.5vw;
    }

    .socialmediabuttons a {
        margin: 3vw;
    }

    .copyright {
        font-size: 2.5vw;
    }
}

/*Bottom navigation Phone*/

@media only screen and (max-width: 480px) {
    .sitemap {
        font-size: 5vw;
        letter-spacing: 0.4vw;
    }

    .socialmediabuttons {
        font-size: 5.5vw;
        padding: 3vw 0;
    }

    .copyright {
        font-size: 3.5vw;
    }
}

@media only screen and (max-width: 400px) {
    .sitemap {
        font-size: 6vw;
    }

    .socialmediabuttons {
        font-size: 6.5vw;
    }

    .copyright {
        font-size: 4vw;
    }
}


/*OPMAAK INDEX MAIN*/
.homepagina {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fotocarrousel {
    width: 40%;
    position: relative;
    margin: auto;
}

.mijnfotos img {
    max-width: 100%;
    height: 100%;
}

.vorige, .volgende {
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -1.5vw;
    border-radius: 0 3px 3px 0;
    padding: 1vw;
    color: black;
    font-weight: bold;
    font-size: 1vw;
    transition: 0.6s ease;
    user-select: none;
    cursor: pointer;
}

.volgende {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.vorige:hover, .volgende:hover {
    background-color: rgba(0,0,0,0.6);
}

.mijnfotos {
    display: none;
}

#eerstefoto {
    display: flex;
}

/*Main index Tablet*/

@media only screen and (max-width: 1366px) and (orientation: landscape) {
    .fotocarrousel {
        width: 60%;
    }

    .vorige, .volgende {
        margin-top: -2.25vw;
        font-size: 1.5vw;
        padding: 1.5vw;
    }
}

@media only screen and (max-width: 1024px) and (orientation: portrait)  {
    .fotocarrousel {
        width: 80%;
    }

    .vorige, .volgende {
        margin-top: -3vw;
        font-size: 2vw;
        padding: 2vw;
    }
}

@media only screen and (max-width: 600px) and (orientation: portrait) { 
    .fotocarrousel {
        width: 90%;
    }
}

/*Main index phone*/

@media only screen and (max-width: 480px) {
    .fotocarrousel {
        padding: 5vw 0;
    }

    .vorige, .volgende {
        margin-top: -4.5vw;
        font-size: 3vw;
        padding: 3vw;
    }
}


/*OPMAAK BIOGRAFIE*/

.mainbio {
    display: flex;
    align-items: center;
}

.biografie {
    display: flex;
    align-content: flex-end;
    justify-content: center;
    padding-left: 3vw;
    text-align: justify;
    font-size: 0.8vw;
    line-height: 1.8;
}

h1 {
    font-size: 1.4vw;
}

.eerstegedeeltebio {
    flex-basis: 33.33%;
    padding: 2vw;
    align-self: flex-start;
}

.tweedegedeeltebio {
    flex-basis: 33.33%;
    padding: 2vw;
    align-self: flex-end;
}

.derdegedeeltebio {
    flex-basis: 33.34%;
    padding: 2vw;
    align-self: center;
    text-align: center;
}

.portretbiografie {
    width: 65%;
    height: auto;
    border-radius: 0.5vw;
}


/*Bio Desktop*/

@media only screen and (max-width: 1536px) {
    .biografie {
        font-size: 1vw;
    }

    .portretbiografie {
        width: 75%;
    }
}


/*Bio Tablets*/

@media only screen and (max-width: 1366px) and (orientation: landscape) {
    .biografie {
        font-size: 1.25vw;
        padding-left: 5vw;
    }

    h1 {
        font-size: 2.5vw;
    }

    .derdegedeeltebio {
        align-self: flex-start;
        padding-top: 15vw;
    }

    .portretbiografie {
        width: 100%;
    }
}

@media only screen and (max-width: 1260px) and (orientation: landscape) {
    .biografie {
        font-size: 1.50vw;
    }
}

@media only screen and (max-width: 1100px) and (orientation: landscape) {
    .biografie {
        font-size: 1.6vw;
        flex-wrap: wrap;
        justify-content: left;
    }

    .eerstegedeeltebio {
        flex-basis: 60%;
        order: 1;
        padding-bottom: 0;
    }

    .tweedegedeeltebio {
        flex-basis: 60%;
        order: 3;
        align-self: start;
        padding-top: 0;
    }

    .derdegedeeltebio {
        align-self: flex-start;
        padding-top: 12vw;
        order: 2;
    }
}
   

@media only screen and (max-width: 1024px) and (orientation: portrait) { 
    .biografie {
        flex-wrap: wrap;
        font-size: 2vw;
        padding-left: 0;
    }

    h1 {
        font-size: 3vw;
    }

    .eerstegedeeltebio {
        flex: 50%;
        padding: 2vw 2.5vw 2vw 5vw;
    }

    .tweedegedeeltebio {
        flex: 50%;
        padding:  2vw 5vw 2vw 2.5vw;
    }

    .derdegedeeltebio {
        flex: 100%;
        padding-bottom: 5vw;
    }

    .portretbiografie {
        width: 50%;
    }
}

@media only screen and (max-width: 750px) and (orientation: portrait) {
    .biografie {
        flex-direction: column;
        font-size: 2.75vw;
        padding: 5vw 6vw 5vw 6vw;
    }

    .eerstegedeeltebio, .tweedegedeeltebio {
        flex: 100%;
        align-self: flex-start;
        padding: 0;
    }

    .derdegedeeltebio {
        padding-top: 4vw;
    }
    
    .portretbiografie {
        width: 70%;
    }
}

/*Bio Phones*/

@media only screen and (max-width: 480px) {
    .biografie {
        font-size: 4vw;
        padding: 1vw 6vw 5vw 6vw;
    }

    h1 {
        font-size: 7vw;
    }

    .portretbiografie {
        width: 90%;
    }
}

@media only screen and (max-width: 400px) {
    .biografie {
        font-size: 5vw;
    }
}


/***OPMAAK REPERTOIRE***/

.repertoirepagina {
    position: relative;
    padding-left: 15vw;
    padding-top: 3vw;
    padding-bottom: 3vw;
}

.repertoirebuttons {
    width: 15%;
    float: left;
    border: 1px solid #ccc;
    border-right: none;
    border-bottom: none;
    background-color: #f1f1f1;
}

.repertoirebutton {
    width: 100%;
    display: block;
    padding: 0.8vw;
    border: none;
    border-bottom: 1px solid #ccc;
    outline: none;
    text-align: left;
    color: black;
    cursor: pointer;
    transition: 0.3s;
    font-size: 0.8vw;
}

.repertoirebutton:hover {
    background-color: #ddd;
}

h3 {
    font-size: 1vw;
}

.repertoirelijst {
    width: 60%;
    height: auto;
    float: left;
    padding: 0px 2vw 3vw 2vw;
    border: 1px solid #ccc;
    text-align: center;
    font-size: 0.8vw;
    display: none;
}

#oratorium {
    display: block;
}

caption  {
    font-weight: bold;
    padding: 1vw;
}

table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.8vw;
}

th {
    color: white;
    background-color: black;
}

th, td {
    padding: 0.5vw;
    border: 1px solid #ddd;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

.liederencyclus {
    font-style: italic;
}

/*Repertoire Desktop*/


@media only screen and (max-width: 1536px) {
    .repertoirepagina {
        padding-left: 10vw;
        padding-bottom: 5vw;
    }

    .repertoirelijst {
        width: 70%;
    }
}


/*Repertoire Tablets*/

@media only screen and (max-width: 1366px) and (orientation: landscape) {
    .repertoirepagina {
        padding-left: 3vw;
        padding-bottom: 5vw;
    }

    .repertoirebuttons {
        width: 100%;
        display: flex;
        border: none;
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: 1vw;
        background-color: white;
    }

    .repertoirebutton {
        width: 23%;
        padding: 1.5vw;
        border: none;
        border: 1px solid #ccc;
        border-radius: 5px;
        margin: 0.5vw;
        text-align: center;
        background-color: #f1f1f1;
        font-size: 1.5vw;
    }

    h3 {
        font-size: 1.75vw;
    }

    .repertoirelijst {
        width: 95%;
        border: none;
        margin-top: 1vw;
        padding: 0;
        text-align: left;
        font-size: 1.5vw;
    }

    table {
       font-size: 1.5vw;
    }

    th, td {
        padding: 1vw;
    }
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
    .repertoirepagina {
        padding-left: 5vw;
        padding-bottom: 5vw;
    }
    
    .repertoirebuttons {
        width: 95%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: 1vw;
        background-color: white;
    }

    .repertoirebutton {
        width: 25%;
        padding: 1.5vw;
        margin: 0;
        border-right: 1px solid #ccc;
        text-align: center;
        background-color: #f1f1f1;
        font-size: 1.8vw;
    }

    h3 {
        font-size: 2.5vw;
    }

    .repertoirelijst {
        width: 95%;
        border: none;
        margin-top: 1vw;
        padding: 0;
        text-align: left;
        font-size: 1.8vw;
    }

    table {
        font-size: 1.8vw;
    }
 

    th, td {
        padding: 1vw;
    }
}

@media only screen and (max-width: 900px) and (orientation: portrait) {
    .repertoirepagina {
        padding-left: 3vw;
        padding-bottom: 5vw;
    }

    .repertoirebutton {
        width: 50%;
        font-size: 2vw;
    }

    .repertoirelijst {
        width: 97%;
        font-size: 2vw;
    }

    table {
        font-size: 2vw;
    }

    th, td {
        padding: 1.2vw;
    }
}

@media only screen and (max-width: 800px) and (orientation: portrait) {
    .repertoirepagina {
        padding-bottom: 10vw;
    }
    
    .repertoirebutton {
        padding: 2.5vw;
        font-size: 2.5vw;
    }

    .repertoirelijst {
        font-size: 2.5vw;
    }

    h3 {
        font-size: 2.5vw;
    }

    table {
        font-size: 2vw;  
    }

    th, td {
        padding: 1.5vw 1vw;
    }
}


@media only screen and (max-width: 700px) and (orientation: portrait) {
    .repertoirebutton {
        padding: 2.5vw;
        font-size: 3vw;
    }

    h3 {
        font-size: 3vw;
    }

    .repertoirelijst {
        font-size: 3vw;
    }
}

/*Repertoire Phones*/

@media only screen and (max-width: 480px) {
    .repertoirebutton {
        font-size: 3.5vw;
        padding: 3.5vw;
    }

    h3 {
        font-size: 4vw;
    }

    .repertoirelijst {
        font-size: 3.5vw;
    }

    table {
        font-size: 2.5vw;  
    }
}


@media only screen and (max-width: 400px) {
    .repertoirebutton {
        font-size: 4.5vw;
        padding: 4vw;
    }

    h3 {
        font-size: 5vw;
    }

    .repertoirelijst {
        font-size: 4.5vw;
    }
}


/*AUDIOPAGINA OPMAAK MAIN*/

.audiopagina {
    position: relative;
    padding: 3vw 12vw;
}

.audiotoelichting {
    font-size: 0.8vw;
    line-height: 2vw;
}

/* Audio Tablet*/

@media only screen and (max-width: 1366px) and (orientation: landscape) {
    .audiopagina {
        padding: 2vw 5vw;
    }

    .audiotoelichting {
        font-size: 1.25vw;
        line-height: 3vw;
    }
}

@media only screen and (max-width: 1260px) and (orientation: landscape) {
    .audiotoelichting {
        font-size: 1.50vw;
        line-height: 3.5vw;
    }
}

@media only screen and (max-width: 1100px) and (orientation: landscape) {
    .audiotoelichting {
        font-size: 1.75vw;
        line-height: 4vw;
    }
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
    .audiopagina {
        padding: 2vw 5vw;
    }

    .audiotoelichting {
        font-size: 2vw;
        line-height: 4.5vw;
    }
}

@media only screen and (max-width: 750px) and (orientation: portrait) { 
    .audiotoelichting {
        font-size: 2.75vw;
        line-height: 6vw;
    }
}

/* Audio Phone */

@media only screen and (max-width: 480px) {
    .audiopagina {
        padding: 2vw 5vw;
    }

    .audiotoelichting {
        font-size: 4vw;
        line-height: 8vw;
    }
}


@media only screen and (max-width: 400px) {
    .audiotoelichting {
        font-size: 5vw;
        line-height: 10vw;
    }
}


/*CONTACTFORMULIER OPMAAK MAIN*/

main.contactpagina {
    position: relative;
    padding: 2vw 25vw 4vw 25vw;
    font-size: 0.8vw;
}

.contactformulier {
    margin-top: 2vw;
    padding: 1vw;
    border-radius: 5px;
    background-color: #f2f2f2;
    font-size: 0.8vw;
}

input[type=text], 
textarea {
    width: 100%;
    display: inline-block;
    margin: 0.5vw 0;
    padding: 0.7vw 1.2vw;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: none;
    font-size: 0.8vw;
}

input[type=submit] {
    width: 100%;
    margin: 0.5vw 0;
    padding: 0.8vw 1.2vw;
    border: none;
    border-radius: 4px;
    color: white;
    background-color: black;
    cursor: pointer;
    font-size: 0.8vw;
}

input[type=submit]:hover {
    background-color: #be5b0a;
}

.error {
    color: red;
}

.succes {
    color: green;
}


/* Contact Tablet*/

@media only screen and (max-width: 1366px) and (orientation: landscape) {
    main.contactpagina {
        font-size: 1.25vw;
    }

    .contactformulier {
        margin-top: 3vw;
        padding: 1vw;
        font-size: 1.25vw;
    }

    input[type=text],
    textarea {
        margin: 0.5vw 0;
        padding: 1vw 1vw;
        font-size: 1.25vw;
    }

    input[type=submit] {
        margin: 0.5vw 0;
        padding: 1vw 1.4vw;
        font-size: 1.25vw;
    }
}


@media only screen and (max-width: 1100px) and (orientation: landscape) {
    main.contactpagina {
        padding: 2vw 5vw 4vw 5vw;
        font-size: 1.6vw;
    }

    .contactformulier {
        font-size: 1.75vw;
    }

    input[type=text],
    textarea {
        font-size: 1.75vw;
    }

    input[type=submit] {
        font-size: 1.75vw;
    }
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
    main.contactpagina {
        padding: 2vw 5vw 4vw 5vw;
        font-size: 2vw;
    }

    .contactformulier {
        margin-top: 3vw;
        padding: 1vw;
        font-size: 2vw;
    }

    input[type=text],
    textarea {
        margin: 0.5vw 0;
        padding: 1vw 1vw;
        font-size: 2vw;
    }

    input[type=submit] {
        margin: 0.5vw 0;
        padding: 1vw 1.4vw;
        font-size: 2vw;
    }
}

@media only screen and (max-width: 750px) and (orientation: portrait) { 
    main.contactpagina {
        font-size: 2.75vw;
    }

    .contactformulier {
        font-size: 2.75vw;
    }

    input[type=text],
    textarea {
        font-size: 2.75vw;
    }

    input[type=submit] {
        font-size: 2.75vw;
    }
}


/* Contact Phone*/

@media only screen and (max-width: 480px) {
    main.contactpagina {
        padding: 2vw 5vw 10vw 5vw;
    }
    p.contactpagina {
        font-size: 4vw;
    }

    .contactformulier {
        font-size: 4vw;
        margin-top: 10vw;
        padding: 3vw;
    }

    input[type=text],
    textarea {
        margin: 1vw 0;
        padding: 1.5vw 2vw;
        font-size: 5vw;
    }

    input[type=submit] {
        margin: 2vw 0;
        padding: 3vw 1.2vw;
        font-size: 4vw;
    }
}


@media only screen and (max-width: 400px) {
    p.contactpagina {
        font-size: 5vw;
    }

    .contactformulier {
        font-size: 5vw;
    }
}

/*SITEMAP OPMAAK MAIN*/

.sitemappagina {
    padding: 4vw 16vw 0 16vw;
    text-align: center;
}

.sitemappagina h1 {
    padding: 0 6vw;
    text-align: left;
}

.sitemappagina h3 {
    text-align: center;
}

.sitemappagina div {
    float: left;
    width: 33.33%;
    padding: 0 6vw;
}

.sitemappagina div a {
    display: block;
    width: 100%;
    background-color:#f1f1f1 ;
    padding: 0.5vw;
    border: 1px solid #ccc ;
    border-radius: 5px;
    color: black;
    text-decoration: none;
    text-align: center;
}

@media only screen and (max-width: 1366px) and (orientation: landscape) {
    .sitemappagina {
        padding: 4vw 10vw 0 8vw;
    }
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
    .sitemappagina {
        padding: 4vw 10vw 0 8vw;
    }
}

@media only screen and (max-width: 480px) {
    .sitemappagina {
        padding: 0 0 15vw 0;
    }

    .sitemappagina h1 {
        margin-bottom: 0;
        padding: 0 3vw;
        text-align: left;
    }

    .sitemappagina div {
        padding: 0;
    }

    .sitemappagina div a {
        width: 80%;
        margin: auto;
    }
}