html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Times New Roman", serif;
  color: rgb(3,78,101);
  background: url('/static/images/background.jpg') center/cover no-repeat fixed;
  cursor: url('/static/images/cursor_caravan.png'), auto;
}

body, h1, h2, h3, p, a, label {
  font-family: "Times New Roman", serif;
  color: rgb(3,78,101);
}

/* 📦 Geen zichtbare balk, enkel hamburger */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

/* ☰ Hamburger knop */
.menu-toggle {
  width: 30px;
  height: 25px;
  position: fixed;
  top: 15px;
  left: 15px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: rgb(3, 78, 101);
  border-radius: 3px;
  transition: 0.3s ease;
}

.menu-toggle span:nth-child(1) {
  top: 0;
}
.menu-toggle span:nth-child(2) {
  top: 11px;
}
.menu-toggle span:nth-child(3) {
  top: 22px;
}

.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 11px;
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 11px;
}

/* 📜 Zijmenu */
.side-menu {
  position: fixed;
  top: 0;
  left: -250px;
  height: 100%;
  width: 250px;
  background-color: rgba(247,195,111,0.8);
  box-shadow: 2px 0 5px rgba(0,0,0,0.1);
  transition: left 0.3s ease;
  padding-top: 80px;
  z-index: 1000;
}

.side-menu.open {
  left: 0;
}

.side-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.side-menu li {
  padding: 15px 20px;
}

.side-menu a {
  text-decoration: none;
  color: rgb(3,78,101);
  font-weight: bold;
}

/* 🚀 Ruimte onder header */
.main-content {
  padding-top: 230px;
  padding-left: 20px;
  padding-right: 20px;
}

/* 🧩 Formulieren (zoals jij al had) */
.booking-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 1rem;
}

.form-row label {
  flex: 0 0 150px;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.form-row input,
.form-row select,
.form-row div {
  flex: 1;
  min-width: 200px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
    align-items: stretch;
  }

  .form-row label {
    flex: 1 0 auto;
    margin-bottom: 0.25rem;
  }

  .form-row input,
  .form-row select,
  .form-row div {
    width: 100%;
  }
}


.content-frame form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: stretch;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 5px;
  font-weight: bold;
  color: rgb(3, 78, 101);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: "Times New Roman", serif;
}

.contact-form,
.admin-form {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 10px;
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

label {
  width: 120px;
  font-weight: bold;
}

input, textarea {
  flex: 1;
  max-width: 250px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background: white;
}

.submit-button,
.contact-button,
.admin-button {
  background: #007bff;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.submit-button:hover,
.contact-button:hover,
.admin-button:hover {
  background: #0056b3;
}

.flatpickr-day.disabled {
  background: red !important;
  color: white !important;
  pointer-events: none;
}

.content-frame {
  max-width: 800px;
  margin: 4em auto;
  background-color: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  padding: 2em;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  color: white;
  text-align: center;
}

.content-frame img {
  max-width: 100%;
  height: auto;
  margin-bottom: 1em;
  border-radius: 8px;
}

footer {
  position: sticky;
  bottom: 0;
  width: 100%;
  background-color: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  color: white;
  text-align: center;
  padding: 10px;
}

