/* General styles */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: white;
    font-family: 'Montserrat Classic', sans-serif;
    font-weight: 500;
}

body, html {
    overflow-x: hidden;
    -webkit-user-select: none; /* Specifiek voor WebKit/Blink browsers zoals Safari en Chrome */
    -moz-user-select: none; /* Mozilla Firefox */
    user-select: none; 
}


/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0 2rem;
    background-color: rgba(0, 0, 0, 0.8);
    height: 80px; 
    z-index: 10;
}

/* Navbar */
.navbar{
    width: 100%;
    height: 80px;
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 70px;
    width: auto;
}

.navbar .navContent{
    display: flex;
    gap: 2rem;
}

.navContent li{
    list-style: none;
    position: relative;
}

.navContent a{
    font-size: 0.9rem;
    text-decoration: none;
    color: white;
}

.navContent a::before {
    content: '';
    position: absolute;
    bottom: 0; 
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: 0.3s;
}

.navContent a:hover::before {
    width: 100%;
}

.navbar .toggleBtn{
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

.dropDownMenu{
    display: none;
    position: absolute;
    right: 2rem;
    top: 100px;
    width: 300px;
    height: 0;
    background-color: rgba(30, 27, 27, 0.8); /* Achtergrondkleur met dezelfde tint als de navbar, met 80% dekking */
    border-radius: 10px;
    overflow: hidden;
    transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dropDownMenu.open{
    height: 240px;
}

.dropDownMenu li{
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropDownMenu li a{
    color: white;
}

/* Main */
main{
    margin: 0;
}

/* Frontpage */
.home{
    width: 100%;
    height: 70vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center; 
    overflow: hidden;
}

.homeVideo{
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
}

.homeContent{
    position: relative;
    padding-top: 60px; 
    text-align: center;
    color: white;
}

.homeContent h1{
    font-size: 2rem;
    margin-bottom: 3%;
    font-weight: bold;
}

.homeContent h2{
    font-size: 1.5rem;
}

/* Experience */
.experience {
    height: 60vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    background-image: url('assets/image/main/background-top.png');
    background-position: center;
    background-size: cover;
}

.experience::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: brightness(50%);
    z-index: 0;
}

.experienceHeading {
    width: 100%;
    z-index: 1;
}

.experienceHeading h2{
    font-size: 1.5rem;
    margin: 0;
    text-align: center;
}

.experienceContainer {
    width: calc(100% - 40px); /* Aangepast om padding te behouden */
    padding: 20px; /* Nieuwe padding om ruimte aan de zijkanten te behouden */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10vh;
    z-index: 2; 
}

.experienceContainer div {
    width: 30vh; /* Behoud van vierkante vorm door breedte */
    aspect-ratio: 1 / 1; /* Zorgt ervoor dat hoogte gelijk is aan breedte */
    background-size: cover;
    background-position: center;
}

.experience-stage {
    background-image: url('assets/svg/experience/stage.svg');
}

.experience-party {
    background-image: url('assets/image/pagina2/page2_party.png');
}

.experience-screen {
    background-image: url('assets/image/pagina2/page2_screens.png');
}

/* Our services */
.service {
    min-height: 70vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    gap: 5vh;

    position: relative;
    background-image: url('assets/image/main/background-middle-spotless.png');
    background-size: cover;
    background-position: bottom;
    overflow: hidden;
    background-repeat: no-repeat;
}

.service::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: brightness(70%);
    z-index: 0; 
}

.service > * {
    position: relative;
    z-index: 1;
}

.serviceHeading {
    text-align: center;
}

.serviceHeading h2{
    margin-top: 50px;
    font-size: 1.5rem;
    font-weight: bold;
}

.serviceHeading h3{
    font-size: 1.2rem;
}

.serviceContainer {
    width: 100%;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start; 
}

.serviceHero{
    width: 300px;
    margin: 25px 25px;
}

.serviceHeroImg{
    height: 200px;
}

.serviceHeroImg img {
    object-fit: cover;
    height: 100%; 
    width: 100%;
    outline: 2px solid black;
}

.serviceHeroVid {
    width: 100%; 
    height: 200px;
    overflow: hidden; 
    outline: 2px solid black;
}

.serviceVideo {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.serviceHeroHeading{
    margin: 15px 0 0 0;
}

.serviceHeroHeading h4{
    font-family: "DM Sans", sans-serif;
    font-size: 1.2rem;
    font-weight: bold;
}

.serviceHeroText p{
    font-family: "DM Sans", sans-serif;
}

.serviceHeroScreen, .serviceHeroVideo{
    text-align: left;
}

.serviceHeroEvent, .serviceHeroComputers{
    text-align: right;
}

/* Testimonials */
.testimonials{
    height: 70vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background-color: #020302;
    gap: 10px;
}

.testimonialsHeading h2{
    font-size: 1.5rem;
    margin: 0;
    text-align: center;
    font-weight: bold;
}

.divider { 
    text-align: center; 
    width: 30%;
  } 

.divider hr { 
    border: none; 
    height: 1px; 
    background-color: white; 
    margin: 20px 0; 
  } 

#slider {
    margin: 0 auto;
    width: 65%;
    max-width: 100%;
    text-align: center;
 }
 #slider input[type=radio] {
    display: none;
 }
 #slider label {
    cursor:pointer;
    text-decoration: none;
 }
 #slides {
    padding: 10px;
    background: #020302;
    position: relative;
    z-index: 1;
 }

