/* Basiskleuren en typografie */
body {
  background-color: #000;
  color: #fff;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}

/* Container voor content */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Header */
header.simple-header {
  background: url('images/turaheader.jpeg?auto=format&fit=crop&w=1200&q=80') no-repeat center center/cover;
  color: #fff;
  padding: 40px 20px 30px 20px;
  text-align: center;
  box-shadow: inset 0 0 0 1000px rgba(0,0,0,0.6);
  position: relative;
}

header.simple-header h1 {
  margin: 0;
  font-size: 3em;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.9);
  animation: fadeInDown 1s ease forwards;
}

header.simple-header .slogan {
  margin-top: 10px;
  font-size: 1.3em;
  font-style: italic;
  color: #e63946;
  animation: fadeInUp 1s ease 0.5s forwards;
  opacity: 0;
}

/* Animaties */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Navigatie */
nav {
  background-color: #000;
  padding: 10px 0;
  text-align: center;
  border-bottom: 2px solid #e63946;
  position: sticky;
  top: 0;
  z-index: 100;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 15px;
}

nav ul li {
  margin: 0;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 15px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

nav ul li a:hover,
nav ul li a:focus {
  background-color: #e63946;
  color: #fff;
}

/* Secties */
section {
  padding: 20px 0;
  border-bottom: 1px solid #222;
}

h2 {
  color: #e63946;
  font-size: 2em;
  margin-bottom: 15px;
}

p {
  font-size: 1.1em;
  line-height: 1.6;
}

/* Tabellen */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

th, td {
  padding: 10px;
  border: 1px solid #444;
  text-align: left;
}

th {
  background-color: #222;
  color: #e63946;
}

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

tr:hover {
  background-color: #1a1a1a;
}

/* Galerij */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(0,0,0,0.6);
}

/* Testimonials */
.testimonial {
  background: #111;
  border-left: 5px solid #e63946;
  padding: 20px;
  font-style: italic;
  font-size: 1.1em;
  margin: 20px 0;
  border-radius: 5px;
}

/* Formulier */
form {
  background-color: #111;
  padding: 20px;
  border-radius: 5px;
}

form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

input, textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #444;
  background-color: #222;
  color: #fff;
  border-radius: 4px;
}

input:focus, textarea:focus {
  border-color: #e63946;
  outline: none;
}

button {
  background-color: #e63946;
  color: #fff;
  border: none;
  padding: 12px 25px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 1.1em;
  transition: background-color 0.3s, transform 0.1s;
}

button:hover {
  background-color: #c62828;
  transform: translateY(-1px);
}

/* Footer */
footer {
  background-color: #111;
  color: #ccc;
  padding: 20px;
  text-align: center;
  font-size: 0.9em;
}

/* Full-width image */
.full-width-img {
  width: 100%;
  height: auto;
  display: block;
}
/* Responsive */
@media (max-width: 600px) {
  nav ul {
    flex-direction: column;
    gap: 10px;
  }
  button {
    width: 100%;
  }
}
