/* Vloeiend scrollen over de gehele pagina */
html {
    scroll-behavior: smooth; /* */
}
/* text */
h0	 {
	font-size:40px;
	}
body {
	font-family: sans-serif;
	margin: 20;
	padding: 0;
	line-height: 1.6;
	background-color: #f4f4f4;
	margin-top: 0px;
}

header {
    background-color: #333;
    color: white;
	position: sticky; /* Navigatie blijft bovenaan staan */
	top: 0;
	height:80px;
	z-index: 4;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
}

.brand-title {
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
}

.brand-title img{
		    width: 143px; /* Grootte van het logo */
            height: auto;
  			transition: filter 0.3s ease;
}

.brand-title img:hover {
  filter: brightness(140%);
}

.navbar-links ul {
    margin: 0;
    padding: 0;
    display: flex;
}

.navbar-links li {
    list-style: none;
}

.navbar-links a {
    color:#FF6600;
    text-decoration: none;
    padding: 1rem;
    display: block;
	font-size:20px;

}
.navbar-links a:hover{
	color:#CCCCCC;
}
	
.toggle-button {
    display: none; /* Standaard verborgen op desktop */
    height: 20px;
    width: 30px;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
}

/* Video Achtergrond Styling */
.video-background-container {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    color: white;
    text-align: center;
}

#video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
	border-radius: 5px;
}

.content-overlay {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
	list-style-type:none;
    z-index: 2;
}

.content-overlay li a {
    color:#FF6600;
	text-decoration:none;
    display: block;
	font-size:20px;
	font-style:normal;
	font-weight:bold
}

.content-overlay a:hover{
	color:#CCCCCC;
}

/* Algemene Sectie Styling */
main section {
    padding: 100px 50px 20px 20px;
    margin: 20px 0;
    /*background-color: white;
    max-width: 1600px;*/
    margin-left: auto;
    margin-right: auto;
	box-shadow: 0 0 10px rgba(0,0,0,0.1); 
	border-radius: 5px; 
}

/*foto's styling*/
#biografie {
background-color:
            display: flex;
            color: white;
            position: relative;
            overflow: hidden; /* Zorgt dat de animatie binnen de sectie blijft */
            background: linear-gradient(45deg, #FFBD33, #FF5733,  #000000); /* Basis gradient */
            background-size: 400% 400%;
            animation: gradientAnimation 15s ease infinite;
			
        }

        @keyframes gradientAnimation {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }

}


/* Carousel foto's */
.carousel-wrapper {
    max-width: 1500px;
    margin: 5px auto;
}

.owl-carousel .item {
    position: relative;
    text-align: center;
    transform: scale(0.8);
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0.5;
}

.owl-carousel .owl-item.center .item {
    transform: scale(1.05);
    opacity: 1;
    z-index: 3;
}

.owl-carousel img {
    width: 100%;
    border-radius: 5px;
}

/* Link knop */
.slide-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-170px);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 12px 24px;
    /*text-decoration: none;
    border-radius: 5px;*/
    display: none;
}

.owl-item.center .slide-btn {
    display: inline-block;
}

.owl-item.center .item {
    cursor: pointer;
}

.owl-item.center:hover .slide-btn {
    opacity: 1;
    transform: translateX(-50%) translateY(-170px);
}


.slide-btn,
.slide-text {
    margin-top: 16px;
    font-size: 16px;
    color: #000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.owl-item.center .slide-text {
    opacity: 1;
}

.slide-btn {
    bottom: 60px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 12px 24px;
    border-radius: 5px;
}

.slide-text {
    bottom: 20px;
    color: #FF6600;
    font-size: 16px;
    background: transparent;
    padding: 8px 16px;
    border-radius: 20px;
    white-space: nowrap;
}

/* Alleen zichtbaar op actieve slide */
.center .slide-btn {
    display: inline-block;
}

/*agenda styling*/
#agenda {
background-color:#999999;
color: white;

}

/*foto's styling*/
#fotos {
background-color:#FF9933;

}

#fotoarchief {
background-color:#333333;
color:#FFFFFF;
margin-top:0px;

}

/*media styling*/
#media {
color: white;
background-color:#000000;

}

#arrow-left,
#arrow-right {
  cursor: pointer;
  width: 20px;
  margin-left: 400px;
}

/*contact styling*/
#contact {
background-color:#FFFFFF;

}

/* Extra formuliersectie */
.form-extra {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Algemene rij */
.form-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

/* Labels links netjes onder elkaar */
.group-label {
    min-width: 120px;
    font-weight: 600;
}

/* Checkbox op één lijn */
.inline-label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
}

.inline-label input[type="checkbox"] {
    vertical-align: middle; /* checkbox op dezelfde hoogte als tekst */
    margin: 0;              /* verwijder standaard marge */
}


/* Radio buttons netjes onder elkaar */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.radio-group label {
    display: grid;
    grid-template-columns: 100px auto; /* vaste tekstkolom links, radiobutton rechts */
    align-items: center;
    cursor: pointer;
    column-gap: 0.6rem;
}

