* {
    font-family: "Caveat", cursive;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    display: flex;
    flex-direction: column; 
    height: auto;
    width: 100vw;
    overflow-x: hidden;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: black;
    color: white;
    width: 100%;  
    box-sizing: border-box;  
    padding: 10px 5%;
    z-index: 1000;
}

.navbar.scrolled {
    background: black; /* Black background when scrolled */
    backdrop-filter: blur(10px); /* Optional: adds a blur effect to the background */
}

.navbar.scrolled .nav-links a {
    color: white; /* Change text color to white when scrolled */
}

.navbar.scrolled .nav-links a:hover {
    border-bottom: 2px solid white; /* Optional: modify hover effect */
}
.logo {
    font-size: 24px;
    font-weight: bold;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
}
.nav-links li {
    display: inline;
}
.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 30px;
    transition: color 0.3s, border-bottom 0.3s;
    padding-bottom: 5px;
    font-weight: 400;
}
.nav-links a:hover {
    border-bottom: 2px solid white;
}
.nav-links a.active {
    color: #f8f1e5;
    font-weight: bold;
}



/* Stijlen voor het hamburger-menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    justify-content: space-around;
    align-items: center;
    height: 30px;
    width: 30px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 5px;
}

/* Responsieve stijlen */
@media screen and (max-width: 1024px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #333;
        position: absolute;
        top: 60px;
        left: 0;
        box-sizing: border-box;  /* Voorkom overflow door padding */
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
        text-align: center;
    }

    .menu-toggle {
        display: flex;
    }
}

@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #333;
        position: absolute;
        top: 60px;
        left: 0;
        box-sizing: border-box;  /* Voorkom overflow door padding */
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
        text-align: center;
    }

    .menu-toggle {
        display: flex;
    }
}

@media screen and (max-width: 425px) {
    .navbar {
        padding: 10px;
    }

    .nav-links li {
        font-size: 16px; /* Verklein de tekstgrootte voor kleinere schermen */
        margin: 8px 0; /* Verklein de marges tussen de menu-items */
    }

    .logo img {
        width: 100px; /* Kleinere logo voor kleinere schermen */
    }
}

@media screen and (max-width: 375px) {
    .navbar {
        padding: 8px;
    }

    .nav-links li {
        font-size: 14px; /* Verklein de tekstgrootte voor kleinere schermen */
        margin: 6px 0; /* Verklein de marges tussen de menu-items */
    }

    .logo img {
        width: 90px; /* Nog kleinere logo voor nog kleinere schermen */
    }
}

/* Zorg ervoor dat er geen ongewenste horizontale scroll is */
html, body {
    overflow-x: hidden;  /* Verberg horizontale scroll */
    margin: 0;
}


/* CONTAINER */
.container {
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Stijlen voor de image containers */
.image-container {
    background-size: cover;
    background-position: center;
    transition: background 0.3s, color 0.3s;
    flex: 1 1 30%; /* Zorg ervoor dat elke afbeelding 30% van de breedte inneemt */
    position: relative;
    height: 100%; 
    background-color: #ddd; 
    display: flex;
    justify-content: center;
    align-items: center;

}

#image1 { background-image: url('./images/slide1.jpg'); }
#image2 { background-image: url('./images/slide2.jpg'); }
#image3 { background-image: url('./images/slide3.jpg'); }

.image-container::before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1), transparent 90%, transparent 10%, rgba(0, 0, 0, 1));
}
.image-container:hover {
    background: black !important;
}

/* Tekst binnen de afbeelding-container */
.text {
    font-size: 160px;
    transition: -webkit-text-stroke 0.3s, color 0.3s;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
}

.image-container:hover .text {
    -webkit-text-stroke: 3px white;
    color: transparent;
}

#image1, #image2, #image3 {
   height: 100%;
   
}

#image1, #image2 {
    border-right: 1px solid white; 
   
}

.image-container img {
    object-fit: cover; /* Zorg ervoor dat de afbeelding de ruimte vult zonder de verhoudingen te verliezen */
    width: 100%;
    height: 100%; /* Laat de afbeelding de volledige breedte en hoogte vullen */
}

