body, html {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f4f4f4;
  height: auto;
  width: 0 auto;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
	width: 0 auto;
	padding: 0;
	
}

* {
 margin: 0px;
 padding: 10px;
 box-sizing: border-box;
 font-family: sans-serif;
}


header {
    position: relative;
	padding: 0;
}


/* Stijl voor de knop */
.btn-primary {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    color: white;
    background-color: #ff7f50; /* Oranje kleur voor opvallende knop */
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

/* Hover-effect voor de knop */
.btn-primary:hover {
    background-color: #ff5722; /* Donkerdere oranje tint bij hover */
}

.tabel.2 {
	padding: 20px;
}

.countries-container {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.countries-container h1 {
    margin-bottom: 20px;
    color: #333;
    font-size: 2em;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Breder bereik voor kolommen */
    gap: 20px;
    justify-content: center;
}



.country-item {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.country-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.country-item img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.country-item p {
    margin-top: 10px;
    font-size: 1.2em;
    color: #333;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background-color: #4CAF50;
    color: white; 
    padding: 16px; 
    font-size: 16px; 
    border: none; 
    cursor: pointer; 
}

.dropdown-content {
    display: none; 
    position: absolute; 
    background-color: #f9f9f9; 
    min-width: 160px; 
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); 
    z-index: 1; 
}


.dropdown-content a {
    color: black; 
    padding: 12px 16px; 
    text-decoration: none; 
    display: block; 
}


.dropdown-content a:hover {
    background-color: #f1f1f1; 
}


.dropdown:hover .dropdown-content {
    display: block;
}


.dropdown:hover .dropbtn {
    background-color: #3e8e41; 
}


.hero-image {
    position: relative;
    background-image: url('images/interlaken.jpg');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.hero-text {
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 8px;
    max-width: 100%;
    word-wrap: break-word;
}

.hero-text h1 {
    font-size: 4rem;
    margin: 0;
    font-family: 'Bebas Neue', sans-serif;
}

.hero-text p {
    font-size: 1.5rem;
    margin: 10px 0;
}

.btn-primary {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.btn-primary:hover {
    background-color: #0056b3;
}

nav.topnav {
    background-color: #305178;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

nav.topnav a {
    color: white;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
    font-size: 1rem;
}

nav.topnav a.active {
    background-color: #2f5680;
}

nav.topnav .dropdown {
    position: relative;
}

nav.topnav .dropbtn {
    background-color: inherit;
    border: none;
    color: white;
    padding: 14px 20px;
    font-size: 1rem;
    cursor: pointer;
}

nav.topnav .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    top: 100%;
    left: 0;
}

nav.topnav .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

nav.topnav a:hover, nav.topnav .dropdown:hover .dropbtn {
    background-color: #447199;
}

nav.topnav .dropdown:hover .dropdown-content {
    display: block;
}

/* Main secties */
main {
    padding: 20px;
}

section {
    padding: 40px 0;
}

/* Containerstijl */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Sectiestijl */
.section {
    margin-bottom: 20px;
}

.section h2 {
    font-size: 2em;
    color: #007bff;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
    
}

.section h3 {
    font-size: 1.5em;
    color: #007bff;
    margin-top: 10px;
}

/* Checkliststijl */
.checkbox-list {
    list-style: none;
    padding: 0;
}

.checkbox-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.checkbox-list input {
    margin-right: 10px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* About secties */
.about {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
}

.btn-secondary {
    display: inline-block;
    padding: 10px 20px;
    background-color: #6c757d;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.btn-secondary:hover {
    background-color: #5a6268;
}

/* === Highlights sectie === */
.highlights {
    background: #ffffff;
    padding: 3rem 1rem;
    text-align: center;
}

.highlights h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
    font-weight: bold;
}

/* Container voor de highlight-items */
.highlight-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

/* Individuele highlight item */
.highlight-item {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Afbeelding in highlight item */
.highlight-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

/* Titel van highlight item */
.highlight-item h3 {
    font-size: 1.3rem;
    color: #007bff;
    margin: 1rem 1rem 0.5rem;
    font-weight: 600;
}

/* Beschrijving van highlight item */
.highlight-item p {
    font-size: 1rem;
    color: #666;
    margin: 0 1rem 1rem;
    line-height: 1.4;
}

/* Responsief gedrag */
@media (max-width: 768px) {
    .highlight-container {
        flex-direction: column;
        align-items: center;
    }

    .highlight-item {
        max-width: 90%;
    }
}


/* Overlay styling */
.overlay {
    display: none; 
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 1000; 
}

/* Content binnen de overlay */
.overlay-content {
    background-color: #ffffff;
    margin: 15% auto; 
    padding: 20px;
    border-radius: 4px;
    width: 80%;
    max-width: 1000px;
    position: relative;
}

/* Sluitknop */
.closebtn {
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
}

.closebtn:hover {
    color: red;
}


.overlay-trigger {
    display: none; /* Verborgen trigger */
}

.overlay_text {
	display: none;
}

.text {
	display: none;
}
.container1 {
    width: 100%;
    max-width: 1100px;
    margin: 2rem auto;
    padding: 1rem;
}

        .section {
            background: #ffffff;
            padding: 20px;
            margin-bottom: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        .section h2 {
            font-size: 28px;
            color: #343a40;
            border-bottom: 3px solid red;
            padding-bottom: 10px;
            margin-bottom: 15px;
        }
        .section h3 {
            font-size: 22px;
            color: #28a745;
            margin-top: 15px;
        }
        .checkbox-list {
            list-style: none;
            padding: 0;
        }
        .checkbox-list li {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }
        .checkbox-list input {
            margin-right: 10px;
        }
        .cta-button {
            display: inline-block;
            background: #28a745;
            color: #fff;
            padding: 10px 20px;
            text-decoration: none;
            border-radius: 5px;
            font-size: 18px;
            text-align: center;
            transition: background-color 0.3s, transform 0.2s;
            margin-top: 20px;
        }
        .cta-button:hover {
            background: #218838;
            transform: scale(1.05);
        }

/* ==== Gallery sectie ==== */
  .gallery {
  background-color: #f9f9f9;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.gallery h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #333;
  font-weight: bold;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  padding: 0 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  background-color: #fff;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.gallery-item:hover img {
  transform: scale(1.05);
}



  h2 {
            text-align: center;
            color: #333;
            margin-bottom: 30px;
        }

        .search-container {
            text-align: center;
            margin: 0px;
			border-radius: 8px;
			padding: 15px;
			border: none;
			
        }

        .search-container input {
            padding: 10px;
            font-size: 16px;
            width: 80%;
            max-width: 300px;
        }

        .table-container {
            overflow-x: auto;
            padding: 20px;
        }

      table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
    padding: 20px;
    overflow: hidden;
}

th, td {
    border: 1px solid #ddd;
    padding: 15px;
    text-align: center; /* Gecentreerd */
}

th {
    background-color: #305178;
    color: white;
    border: none;
    width: 100px;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

tr:hover {
    background-color: #f9f9f9;
}

th.side-header {
    background-color: #305178;
    color: white;
    text-align: center;
    font-weight: bold;
}

td {
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    text-align: center; /* Gecentreerd */
}

td:last-child, th:last-child {
    border-right: none;
}

/* Responsive table */
@media (max-width: 768px) {
    table {
        width: 100%;
    }
    th, td {
        padding: 10px;
    }
}

@media screen and (max-width: 600px) {
    table, thead, tbody, th, td, tr {
        display: block;
        width: 100%;
    }

    tr {
        margin-bottom: 15px;
    }

    td {
        display: block;
        text-align: center; /* Gecentreerd */
        position: relative;
        padding-left: 50%;
        border: none;
    }

    td::before {
        content: attr(data-label);
        position: absolute;
        left: 10px;
        width: calc(50% - 20px);
        padding-left: 10px;
        font-weight: bold;
        text-align: left;
        color: #007bff;
    }
}

        /* Style voor de zijheader */
        .side-header {
            font-weight: bold;
            background-color: #f9f9f9;
            width: 150px; /* Breedte van de zijheader */
			border: none;
        }
		




@media screen and (max-width: 400px) {
  .topnav a:not(:first-child), .dropdown .dropbtn {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
	
  }
  
 

.column.side_34 {
  width: 100%;
  height: 200px;

}

  
  
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child), .dropdown .dropbtn {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }


.column.side_34 {
  width: 100%;
 

}
  
  
  
  
}


@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .dropdown {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
}




@media screen and (max-width: 800px) {
  .column.side, .column.middle {
    width: 100%;
  }
}