.slideQuoteTop{
    position: absolute;

    left: -5%;
    top: -10%;

    height: 20vh;
    width: 20vh;

    z-index: 100;

    background-image: url(assets/image/pagina4/quote.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.slideQuoteBottom{
    position: absolute;

    right: -5%;
    bottom: -10%;

    height: 20vh;
    width: 20vh;

    z-index: 100;

    background-image: url(assets/image/pagina4/quote.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(180deg);
}

 #overflow {
    width: 100%;
    overflow: hidden;
    touch-action: pan-x; /* Voorkom verticaal scrollen bij aanraking */
 }
 #slide1:checked ~ #slides .inner {
    margin-left: 0;
 }
 #slide2:checked ~ #slides .inner {
    margin-left: -100%;
 }
 #slide3:checked ~ #slides .inner {
    margin-left: -200%;
 }
 #slide4:checked ~ #slides .inner {
    margin-left: -300%;
 }
 #slide5:checked ~ #slides .inner {
    margin-left: -400%;
 }
 #slides .inner {
    transition: margin-left 800ms cubic-bezier(0.770, 0.000, 0.175, 1.000);
    width: 500%;
    line-height: 0;
    height: 200px;
 }
 #slides .slide {
    width: 20%;
    float:left;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: #fff;
 }

 .slide_3 .slide-content h4{
    font-size: 1rem;
 }

.slide-content h4{
    font-family: "DM Sans", sans-serif;
    margin-bottom: 4%;
    font-size: 1rem;
}

.slide-content p{
    font-family: "DM Sans", sans-serif;
    font-weight: bold;
}

 #controls {
    margin: -180px 0 0 0;
    width: 100%;
    height: 50px;
    z-index: 3;
    position: relative;
 }
 #controls label {
    transition: opacity 0.2s ease-out;
    display: none;
    width: 50px;
    height: 50px;
    opacity: .4;
 }
 #controls label:hover {
    opacity: 1;
 }
 #slide1:checked ~ #controls label:nth-child(2),
 #slide2:checked ~ #controls label:nth-child(3),
 #slide3:checked ~ #controls label:nth-child(4),
 #slide4:checked ~ #controls label:nth-child(5),
 #slide5:checked ~ #controls label:nth-child(1) {
    background: url(https://image.flaticon.com/icons/svg/130/130884.svg) no-repeat;
    float:right;
    margin: 0 -50px 0 0;
    display: block;
 }
 #slide1:checked ~ #controls label:nth-last-child(2),
 #slide2:checked ~ #controls label:nth-last-child(3),
 #slide3:checked ~ #controls label:nth-last-child(4),
 #slide4:checked ~ #controls label:nth-last-child(5),
 #slide5:checked ~ #controls label:nth-last-child(1) {
    background: url(https://image.flaticon.com/icons/svg/130/130882.svg) no-repeat;
    float:left;
    margin: 0 0 0 -50px;
    display: block;
 }
 #bullets {
    margin: 150px 0 0;
    text-align: center;
 }
 #bullets label {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius:100%;
    background: #ccc;
    margin: 0 10px;
 }
#slide1:checked ~ #bullets label:nth-child(1),
#slide2:checked ~ #bullets label:nth-child(2),
#slide3:checked ~ #bullets label:nth-child(3),
#slide4:checked ~ #bullets label:nth-child(4),
#slide5:checked ~ #bullets label:nth-child(5) {
    background: #444;
 }

/* About Us */
.aboutUsHeading {
    width: 100%;
    height: 25vh;

    background-image: url('assets/image/main/background-bottom.png');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
}