/* Button container styling */
.button-container {
	display: flex;
    justify-content: center; /* Horizontaal centreren */
    align-items: center; /* Verticaal centreren */
    position: absolute; /* Hierdoor blijven ze boven de container staan */
    top: 85%; /* Plaats ze in het verticale midden */
    left: 50%; /* Plaats ze in het horizontale midden */
    transform: translate(-50%, -50%); /* Verplaats ze precies naar het midden */
    z-index: 10; /* Zorg ervoor dat de buttons boven de container komen */
    width: 100%;
}

.button:hover {
    background-color: #d63b00;
    transform: scale(1.1);
}

.button {
	text-align: center;
    text-decoration: none;
    font-size: 30px;
    padding: 10px 20px;
    background-color: #cc2129; 
    color: white;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s, transform 0.3s;
    border-color: transparent;
	margin-left: 12px;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsieve stijlen voor verschillende schermgroottes */
@media screen and (max-width: 1024px) {
   

    .image-container {
        flex: 1 1 45%; /* Bij kleinere schermen nemen de afbeeldingen 45% van de breedte in plaats van 30% */
        height: 250px; /* Verklein de hoogte van de afbeeldingen */
    }

    .text {
        font-size: 1.8em;
    }
}

@media screen and (max-width: 768px) {
   

    .image-container {
        flex: 1 1 30%; /* Zorg ervoor dat de afbeeldingen 30% van de breedte innemen, ook op kleinere schermen */
        height: 220px; /* Pas de hoogte aan */
    }

    .text {
        font-size: 1.6em;
    }

    .button-container {
        flex-direction: column; /* Knoppen onder elkaar op kleinere schermen */
       
        align-items: center; /* Centreer de knoppen horizontaal */
        display: flex;  /* Zorg ervoor dat de container flex is */
        flex-wrap: wrap; /* Zorg ervoor dat knoppen netjes onder elkaar kunnen worden geplaatst */
        width: 100%; /* Zorg ervoor dat de container de volledige breedte gebruikt */
    }

    .button {
		margin-left: 12px
        text-align: center;
        width: 40%; /* Maak knoppen smaller dan de container om ruimte te geven */
        padding: 12px; /* Vergroot de padding voor betere klikbaarheid op kleine schermen */
        margin-bottom: 10px; /* Voeg ruimte toe tussen de knoppen */
        box-sizing: border-box; /* Zorg ervoor dat padding en margin goed worden berekend */
    }

    .button:last-child {
        margin-bottom: 0; /* Zorg ervoor dat de laatste knop geen marge aan de onderkant heeft */
    }
}

@media screen and (max-width: 425px) {
    .image-container {
        flex: 1 1 30%; /* Blijf 30% breedte gebruiken voor kleine schermen */
        height: 180px; /* Verklein de hoogte voor kleinere schermen */
    }

    .text {
        font-size: 1.4em;
    }

    .button-container {
        bottom: 5px;
        
    }

    .button {
        padding: 6px 12px;
    }
}

@media screen and (max-width: 375px) {
    .image-container {
        flex: 1 1 30%; /* Zorg ervoor dat de afbeeldingen altijd 30% breedte innemen */
        height: 150px; /* Kleinere hoogte voor zeer kleine schermen */
    }

    .text {
        font-size: 1.3em;
    }

    .button-container {
        bottom: 5px;
        
    }

    .button {
        padding: 5px 10px;
    }
}



/* Responsieve stijlen voor verschillende schermgroottes */

/* Voor grotere schermen, knoppen naast elkaar */
@media screen and (min-width: 768px) {
    .button-container {
        flex-direction: row; /* Knoppen naast elkaar */
    }
}

/* Voor kleinere schermen, knoppen onder elkaar */
@media screen and (max-width: 768px) {
    .button-container {
        flex-direction: column; /* Knoppen onder elkaar op kleinere schermen */
        /*bottom: 180px; */
    }

    .button {
        width: 40%; /* Knoppen nemen de volledige breedte in op kleine schermen */
        padding: 12px; /* Vergroot de padding voor betere klikbaarheid op kleine schermen */
    }
}


/* OVER-ONS SECTION */
   /* Basisstijl voor de Over Ons-sectie */
   #over-ons {
    padding: 20px;
    text-align: center;
    min-height: 100vh; /* Zorg ervoor dat de sectie altijd het volledige scherm in de hoogte vult */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centreer de tekst verticaal */
    background: black;
    color: white; /* Voeg een achtergrondkleur toe om de sectie te onderscheiden */
}

