



/* Import Google Fonts */
@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 */
.navbar {
    background-color: transparent; 
    padding: 20px 40px;
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    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; 
}

/* Navigation Links */
.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; 
}
/* banner media */

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

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

}

/* Inschrijf button */
.inschrijven-btn {
    background-color: #ec644e; 
    color: #ffffff;
    padding: 10px 20px; 
    border: none; 
    border-radius: 0; 
    cursor: pointer; 
    font-size: 15px; 
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.inschrijven-btn:hover {
    background-color: #d75b4d;
    transform: scale(1.05);
}

/* Hamburger Menu (Mobile) */
.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);
}

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

    .nav-links {
        display: none;
        position: absolute;
        top: 0; 
        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; 
    }
}

/* 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 */

@media screen and (max-width: 768px) {
    .cover-content h1 {
    font-size: 80px; 
    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); 
}

/* 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: 0px; 
    margin-bottom: 20px; 
}

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


/* Form Section Styles */
.form-container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    margin: 40px auto; 
}

h2 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

.form-group-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

label {
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
}

input, select {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    background-color: #f9f9f9;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input::placeholder {
    color: #bbb;
    font-style: italic;
}

input:focus, select:focus {
    border-color: #ec664a;
    box-shadow: 0 0 6px rgba(76, 175, 80, 0.2);
    outline: none;
}

button {
    width: 100%;
    padding: 12px;
    background-color: #ec664a;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 10px;
}

button:hover {
    background-color: #d75b4d; 
    transform: scale(1.01);
}

button:active {
    transform: scale(1);
}

@media (max-width: 768px) {
    .form-container {
        padding: 20px; 
        margin: 40px auto; 
        width: 90%; 
        max-width: 600px;
    }

    .form-group-row {
        flex-direction: column; 
    }

    .form-group {
        margin-bottom: 15px; 
    }
}


/* Footer */
.footer {
    background-color: #000;
    color: white;
    padding: 40px;
    text-align: left;
}

.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 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;
     }