.radio-group input[type="radio"] {
    vertical-align: middle;  /* uitlijnen met tekst */
    margin: 0;                /* verwijder standaard marge */
    margin-top: 2px;          /* kleine offset indien nodig voor perfecte uitlijning */
    justify-self: start;      /* blijft netjes in de kolom */
}


/* Select uitlijning */
select {
    min-width: 180px;
}


/*links styling*/
#links {
background-color: #333333;
color: white;
}

#links  li {
text-decoration:none;
display: inline-block;
}

#links img {
  transition: filter 0.3s ease;
}

#links img:hover {
  filter: brightness(70%);
}

/* Contactformulier Styling */
form label {
    display: block;
    margin-bottom: 5px;
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
	font-family: inherit;
}

form button {
    background-color: #333;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

form button[type="submit"] {
    margin-top: 1.5rem; /* afstand tussen laatste input/pulldown en de knop */
    padding: 0.6rem 1.2rem; /* optioneel voor wat grotere klikbare knop */
    font-size: 1rem;        /* consistent met rest van formulier */
    cursor: pointer;
}

.bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color:#FF6600;
    transition: 0.4s ease-in-out;
}
.inline-label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    white-space: nowrap;   /* voorkomt afbreken */
}

/* Pulldown menu */
select {
    border-radius: 6px;        /* afgeronde hoeken */
    border: 1px solid #b5b5b5; /* grijze rand */
    padding: 6px 8px;
    font-family: inherit;     /* zelfde lettertype als rest */
    font-size: 1rem;
}

/* Algemene formulier-velden */
input[type="text"],
input[type="email"],
textarea,
select {
    border: 1px solid #b5b5b5; /* grijs */
    border-radius: 6px;
    padding: 6px 8px;
    font-family: inherit;
    font-size: 1rem;
    box-sizing: border-box;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #888;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05);
}


/* BIO SLIDER */
.bio-slider {
    position: relative;
	/*height: 200px;*/
    overflow: hidden;
}

.bio-slide {
    display: flex;
    align-items: flex-start;
    transform: translateX(100%);
    transition: transform 0.6s ease;
    position: absolute;   /* belangrijk */
    top: 0px;
	left: 0;
	width: 100%;
	height: 100%;
	padding-top: 40px; /* zelfde hoogte voor tekst & bandfoto */
    z-index: 1;
}

.bio-slide.active {
    transform: translateX(0);
    position: relative;
	z-index: 2;
}

.bio-text {
    max-width: 2000px;
}

/* SLIDE 1 – biografie tekst */
#bio-slide-1 {
    display: block;               /* geen flex */
}

#bio-slide-1 .bio-text {
    max-width: 2000px;
    width: 100%;
    margin: 0 auto;               /* centreren */
}

/* SLIDE 2 – band */
#bio-slide-2 {
    display: flex;
}

.bio-text,
.bandfoto-wrapper {
    margin-top: 0;
    padding-top: 0;
	width: 500px;
    flex-shrink: 0; 
}

/* Pijlen */
/* Slide 1 pijl */
#bio-slide-1 .bio-arrow.right {
    position: absolute;
    top: 0;               /* gelijk met bovenkant tekst */
    right: 0;             /* rechtsboven */
    z-index: 5;           /* boven tekst */
}

/* Slide 2 pijl */
#bio-slide-2 .bio-arrow.left {
    position: absolute;
    top: 0;               /* gelijk met bovenkant bandfoto */
    left: 0;              /* linksboven */
    z-index: 5;           /* boven bandfoto */
}

#bio-slide-1 .bio-arrow.right,
#bio-slide-2 .bio-arrow.left {
    margin: 0px;
}

.bio-arrow {
    width: 40px;
    cursor: pointer;
    margin-left: 20px;
}

.bio-arrow.left {
    margin-right: 20px;
}

/* SLIDE 2 */
.band-container {
    display: flex;
	align-items: flex-start;
    gap: 40px;
}

.bandfoto-wrapper {
    position: relative;
	z-index: 1;
    width: 500px;
	margin-top: 0;
	display: inline-block;
}

.bandfoto {
    width: 100%;
    border-radius: 5px;
}

.bandfoto-instructie {
    position: absolute;
    top: 0px; /* afstand vanaf de bovenkant van de foto */
    left: 50%;
    transform: translateX(-50%); /* horizontaal centreren */
    background-color: rgba(0, 0, 0, 0.5); /* semi-transparante achtergrond voor leesbaarheid */
    color: #fff;
    padding: 5px 5px;
    border-radius: 5px;
    font-size:12px;
    z-index: 10; /* boven de foto en knoppen */
    text-align: center;
}

/* Klikbare bandleden (percentages = responsive) */
.bandlid {
    position: absolute;
    background: transparent;
    border: none;
    cursor: pointer;
}

