/*current style -> http://paletton.com/#uid=1000u0kw0gcg2ndp3k4LybFXu6i #B95C5C, #A02323, #810000, #5D0000, #320000*/

body{
	background-color: black;
	margin: 0;
	font-family: Georgia;
}
h1{ /*kopen bij elk artikel fotoalbum etc */
	font-size: 18px;
	/*font-weight: bolder;*/
	color: #A0000;
}

/* sidebar style */
h2{
	text-align:center;
	color: rgb(255,255,255);
	font-family: Georgia;/*'Open Sans Condensed',sans-serif*/
	font-size: 18px;
	padding: 18px 0px 0px;
}

h3{ /*koppen boven elke pagina */
	font-size: 25px;
	/*font-weight: bolder;*/
	border-bottom: 1px solid #9a9595;
	margin: 0;
}
a{
	color: #100000;
	text-decoration: none;
}
a:hover{
	font-style: normal;
}

b{
	color: #100000;
	text-decoration: none;
	font-weight: bolder;
}

b:hover{
	font-style: italic;
}

#actingReel{
	margin: 0 auto 0 auto;
	max-width: 960px;
	height: 540px;
	align-items: center;
}

#wrapper{
	margin: 10px auto 0 auto;
	background-color: white;
	max-width: 960px;
	min-width: 650px;
	overflow:auto;
}
#main{
	margin: 20px;
	min-height: 500px;
	overflow:auto;
	text-align: center;
	/*background-color: orange;*/
}

/*navigation style */
#navigation{
	/*max-width: 100%;*/
	height: 80px;
	background-color: black;
	position: relative;
}
.home{
	opacity: 1;
	size: 60px, 60px;
}
.home:hover{
	opacity: 1,1;
	size: 60px, 60px;
}
a.button{
	color: white;
	text-decoration: none;
	font-size:18px;
	text-align:center;
	padding: 19px 15px 18px 15px;
}

a.button:hover{
	background-color: white;
	color: black; 
}

/*
a.button.active{
	border: 2px solid white;
	background-color: gray;
}

a.button.active:hover{
	background-color: white;
		color: black; 
}*/
/* end of navigation style*/

.titel{
	font-size:48px;
	color: #810000;
	font-weight: bold;
	position: absolute;
	bottom: 16px;
	left: 0;
}

#footer{ 
	padding-top: 5;
    background-color: #810000;
    height: 45px;
    color: #FFFFF3;
	font-size: 13px;
	font-family: Arial, Verdana;
	margin-top: 50px;
	margin: auto;
	max-width: 960px;
	min-width: 650px;
	text-align: center;
}
#opvul{
	height: 10px;
	background-color: black;
}

/* slider style */
.slider{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
/*
.slider{
    height: 100vh;
    margin-top: -50px;
    position: relative;
}*/

.slider .list .item{
    position: absolute;
    inset: 0 0 0 0;
    overflow : hidden;
    opacity : 0;
    transition : .5s;
}

.slider .list .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider .list .item::after{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background-image: linear-gradient(
        to top, #000 40%, transparent
    );
}

.slider .list .item .content{
    position: absolute;
    left: 10%;
    top: 20%;
    width: 500px;
    max-width: 80%;
    z-index: 1;
}

.slider .list .item .content p:nth-child(1){
    text-transform: uppercase;
    letter-spacing: 10px;
}

.slider .list .item .content h2{
    font-size: 100px;
    margin: 0;
}

.slider .list .item.active{
    opacity: 1;
    z-index: 10;
}

@keyframes showContent {
    to{
        transform: translateY(0);
        filter: blur(0);
        opacity: 1;
    }
}

.slider .list .item.active p:nth-child(1),
.slider .list .item.active h2,
.slider .list .item.active p:nth-child(3){
    transform: translateY(30px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent .5s .7s ease-in-out 1 forwards;
}

.slider .list .item.active h2{
    animation-delay: 1s;
}

.slider .list .item.active p:nth-child(3){
    animation-duration: 1.3s;
}

.arrows{
    position: absolute;
    top: 30%;
    right: 50px;
    z-index: 100;
}

.arrows button{
    background-color: #eee5;
    border: none;
    font-family: monospace;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    font-size: x-large;
    color: #eee;
    transition: 0.5s;
}

.arrows button:hover{
    background-color: #eee;
    color: black;
}

.thumbnail{
    position: absolute;
    bottom: 50px;
    z-index: 11;
    display: flex;
    gap: 10px;
    width: 100%;
    height: 250px;
    padding: 0 50px;
    box-sizing: border-box;
    overflow: auto;
    justify-content: center;
}

.thumbnail::-webkit-scrollbar{
    width:0;
}

.thumbnail .item{
    width: 150px;
    height: 220px;
    filter: brightness(.5);
    transition: .5s;
    flex-shrink:0;
}

.thumbnail .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.thumbnail .item.active{
    filter: brightness(1.5);
}

.thumbnail .item .content{
    position: absolute;
    inset: auto 10px 10px 10px;
}

@media screen and (max-width:678px){
    .thumbnail{
        justify-content: start;
    }
    .slider .list .item .content h2{
        font-size: 60px;
    }
    .arrows{
        top:10%;
    }
}
/* end of slider style */


/* contact form style */
.contact-container{
    /*height: 100vh;*/
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.contact-left{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}

.contact-inputs{
	/*background-color: gray;*/
    width: 400px;
    height: 50px;
    border: none;
    outline: none;
    padding-left: 25px;
    font-weight: 500px;
    color: #666;
    border-radius: 50px;
	border: 1px solid black;
}

.contact-left textarea{
    height: 140px;
	min-height: 80px;
	max-height: 260px;
	max-width: 400px;
	min-width:400px;
    padding-top: 15px;
    border-radius: 20px;
}

.contact-inputs:focus{
    border: 2px solid #C34242;
}

.contact-inputs::placeholder{
    color: #a9a9a9;
}
.contact-left button{
    display: flex;
    align-items: center;
    padding: 15px 30px;
    font-size: 16px;
    color: #fff;
    gap: 20px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(270deg, #C34242, #A41223);
    cursor: pointer;
}

.contact-left button img{
    height: 15px;
}

/* end of contact form style */