.about-sub {
    font-size: 100px;
    margin-bottom: 20px;
    -webkit-text-stroke: 3px #cc2129;
    color: transparent;
    position: relative;
    /* font-size: 2rem;
    margin-bottom: 10px; */
}

.about-sub::after {
    content: '';
    position: absolute;
    bottom: -10px;  /* Zet de lijn net onder de tekst */
    left: 0;
    width: 100%;
    height: 2px;  /* Dikte van de lijn */
    background: linear-gradient(135deg, #cc2129, transparent);  /* Mooie schuine lijn */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);  /* Schaduw onder de lijn voor extra effect */
}


.subtitle-under {
 
    font-size: 30px;
    margin-bottom: 20px;
    max-width: 1000px; /* Beperk de breedte van de subtitels */
        margin: 0 auto;
}

.subtitle{
    font-size: 60px;
    margin-bottom: 20px;
    -webkit-text-stroke: 3px white;
    color: transparent;
}



/* Media queries voor verschillende schermgroottes */
@media (max-width: 320px) {
    .about-sub {
        font-size: 30px; /* Kleinere grootte voor de over-ons titel */
    }

    .subtitle {
        font-size: 18px; /* Kleinere grootte voor de subtitle */
    }

    .subtitle-under {
        font-size: 14px; /* Kleinere grootte voor de subtitle-under */
    }
}

@media (max-width: 375px) {
    .about-sub {
        font-size: 35px;
    }

    .subtitle {
        font-size: 20px;
    }

    .subtitle-under {
        font-size: 16px;
    }
}

@media (max-width: 425px) {
    .about-sub {
        font-size: 40px;
    }

    .subtitle {
        font-size: 25px;
    }

    .subtitle-under {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .about-sub {
        font-size: 60px;
    }

    .subtitle {
        font-size: 35px;
    }

    .subtitle-under {
        font-size: 22px;
    }
}

/* Standaardstijl voor laptop en grotere schermen */
@media (min-width: 769px) {
    .about-sub {
        font-size: 100px; /* Grotere tekst voor de over-ons titel */
    }

    .subtitle {
        font-size: 50px; /* Grotere tekst voor de subtitle */
    }

    .subtitle-under {
        font-size: 30px; /* Grotere tekst voor de subtitle-under */
    }
}

/* ZAALVERHUUR SECTION */
.zaalverhuur-section {
    background-color: #e6e5e5;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh; /* Zorgt ervoor dat de sectie minimaal de volledige schermhoogte heeft */
    box-sizing: border-box;
}

.zaalverhuur-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 100vh;
}

.zaal-left {
    flex: 1;
    padding: 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.zaal-left h1 {
  
    	margin-bottom: 20px;
        font-size: 80px;
        -webkit-text-stroke: 3px #cc2129;
        color: transparent;
        position: relative;
    
}

.zaal-left h1::after {
    content: '';
    position: absolute;
    bottom: -10px;  /* Zet de lijn net onder de tekst */
    left: 0;
    width: 100%;
    height: 2px;  /* Dikte van de lijn */
    background: linear-gradient(135deg, #cc2129, transparent);  /* Mooie schuine lijn */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);  /* Schaduw onder de lijn voor extra effect */
}

.zaal-left p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.6;
    
}
.zaal-left button {
    width: 180px;
}

.zaal-right {
    flex: 1;
    text-align: center;
    display: flex;
    justify-content: center;
}

.zaal-right img {
    width: 100%; /* Zorgt ervoor dat de afbeelding de volledige breedte vult */
    height: 100vh; /* Zorgt ervoor dat de afbeelding de volledige hoogte vult */
    object-fit: cover; /* Zorgt ervoor dat de afbeelding goed geschaald wordt zonder uitgerekt te worden */
    margin: 0; /* Verwijdert de marge rond de afbeelding */
}

/* Media queries voor verschillende schermgroottes */
@media (max-width: 320px) {
    .zaal-left h1 {
        font-size: 60px;
    }

    .zaal-left p {
        font-size: 14px;
    }

    .zaal-right img {
        object-fit: cover; /* Zorgt ervoor dat de afbeelding goed past */
    }

    .button {
        font-size: 14px;
        padding: 8px 16px; /* Kleinere padding voor kleinere apparaten */
    }

    /* Knop in het midden van de container op kleinere schermen */
    .zaal-left {
        justify-content: center;
        text-align: center; /* Zorgt ervoor dat de tekst en knop gecentreerd worden */
    }
}

@media (max-width: 375px) {
    .zaal-left h1 {
        font-size: 60px;
    }

    .zaal-left p {
        font-size: 16px;
    }

    .button {
        font-size: 16px;
        padding: 8px 16px;
    }

    /* Knop in het midden van de container op kleinere schermen */
    .zaal-left {
        justify-content: center;
        text-align: center; /* Zorgt ervoor dat de tekst en knop gecentreerd worden */
    }
}

@media (max-width: 425px) {
    .zaal-left h1 {
        font-size: 60px;
    }

    .zaal-left p {
        font-size: 18px;
    }

    .button {
        font-size: 16px;
        padding: 8px 16px;
    }

    /* Knop in het midden van de container op kleinere schermen */
    .zaal-left {
        justify-content: center;
        text-align: center; /* Zorgt ervoor dat de tekst en knop gecentreerd worden */
    }
}

@media (max-width: 768px) {
    .zaal-left h1 {
        font-size: 50px;
    }

    .zaal-left p {
        font-size: 20px;
    }

    .button {
        font-size: 16px;
        padding: 8px 16px;
    }

    .zaalverhuur-container {
        flex-direction: column; /* Zorgt ervoor dat de sectie stapelt op kleinere schermen */
        height: auto; /* Maakt de sectie flexibel qua hoogte */
    }

    .zaal-left {
        padding: 10px;
        text-align: center;
        justify-content: center; /* Zorgt ervoor dat de tekst en knop gecentreerd worden */
    }

    .zaal-right {
        padding: 10px;
    }
}

/* Standaardstijl voor laptop en grotere schermen */
@media (min-width: 769px) {
    .zaalverhuur-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .zaal-left {
        text-align: left;
        padding-right: 30px;
    }

    .zaal-right {
        text-align: center;
    }

    .zaal-left h1 {
        font-size: 60px;
    }

    .zaal-left p {
        font-size: 30px;
    }

    .button {
        font-size: 18px;
        padding: 12px 24px;
    }
}


/* CONTACT SECTION*/

.contact-section {
    background-image: url(./images/achtergrond.png);
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    
    min-height: 100vh;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
    justify-content: space-between;
}

.contact-left {
    flex: 1;
    padding: 20px;
    text-align: left;
}

.contact-left h1 {
    font-size: 60px;
    margin-bottom: 20px;
}

.contact-left p {
    font-size: 30px;
    line-height: 1.6;
}

.contact-right {
    flex: 1;
    padding: 20px;
    text-align: left;
}

.reserveer-form-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-direction: column;
}

.reserveer-form-group {
    flex: 1;
    margin-right: 10px;
}

.reserveer-form-group:last-child {
    margin-right: 0;
}

.reserveer-form-group label {
    display: block;
    font-size: 25px;
    margin-bottom: 5px;
}

.reserveer-form-group input,
.reserveer-form-group textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.reserveer-form-group textarea {
    resize: vertical;
    min-height: 150px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #000000;
    font-size: 20px;
    text-align: start;
}

input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    border-color: transparent;
    color: #858383;
    background: #dedede;
}

