@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



html, body {
    height: 100%;
    overflow-x: hidden;
    font-family: 'Montserrat', sans-serif;
    background-color: #00555c; 
}

body  {
	scroll-behavior: smooth;
}
/* Top Navigation Styles */
.top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    z-index: 1000; 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
}

.logo {
    width: 150px; /* Logo size */
}

/* Navigatiebalk */
/* Algemene reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #00555c;
}

/* Navigatiebalk */
.navbar {
    background-color: none;
	padding: 20px 40px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); 
    transition: background-color 0.3s ease; 
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px; 
    margin: 0 auto;

}

.logo img {
    width: 140px;
    transition: opacity 0.3s ease;
}

.logo img:hover {
    opacity: 0.85; 
}

/* Navigatielinks */
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 10px ;
    transition: border-bottom 0.3s ease, color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #ec644e;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%; 
}

.nav-links a:hover {
    color: #ec644e; 
}



/* Inschrijfknop */
.inschrijven-btn {
    background-color: #ec644e;
	width: 100%;
}


/* Hamburger Menu (Mobiel) */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    height: 2px;
    width: 25px;
    background-color: #ffffff;
    margin: 4px 0;
    transition: all 0.3s ease;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobiele navigatie */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 00px;
        left: 0;
        width: 100%;
        background-color: rgba(51, 51, 51, 0.95);
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        z-index: 999;
	
    }


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


}

/* banner media */

@media screen and (max-width: 768px) {
    .cover-content h1 {
    margin-bottom: 20px; 
    }

    .cover-content p {
    font-size: 25px; 
    color: #ec644e; 
    font-weight: bold; 
    }

}

/* Nav background on scroll */
body.scrolled .navbar {
    background-color: rgba(31, 31, 31, 0.9);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .nav ul {
        display: none; /* Hide nav links initially */
        flex-direction: column;
        position: absolute;
        top: 60px; /* Adjust according to the banner height */
        left: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent background */
        padding: 10px 0;
    }
    
    .nav ul.show {
        display: flex; /* Show nav links when toggled */
    }
    
    .hamburger {
        display: flex; /* Show hamburger menu */
    }
}



/* banner media */




/* Cover Section Styles */
.cover {
    background-image: url('images/Kartbanner.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 90vh; 
    color: rgb(255, 255, 255);
    position: relative;
}

.cover-content {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.cover-content h1 {
    font-size: 100px; 
    margin-bottom: 20px;
}

.cover-content p {
    font-size: 30px; 
    color: #ec644e; 
    font-weight: bold; 
}

/* Section Styles */
section {
    background-color: #00555c;
    padding: 20px;
    text-align: center;
}

h1, h2 {
    text-align: left;
    margin-left: 20px;
}

h1 {
    margin-top: -15px;
    font-size: 40px;
    color: #ffffff;
}

h2 {
    margin-top: 30px;
    font-size: 20px;
    color: #EB6349;
    margin-bottom: 10px; 
}

section h2 {
    margin-bottom: 10px; 
}

section h1 {
    margin-top: 20px; 
}

/* Container Styles */
.container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 20px;
    padding: 40px;
}

/* Info Box Styles */
.info-box {
    width: 300px;
    height: 600px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.map-container {
    margin-right: 20px;
    margin-bottom: 20px;
    width: 100%; 
    height: 600px; 
    border: 1px solid #ccc; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}

.map-container iframe {
    width: 100%; 
    height: 100%; 
    border: 0; 
}


/* Footer Styles */
.footer {
    background-color: #000;
    color: white;
    padding: 40px;
    text-align: left;
    height: auto;
}
 
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-left: 150px;
}
 
.footer-section {
    margin: 20px;
    min-width: 200px;
    flex: 1;
    text-align: left;
}
 
.footer-section h3 {
    margin-bottom: 15px;
    font-size: 18px;
}
 
.footer-section p {
    margin: 10px 0;
}
 
.divider {
    height: 4px;
    background-color: #ec644e;
    margin: 10px 0;
    width: 40px;
}
 
.social-media a {
    color: rgb(97, 105, 148);
    font-size: 30px;
    margin-right: 15px;
    text-decoration: none;
}
 
.social-media a:hover {
    color: #ec644e;
}
 
.google-map {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-left: 0px;
}
 
.google-map iframe {
    width: 80%;
    height: 250px;
    border: none;
    margin-top: 10px;
}



/* Media query voor mobiele schermen (max-width: 768px) */
@media (max-width: 768px) {
  .vertical-bar {
    width: 2px;
    height: 30px;
    background-color: black;
    margin-left: 10px;
}

h1, h2 {
    text-align: left;
    margin-left: 20px;
}

h1 {
    margin-top: -15px;
    font-size: 40px;
    color: #ffffff;
}

h2 {
    margin-top: 30px;
    font-size: 20px;
    color: #EB6349;
    margin-bottom: 20px; 
}

section h2 {
    margin-bottom: 20px; 
}

section h1 {
    margin-top: 10px; 
}

section {
    background-color: #00555c;
    padding: 20px;
    text-align: center;
}

  .container {
        flex-direction: column; 
        align-items: center;
    }

.map-container, .info-box {
    margin-right: 20px;
    margin-bottom: 20px;
}

.map-container {
        order: 1; 
        margin-bottom: 20px; 
        width: 400px; 
        height:400px
    }

.map-container iframe {
    width: 100%; 
    height: 100%; 
    border: 0; 
}

.info-box {
        order: 2; 
        width: 400px;  
        height: 400px
    }

 
    @media only screen and (max-width: 768px) {
 
   .footer-content {
        flex-direction: column;
        align-items: flex-start;
        margin-left: 0;
        margin-right: 0;
    }
 
    .footer-section {
        margin: 10px 0;
        width: 100%;
        padding: 0;
    }
}
    .google-map iframe {
        width: 80%;
        height: 250px;
    }


}