.aboutUsHeading h2{
    font-size: 1.5rem;
    font-weight: bold;
}

.aboutUsBackground{
    height: 80vh;
    width: 100%;

    position: relative;

    background-image: url('assets/image/pagina6/officebackground2x.png');
    background-position: center;
    background-size: cover;
}

.aboutUsContainer{
    height: 25vh;

    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background-image: url('assets/image/pagina6/banner.png');
    background-position: center;
    background-size: 100% 100%;
}

.aboutUsTekst{
    width: 85%;
    text-align: center;
    font-size: 1rem;
}

.aboutUsTekst p{
    font-family: "DM Sans", sans-serif;
}

/* Contact Us */
.contactUsContainer{
    margin-top: 7vh;
    position: absolute;

    height: 49vh;
    width: 90%;

    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
}

.contactContainer, .formContainer {
    width: 40%; 
    margin: 10px; 
}

.contactInput, .contactInputMsg {
    width: 100%; 
    max-width: 400px; 
}

.contactContainer{
    height: 45vh;

    display: flex;
    justify-content: center;
}

.contactUsHeading{
    display: flex;
    justify-content: center;

    margin-top: 6vh;
}

.contactUsHeadingInfoContainer{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 5px;
}

.contactUsHeadingContainer{
    cursor: pointer;
}

.contactUsHeadingContainer:hover{
    color: #a8b0b8;
}

.contactUsHeadingContainer h3{
    text-align: left;
    font-size: 1.2rem;
    margin-top: 5vh;
}

.contactUsHeadingContainer h2{
    font-size: 1.5rem;
    text-align: left;
    font-weight: bold;
}

.contactUsContainer{
    user-select: text;
}

.contactGegevens p{
    margin-top: 5px;
}

.contactGegevens a {
    color: white; /* Hier pas je de kleur van de links aan */
}

.emailContact {
    cursor: pointer;
}

.emailContact:hover {
    color: #a8b0b8;
}

.contactGegevensIcon{
    margin-right: 3px;
}

.formContainer {
    height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.formInput {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
    color: white; 
}

.contactInput, .contactInputMsg {
    width: 400px;
    border: none;
    border-bottom: 2px solid #ccc;
    font-weight: 500;
    color: white;
    background-color: transparent;
    padding-left: 10px; 
}

.contactInput::placeholder, .contactInputMsg::placeholder {
    color: white; 
    opacity: 1; 
}

.contactInput:focus, .contactInputMsg:focus {
    outline: none;
    border-bottom-color: #1e1b1b; 
}

.contactInputMsg {
    padding-top: 15px;
    height: 120px; 
    padding-left: 10px; 
}

.submitButton {
    padding: 10px 20px;
    background-color: #292527; 
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    border-radius: 25px; 
}

.submitButton:hover {
    background-color: darken(#1e1b1b, 10%); 
    transform: scale(1.05); 
}

.submitButton:focus {
    outline: 2px solid #1e1b1b; 
}

.submitButton:active {
    background-color: #333;
}

/* Nieuwe stijlen voor het uitschakelen van automatisch invullen */
/* Chrome, Safari en Edge specifieke pseudo-selector voor een transparante achtergrond bij automatisch invullen */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px rgba(0, 0, 0, 0) inset !important; /* semi-transparant wit */
    -webkit-text-fill-color: rgb(0, 0, 0) !important;
}

/* Firefox specifieke pseudo-selector voor het uitschakelen van de standaard styling */
input:-moz-ui-invalid {
    box-shadow: none !important;
}

input:focus, textarea:focus {
    outline: none !important;
    border-bottom: 2px solid #1e1b1b !important;
}

/* Footer */
.footerpage{
    height: 20vh;
    background-color: #1e1b1b;

    display: flex;
    justify-content: end;
    align-items: center;
}

.footericon{
    font-size: 1.5em;
}

/* Responsive design */
@media(max-width: 1400px) {
    .service{
        min-height: 60vh;
    }

    .serviceHero{
        width: 250px;
        margin: 25px 10px;
    }
    
    .serviceHeroImg{
        height: 180px;
    }
    
    .serviceHeroVid {
        height: 180px;
    }
    
    /* Testimonials */
    .slideQuoteTop {
        height: 15vh;
        width: 15vh;

        left: -7%;
        top: -13%;  
    }
    
    .slideQuoteBottom {
        height: 15vh;
        width: 15vh;

        right: -7%;
        bottom: -13%; 
    }
}

@media(max-width: 1024px) {
    /* Navbar */
    .navbar .navContent{
        display: none;
    }

    .navbar .toggleBtn{
        display: block;
    }

    .dropDownMenu{
        display: block;
        z-index: 100;
    }

    /* Experience */
    .experienceContainer {
        gap: 4vh; 
    }

    /* Our Services */
    .service{
        min-height: 70vh;
    }

    .serviceHero{
        width: 300px;
        margin: 25px 25px;
    }
    
    .serviceHeroImg{
        height: 200px;
    }
    
    .serviceHeroVid {
        height: 200px;
    }

    .serviceHeroVideo{
        text-align: right;
    }
    
    .serviceHeroEvent{
        text-align: left;
    }

    /* Testimonial */
    #slider {
        width: 80%;
    }

    .slide-content p {
        font-size: 0.8rem;
    }

    .slideQuoteTop {
        height: 10vh;
        width: 10vh;

        left: -5%;
        top: -13%;  
    }
    
    .slideQuoteBottom {
        height: 10vh;
        width: 10vh;

        right: -5%;
        bottom: -13%; 
    }

    /* AboutUs */
    .aboutUsTekst{
        width: 85%;
    }

    /* Contact Us */
    .contactInput, .contactInputMsg {
        width: 350px;
    }
    
    .contactInputMsg {
        height: 100px; 
    }
}

