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

body {
  background-color: #f5f5f5;
  color: #333;
}

header {
  position: absolute;
  top: 20px;
  left: 20px;
}

.logo {
  height: 200px;
}

.banner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60vh;
  background: url('sfeer.jpg') no-repeat center center;
  background-size: cover;
  color: #fff;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
  position: relative;
}

.banner h1 {
  font-size: 3em;
  text-align: center;
  z-index: 1;
}

/* Stijl voor de zoekbalk */
.search-bar {
  position: absolute;
  top: 55vh;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 30px;
  width: 80%;
  max-width: 1000px;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  z-index: 2;
  backdrop-filter: blur(5px);
}

.search-bar form {
  display: flex;
  gap: 15px;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

.search-bar label {
  font-size: 0.85em;
  color: #333;
  font-weight: bold;
}

.search-bar input,
.search-bar select,
.search-bar button {
  padding: 12px 15px;
  font-size: 1em;
  border: 2px solid #ddd;
  border-radius: 8px;
  width: 100%;
  max-width: 200px;
  transition: border-color 0.3s ease;
}

.search-bar input:focus,
.search-bar select:focus {
  border-color: #2a3679;
  outline: none;
}

.search-bar button {
  background-color: #2a3679;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.search-bar button:hover {
  background-color: #1e285e;
}

/* Stijl voor accommodaties */
.accommodations {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  margin-top: 60px;
}

.accommodation {
  width: 300px;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.accommodation img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.details {
  padding: 15px;
}

.details h2 {
  font-size: 1.5em;
  color: #333;
}

.details button {
  padding: 10px 20px;
  font-size: 1em;
  color: #fff;
  background-color: #2a3679;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.details button:hover {
  background-color: #1e285e;
}

.footer-banner img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #333;
  color: #fff;
  font-size: 0.9em;
}

/* CSS */
.top-nav {
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px;
}

.top-nav nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-item {
    color: white;
    font-weight: bold;
    text-decoration: none;
	padding-top:2rem;
	padding-left:1rem;
}

.nav-item i {
    font-size: 2rem;
	padding-right:2rem;
}

.nav-item {
    color: white;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
}

.nav-item:hover {
    color: #FFD700; /* Gold color to make it pop */
    transform: scale(1.1); /* Slightly increase size on hover */
}

/* Import the Anton font */
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

.accommodations-section {
    font-family: 'Anton', sans-serif;
    text-align: center;
    margin: 50px auto;
    max-width: 1200px;
	padding-top:100px;
}

.section-title {
    font-size: 3em;
    color: #2A3679;
    margin-bottom: 20px;
    position: relative;
}

.section-title::before,
.section-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 520px;
    height: 2px;
    background: #2A3679;
}

.section-title::before {
    left: 400px;
    transform: translateX(-100%);
    margin-right: 10px;
}

.section-title::after {
    right: 400px;
    transform: translateX(100%);
    margin-left: 10px;
}

.accommodations {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.accommodation-card {
    position: relative;
    width: 300px;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.accommodation-card:hover {
    transform: scale(1.05); /* Slightly enlarge the card on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* Increase shadow on hover */
}

.accommodation-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease; /* Smooth transition for image */
}

.accommodation-card:hover img {
    transform: scale(1.1); /* Slightly enlarge the image on hover */
}



.card-title {
    position: absolute;
    top: 10px;
    left: 10px;
    color: #fff;
    font-size: 1em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Text shadow for better readability */
}

.price {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 2em;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Text shadow for better readability */
}

.star {
font-size:1em;	
}

.note {
    font-size: 0.9em;
    color: #888;
    margin-top: 10px;
}


.anton-regular {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.banner2 {
    position: relative;
    width: 100%;
    height: 400px; /* Adjust height as needed */
    background-image: url('BELEEF CULTUUR.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.deals-section {
    font-family: 'Anton', sans-serif;
    text-align: center;
    margin: 50px auto;
    max-width: 1200px;
}

.deals-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0px;
	
	
}

.deal-large {
    grid-column: span 2;
    position: relative;
}

.deal-large img {
    width: 100%;
    height: auto;
    border-radius: 0px;
}

.deal-small {
    position: relative;
}

.deal-small img {
    width: 100%;
    height: auto;
    border-radius: 0px;
}

.deal-text {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: #fff;
    font-size: 1.2em;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.swap-font {
  font-family: "Delius Swash Caps", cursive;
  font-weight: 400;
  font-style: normal;
}

.container0 {
    display: flex;
    gap: 0px;
  }

   .btm {
    position: relative;
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    flex: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
	   filter: grayscale(100%);
  }

  /* Hover effect to make image pop */
  .btm:hover {
  filter: grayscale(0%);
	  
  }

 

  /* Specific backgrounds for each section */
  .btm.recenties {
    background-image: url('btm-1.png');
  }

  .btm.vacatures {
    background-image: url('btm-2.png');
  }

  .btm.faq {
    background-image: url('btm-3.png');
  }

.contact-form {
  width: 450px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
  text-align: center;
  color: #2a3679;
}

.contact-form label {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  color: #333;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 8px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus, .contact-form textarea:focus {
  border-color: #2a3679;
  box-shadow: 0 0 8px rgba(42, 54, 121, 0.3);
}

.contact-form input:hover, .contact-form textarea:hover {
  border-color: #2a3679;
}

.contact-form button {
  width: 100%;
  padding: 10px;
  background-color: #2a3679;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

.contact-form button:hover {
  background-color: #1e2a59;
  transform: scale(1.05);
}

/* Zoek en Filter Paneel */
.search-container {
  display: flex;
  margin: 20px;
}

.filter-panel {
  width: 25%;
  background-color: #fff;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  height: auto;
}

.filter-panel h2 {
  font-size: 1.5em;
  color: #2a3679;
  margin-bottom: 15px;
}

.filter-panel label {
  display: block;
  margin-bottom: 5px;
  font-size: 0.9em;
  color: #333;
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
  transition: border-color 0.3s;
}

.filter-panel input:focus,
.filter-panel select:focus {
  border-color: #2a3679;
}

.filter-panel button {
  width: 100%;
  padding: 10px;
  font-size: 1em;
  background-color: #2a3679;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.filter-panel button:hover {
  background-color: #1e285e;
}

/* Accommodaties */
.accommodations {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 75%;
  margin-left: 20px;
}

.accommodation {
  width: 300px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  overflow: hidden;
}

.accommodation img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.details {
  padding: 15px;
}

.details h2 {
  font-size: 1.2em;
  color: #333;
}

.details p {
  font-size: 0.9em;
  color: #666;
}

.details button {
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #2a3679;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.details button:hover {
  background-color: #1e285e;
}

.accent-divider {
    border: 0;
    height: 1px;
    background-color: #2a3679; /* Accentkleur */
    margin: 20px 0;
}

.price-range {
    display: flex;
    gap: 10px;
}

.facilities {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Adds spacing between each label */
}

.facilities label {
    display: flex;
    align-items: center;
    font-size: 16px; /* Adjust font size as needed */
    cursor: pointer; /* Makes the label clickable */
}

.facilities input[type="checkbox"] {
    margin-right: -270px; /* Space between the checkbox and the text */
}