textarea{
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    border-color: transparent;
    color: #858383;
    background: #dedede;

}



/* Media queries voor verschillende schermgroottes */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
    }

    .contact-left,
    .contact-right {
        flex: 1 1 100%;
        text-align: center;
        padding: 20px;
		width: 300px;
    }

    .reserveer-form-row {
        flex-direction: column;
        align-items: center;
    }

    .reserveer-form-group {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .reserveer-form-group:last-child {
        margin-bottom: 0;
    }

    .button {
        font-size: 16px;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .contact-left h1 {
        font-size: 40px;
    }

    .contact-left p {
        font-size: 20px;
    }

    .reserveer-form-group label {
        font-size: 17px;
    }

    .reserveer-form-group input,
    .reserveer-form-group textarea {
        font-size: 14px;
        padding: 8px;
    }

    .button {
        font-size: 20px;
        padding: 8px 16px;
		width: 150px;
    }
}

@media (min-width: 769px) {
    .contact-left,
    .contact-right {
        flex: 1;
    }

    .reserveer-form-row {
        display: flex;
        justify-content: space-between;
        margin-bottom: 20px;
    }

    .reserveer-form-group {
        flex: 1;
        margin-right: 10px;
    }

    .reserveer-form-group:last-child {
        margin-right: 0;
    }

    .button {
        font-size: 30px;
        padding: 12px 24px;
		width: 300px;
    }
}

footer {
    background-color: #cc2129;
    color: white;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.footer-left {
    width: 40%;
}

.footer-left h3 {
    font-size: 36px;
    margin-bottom: 20px;
}

.footer-left p {
    font-size: 16px;
    line-height: 1.5;
}

.footer-left a {
    color: white;
    text-decoration: none;
}

.footer-left a:hover {
    text-decoration: underline;
}

.social-icons {
    margin-top: 15px;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
}

.social-icons img {
    width: 30px;
    height: 30px;
    filter: invert(100%);
    transition: transform 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.2);
}

.footer-right {
    width: 55%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.location {
    width: 45%;
}

.location h4 {
    font-size: 24px;
    margin-bottom: 10px;
    color: white;
}

.location ul {
    list-style: none;
    padding-left: 0;
}

.location li {
    font-size: 16px;
    margin-bottom: 5px;
}

.location p {
    font-size: 14px;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .footer-left, .footer-right {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .footer-right {
        justify-content: center;
    }
    
    .location {
        width: 100%;
        margin-bottom: 20px;
    }
}

.footer-bottom {
    text-align: center;
    background-color: #222;
    color: white;
    padding: 10px;
    font-size: 14px;
}

.footer-bottom p {
    margin: 0;
}

#privacy-policy {
    background-color: #f8f8f8;
    padding: 40px;
    text-align: left;
}

.privacy-container {
    max-width: 800px;
    margin: auto;
}

#privacy-policy h2 {
    color: #333;
    text-align: center;
}

#privacy-policy h3 {
    color: #555;
    margin-top: 20px;
}

#privacy-policy p, #privacy-policy ul {
    color: #666;
    font-size: 16px;
}

#privacy-policy ul {
    padding-left: 20px;
}

#privacy-policy a {
    color: #000000;
    text-decoration: none;
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8); 
    color: white;
    width: 100%;
    padding: 20px;
    z-index: 9999; /* Zorg ervoor dat de popup boven andere elementen staat */
    transform: translateX(100%); /* Begin buiten het scherm */
}

.popup-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}



#accept-cookies {
    background-color: #28a745; 
    padding: 10px 20px;
    color: white;
    border: none;
    cursor: pointer;
}

#accept-cookies:hover {
    background-color: #218838; 
}

#more-info {
    color: #ccc;
    text-decoration: none;
}

#more-info:hover {
    text-decoration: underline;
}