.hot-1 { top: 10%; left: 5%; width: 20%; height: 40%; }
.hot-2 { top: 10%; left: 37%; width: 20%; height: 40%; }
.hot-3 { top: 10%; left: 65%; width: 20%; height: 40%; }
.hot-4 { top: 45%; left: 25%; width: 20%; height: 40%; }
.hot-5 { top: 45%; left: 53%; width: 20%; height: 40%; }

/* Bandlid info */
.bandlid-info {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    max-width: none;            /* mag breder worden */
    text-align: left;
	flex: 1;
}

.bandlid-info img {
    width: 200px;               /* vaste foto */
    flex-shrink: 0;
	height: auto;
    border-radius: 5px;
}

.bandlid-info p {
    margin: 0;
    flex: 1;                    /* vult resterende ruimte */
	text-align: justify;
}


/* Mobiele stijl: vanaf een bepaalde schermbreedte */
@media (max-width: 768px) {
    .toggle-button {
        display: flex;
    }

    .navbar-links {
        position: fixed;
        right: -100%; /* Verberg het menu buiten beeld */
        top: 80px; /* Hoogte van de header */
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.7);
        width: 250px;
        height: 100%;
        transition: 0.3s ease-in-out; /* Vloeiende overgang */
        padding-top: 30px;
        z-index: 1000;
		margin-right:8px;
    }

    .navbar-links.active {
        right: 0; /* Schuif het menu in beeld */
    }

    .navbar-links ul {
        width: 100%;
        flex-direction: column;
    }

   .navbar-links li {
        text-align: center;
    }

    .navbar-links a {
        padding: 1rem;
		
    }

 /* Pijlen onderaan foto's */

    #arrow-left,
    #arrow-right {
        position: static;        /* uit absolute positie */
        transform: none;
        width: 36px;
	display: inline-block;
    }

    .carousel-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-bottom: 20px;
    }

    /* container voor pijlen */
    .carousel-wrapper::after {
        content: "";
        display: block;
        margin-top: 10px;
    }

    /* Bandfoto volledig responsive */
    .bandfoto-wrapper {
        width: 100%;
        max-width: 420px;
		margin: 0 auto;
    }

    .bandfoto {
        width: 100%;
        height: auto;
        display: block;
    }

    /* Zorgt dat klikzones exact meeschalen */
    .bandlid {
        touch-action: manipulation;
    }

 .bio-slider {
        height: auto;
    }

 .bio-slide {
        flex-direction: column;
    }

    .band-container {
        flex-direction: column;
        align-items: center;
    }

    .bandlid-info {
        /*margin-top: 20px;*/
		flex-direction: column;
        align-items: center;
        text-align: center;
    }
	
	    .bandlid-info p {
        margin-top: 10px;
        text-align: justify;
    }

    .bio-arrow {
        align-self: flex-end;
        margin: 10px 0;
    }
	
	/* contactformulier */
    .form-row {
        flex-direction: column;
        gap: 0.4rem;
    }

    .group-label {
        min-width: auto;
		min-width: auto; /* tekstkolom wordt flexibel */
    }

    select {
        width: 100%;
    }
	 .inline-label {
        white-space: normal;
		display: grid;
        grid-template-columns: 80px auto; /* zelfde breedte als radiotekst */
        align-items: center;
        gap: 0.4rem;
    }
.form-row {
        flex-direction: column; /* alle rijen onder elkaar */
        align-items: flex-start;
    }

    /* Radio buttons op mobiel blijven onder elkaar */
    .radio-group label {
        grid-template-columns: 80px auto; /* tekst + radio */
    }

}


    /* Animeren van het hamburger-icoon naar een kruisje (optioneel) */
    .toggle-button.active .bar:nth-child(2) {
        opacity: 0;
    }

    .toggle-button.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .toggle-button.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }


/* Overlay (vervaagde achtergrond) */
#modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 9998;
}

/* Modal venster */
#modal {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 90%;
    max-width: 1100px;
    height: 80vh;
    background: #fff;
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 9999;
    border-radius: 10px;
    overflow: hidden;
}

/* Actieve status */
#modal.active,
#modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

#modal.active {
    transform: translate(-50%, -50%) scale(1);
}

/* iframe */
#modal iframe {
    width: 100%;
    height: 100%;
}

/* Sluitknop */
#modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 50px;
    cursor: pointer;
    z-index: 10;
	color:#FF6600;
}

body.modal-open {
    overflow: hidden;
}

/* Sluitknop voor normale pagina's (geen modal) */
.page-close {
    position: fixed;
    top: 10px;
    right: 25px;
    font-size: 50px;
    text-decoration: none;
    color: #FF6600;
    z-index: 15;
    cursor: pointer;
	background: none;
    border: none;
    padding: 0;
    margin: 0;
    line-height: 1;
}

.page-close:focus {
    outline: none;
}

footer {
 text-align: center;
 color:#FF6600
 }