@media(max-width: 767px) {
    /* Navbar */
    .dropDownMenu{
        left: 2rem;
        width: unset;
        top: 85px;
    }

    /* Experience */
    .experience{
        height: 50vh;
    }

    .experienceContainer {
        width: calc(100% - 20px); /* Aangepaste padding voor kleinere schermen */
        padding: 10px;
    }

    .experienceContainer div {
        width: 40vh; /* Grotere breedte voor betere visuele balans */
    }

    .experienceHeading h3 {
        font-size: 1.5rem;
    }

    /* Our Services */
    .serviceHero{
        text-align: center;
    }

    #slider {
        width: 85%; /* maakt de slider breder op kleinere schermen */
    }

    .slide-content h4 {
        font-size: 1rem;
    }

    .slide-content.slide-content-long h4 {
        font-size: 0.9rem;  
    }

    .slide-content p {
        font-size: 0.9rem;
    }

    /* ContactUs */
    .aboutUsBackground{
        height: 100vh;
    }

    .contactUsContainer{
    
        height: 70vh;
        width: 100%;
    
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .contactUsHeadingInfoContainer{
        align-items: center;
    }

    .contactUsHeadingContainer:hover{
        color: white;
    }

    .contactContainer{
        width: 70%;
    }

    .contactInput, .contactInputMsg {
        width: 350px;
    }
    
    .contactInputMsg {
        height: 100px; 
    }
}

@media(max-width: 575px) {
    /* Homecontent */
    .homeContent h1{
        font-size: 1.3rem;
        margin-bottom: 3%;
        font-weight: bold;
    }
    
    .homeContent h2{
        font-size: 1rem;
    }    

    /* Experience */
    .experienceHeading h2{
        font-size: 1rem;
    }
    .experienceContainer {
        gap: 2vh;
    }
    
    /* Our Services */
    .serviceHeading{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .serviceHeading h2{
        font-size: 1.3rem;
    }
    
    .serviceHeading h3{
        width: 80%;
        font-size: 1rem;
    }

    /* Testimonial */
    .testimonialsHeading h2 {
        font-size: 1.3rem;
    }

    #slider {
        width: 75%; /* maakt de slider breder op kleinere schermen */
    }

    .slide-content h4 {
        font-size: 0.7rem;
    }

    .slide-content.slide-content-long h4 {
        font-size: 0.6rem;  
    }

    .slide-content p {
        font-size: 0.6rem;
    }
    
    .slideQuoteTop {
        height: 12vh;
        width: 12vh;

        left: -10%;
        top: 5%;  
    }
    
    .slideQuoteBottom {
        height: 12vh;
        width: 12vh;

        right: -10%;
        bottom: 5%; 
    }

    /* AboutUs */
    .aboutUsHeading h2{
        font-size: 1.3rem;
    }
    
    .aboutUsBackground{
        height: 150vh;
        width: 100%;
    }

    .aboutUsContainer{
        height: 35vh;
    }

    .aboutUsTekst p{
        font-size: 0.8rem;
    }
        
    /* ContactUs */
    .contactUsContainer{
        height: 100vh;
        width: 100%;
        margin-top: 0;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}