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

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

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

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

}






/* Container Styles */
.container {
    margin-top: 50px;
    margin-bottom: 50px;
    margin-left: 145px;
    width: 100%;
    max-width: 1150px; /* Maximum width for container */
    padding: 30px;
    background-color: #fff; /* White background for the container */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

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


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

.icons {
    font-size: 0.9em;
}

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

/* Table Wrapper Styles */
.table-wrapper {
    border-radius: 8px;
    overflow-x: auto; /* Allow horizontal scrolling on small screens */
}

/* Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px; /* Space below tables */
}

table thead th {
    background-color: #ec664a; /* Orange for the table header */
    color: white;
    padding: 12px;
    text-align: left;
    font-size: 1em;
}

table tbody tr:nth-child(even) {
    background-color: #f4f4f4; /* Light grey background for alternating rows */
}

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

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

table tbody tr:last-child td {
    border-bottom: none; /* Remove bottom border on last row */
}

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

/* Toggle Button Styles */
.toggle-button {
    background-color: #00555c; /* Teal background */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 20px 0; /* Space above and below button */
    font-size: 1em;
    width: 100%; /* Full width on mobile */
}

.toggle-button:hover {
    background-color: #004a4a; /* Darker teal on hover */
}

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

/* Responsive Adjustments */
@media (max-width: 768px) {
    .header h2 {
        font-size: 1.5em; /* Slightly larger on mobile */
    }

    .title {
        font-size: 1.3em; /* Larger title */
    }

    table thead th {
        font-size: 0.9em; /* Smaller header font on mobile */
    }

    table tbody td {
        font-size: 0.9em; /* Smaller data font on mobile */
    }

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

    .container {
        margin-left: 20px;
        width: 90%;
    }
}


/* Footer styles */

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