/* CSS uit het originele bestand */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #000;
  position: relative;
  overflow: hidden;
}

/* Achtergrond slideshow */
.background-slideshow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  background-color: #111; /* Fallback kleur */
}

.slide.active {
  opacity: 0.7;
}

/* Header stijlen */
header {
  background: rgba(0, 0, 0, 0.9);
  padding: 0.8rem 1rem;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 5px solid #0055a5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

header img {
  height: 70px;
  margin-right: 15px;
}

h1 {
  font-family: 'Anton', sans-serif;
  color: #fdd835;
  font-size: 2.2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 1.2rem;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  font-size: 0.95rem;
}

nav ul li a:hover {
  color: #fdd835;
  background: rgba(255, 255, 255, 0.1);
}

/* Twee kolommen layout */
.main-container {
  display: flex;
  flex: 1;
  padding: 1rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  gap: 20px;
  min-height: calc(100vh - 180px);
}

.sidebar {
  width: 250px;
  background: rgba(0, 0, 0, 0.75);
  border-radius: 8px;
  padding: 1.5rem;
  height: fit-content;
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

.content-area {
  flex: 1;
  overflow-y: auto;
  max-height: calc(100vh - 180px);
  padding-right: 10px;
}

/* Content secties */
.content-section {
  background: rgba(0, 0, 0, 0.75);
  padding: 1.8rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

h2 {
  font-family: 'Anton', sans-serif;
  color: #fdd835;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #0055a5;
  padding-bottom: 0.5rem;
}

.slider {
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 1.5rem;
  background: rgba(0, 85, 165, 0.8);
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

/* Formulier stijlen */
label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

input, textarea, select {
  width: 100%;
  padding: 0.7rem;
  margin-bottom: 1.3rem;
  border: 1px solid #444;
  background: #111;
  color: #fff;
  border-radius: 4px;
  font-size: 1rem;
}

button {
  background: #0055a5;
  color: #fff;
  padding: 0.7rem 1.4rem;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #003f7f;
}

.button {
  display: inline-block;
  background: #0055a5;
  color: #fff;
  padding: 0.7rem 1.4rem;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s;
  margin-top: 10px;
}

.button:hover {
  background: #003f7f;
}

/* Footer stijlen */
footer {
  background: rgba(0, 0, 0, 0.9);
  padding: 1.2rem;
  text-align: center;
  border-top: 5px solid #0055a5;
  position: sticky;
  bottom: 0;
  font-size: 0.9rem;
}

/* Responsive aanpassingen */
@media (max-width: 900px) {
  .main-container {
    flex-direction: column;
  }
  
  .sidebar {
    width: 100%;
    margin-bottom: 1rem;
  }
  
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  nav ul li {
    margin: 0.3rem;
  }
}

@media (max-width: 600px) {
  header {
    flex-direction: column;
    height: auto;
    padding: 0.8rem;
  }
  
  .header-content {
    margin-bottom: 0.8rem;
  }
  
  nav ul {
    flex-direction: column;
    align-items: center;
  }
  
  nav ul li {
    margin: 0.3rem 0;
  }
  
  h1 {
    font-size: 1.8rem;
  }
}

/* Stijl voor vacatures */
.vacature {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #444;
}

.vacature h3 {
  color: #fdd835;
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}

.vacature p {
  margin-bottom: 0.5rem;
}

/* Menu buttons */
.menu-button {
  display: block;
  width: 100%;
  padding: 12px;
  margin-bottom: 10px;
  background: #0055a5;
  color: white;
  border: none;
  border-radius: 4px;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.menu-button:hover {
  background: #003f7f;
}

.menu-button.active {
  background: #003f7f;
  box-shadow: 0 0 0 2px #fdd835;
}

/* Tekstblok voor vacatures */
.vacature-blok {
  background: rgba(0, 85, 165, 0.3);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border: 1px solid #0077ff;
}

.vacature-blok h3 {
  color: #fdd835;
  margin-bottom: 1rem;
}

/* SEO-gerelateerde elementen */
.seo-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem;
  color: #ddd;
  font-size: 0.9rem;
  text-align: center;
}

.seo-section h2 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #fff;
  border: none;
}

/* Verbeterde radio button styling */
.radio-group {
  display: flex;
  gap: 20px;
  margin-bottom: 1.5rem;
}

.radio-option {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.radio-option input {
  width: auto;
  margin-right: 0.5rem;
  margin-bottom: 0;
}

.radio-option label {
  margin-bottom: 0;
}

.checkbox-group {
  margin-bottom: 1.5rem;
}

.checkbox-option {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.checkbox-option input {
  width: auto;
  margin-right: 0.5rem;
  margin-bottom: 0;
}

/* Vacature sollicitatie indicator */
.vacature-sollicitatie {
  background-color: rgba(253, 216, 53, 0.2);
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  border-left: 4px solid #fdd835;
  display: none;
}