/* banner css */

@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; /* Background color */
}

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

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

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


/* 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 {
    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: #00555c;
    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; 
}


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

/* Container Styles */
.container {
    width: 100%;
    max-width: 900px;
    margin: 20px auto; /* Add margin for better spacing */
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

/* Header Styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #00555c;
    border-radius: 8px;
    color: white;
}

.header h2 {
    margin: 0;
    font-size: 1.5em;
}

/* Title Styles */
.title {
    text-align: center;
    font-size: 1.8em;
    margin: 20px 0;
    color: #00555c;
}

/* Table Wrapper Styles */
.table-wrapper {
    border-radius: 8px;
    overflow-x: auto;
}

/* Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-size: 1em; /* Base size for tables */
}

table thead th {
    background-color: #ec664a;
    color: white;
    padding: 12px;
    text-align: left;
}

table tbody tr:nth-child(even) {
    background-color: #f4f4f4;
}

table tbody tr:nth-child(odd) {
    background-color: #fff;
}

table tbody td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

table tbody tr:last-child td {
    border-bottom: none;
}

table tbody td:first-child {
    font-weight: bold;
}

/* Toggle Button Styles */
.toggle-button {
    background-color: #00555c;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 20px 0;
    font-size: 1em;
    width: 100%;
    box-sizing: border-box;
}

.toggle-button:hover {
    background-color: #004a4a;
}

/* Hidden Table Styles */
.hidden-table {
    display: none;
    margin-top: 20px;
}

/* Responsive Adjustments for Different Screen Sizes */
@media (max-width: 1024px) {
    .container {
        padding: 15px;
    }
    
    .title {
        font-size: 1.5em;
    }

    .header h2 {
        font-size: 1.4em;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    .header {
        flex-direction: column;
        align-items: flex-start; /* Stack header items */
    }

    .header h2 {
        font-size: 1.3em;
    }

    .title {
        font-size: 1.3em;
    }

    table thead th {
        font-size: 0.9em;
    }

    table tbody td {
        font-size: 0.9em;
    }

    .toggle-button {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 5px;
    }

    .header h2 {
        font-size: 1.2em;
    }

    .title {
        font-size: 1.2em;
    }

    table thead th, table tbody td {
        padding: 8px;
    }

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

    table tbody td {
        font-size: 0.85em;
    }
}

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


/* Top Navigation Styles */
.top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    z-index: 1000; /* Ensure it's above other content */
    position: fixed; /* Fixed position to stay at the top */
    top: 0; /* Aligns to the top of the viewport */
    left: 0; /* Aligns to the left */
    width: 100%; /* Full width of the viewport */
}

.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); /* Subtiele schaduw voor diepte */
    transition: background-color 0.3s ease; /* Animatie bij scrollen */
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px; /* Beperkt breedte op grotere schermen */
    margin: 0 auto;

}

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

.logo img:hover {
    opacity: 0.85; /* Zachte hover interactie */
}

/* 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%; /* Onderstreping bij hover */
}

.nav-links a:hover {
    color: #ec644e; /* Verander de kleur subtiel bij hover */
}



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


}

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

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

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

.footer-content {
    display: flex;
    justify-content: space-around;
    max-width: 1300px;
    margin: 0 auto;
}

.footer-section h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-section p {
    margin: 10px 0;
}

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

.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 Styles */
.google-map {
    position: relative;
    width: 100%; /* Make map full width */
    height: 300px; /* Fixed height */
    margin-top: 20px; /* Space above map */
}

/* Responsive Design */
@media (max-width: 1200px) {
    .top-content {
        padding: 15px 20px; /* Reduced padding */
    }

    .menu ul {
        gap: 40px; /* Adjust gap */
        margin: 0; /* Remove left margin */
    }

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

    .inschrijven-btn {
        padding: 8px 16px; /* Adjust button size */
        font-size: 16px; /* Button text size adjustment */
    }

    .cover-content h1 {
        font-size: 80px; /* Responsive font size */
    }
    
    .cover-content p {
        font-size: 24px; /* Responsive font size */
    }
}

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

