@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

html,
body {
  height: 99%;
}

body {
  background-color: #ffffff; /* Light green background */
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
}

.page-wrapper {
  max-width: 1600px;
  min-height: 99%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.content {
  flex: 1;
}

.container {
  max-width: 1600px;
}

h2,
h3,
h5 {
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: 1.2em !important;
  color: rgb(0, 88, 88);
  font-weight: 500 !important;
}

h5 {
  font-size: 1em !important;
}

p {
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: 1em !important;
  color: #000;
}

/* content */
#intro ul {
  padding: 0 20px;
}

/* zoekvak */
#intro .form-control {
  --bs-border-width: 2px;
  --bs-border-color: rgb(0, 88, 88);
}

/* filters */
.filter-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: flex-end;
  margin-bottom: 1rem;
}

.dropdown-wrapper {
  display: flex;
  flex-direction: column;
  min-width: 180px;
  margin: 10px 0 5px 0;
}

.dropdown-wrapper label {
  font-size: 0.875rem;
  margin-bottom: 4px;
  font-weight: 500;
}

.dropdown-wrapper .form-label {
  font-weight: bold;
  padding: 0 0 2px 0;
}

.filter-row label {
  margin-right: 0.5rem;
}

.filter-row select,
.filter-row button {
  padding: 0.5rem;
  font-size: 1rem;
}

.filters {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.filters label {
  margin-right: 0.25rem;
  font-weight: 500;
}

.clear-icon {
  color: #999;
  cursor: pointer;
  font-size: 1.2rem;
  margin-left: 0.5rem;
  transition: color 0.2s;
}

.clear-icon:hover {
  color: #dc3545;
}

.reset-wrapper,
.return-wrapper {
  min-width: auto;
}

.reset-link,
.return-link {
  color: #0073aa;
  text-decoration: underline;
  cursor: pointer;
  font-size: 1rem;
  padding-top: 8px;
  display: inline-block;
}

.reset-link:hover,
.return-link:hover {
  color: #005177;
}

/* app menu */
.appmenu-right {
  display: flex;
  justify-content: flex-end;
}
.btn-primary {
  background-color: rgb(1, 125, 133);
  border: solid #ffffff 2px;
}
.btn-primary:hover {
  background-color: rgb(0, 88, 88);
  font-weight: bolder;
}

.main-nav {
  background: #fff;
  padding: 10px 20px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
}

.nav-links li {
  display: inline-block;
}

.nav-links li a {
  text-decoration: none;
  color: rgb(0, 88, 88);
  font-weight: 500;
}

.nav-links li a:hover {
  text-decoration: none;
  color: rgb(1, 125, 133);
}

/* --- MOBILE MENU FIXED FULL WIDTH --- */
.mobile-menu {
  position: relative;
  z-index: 1000;
}

#menu-toggle {
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
  outline: none;
}

/* Menu container */
#mobile-nav {
  position: fixed;
  top: 70px; /* adjust to match header height */
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  z-index: 9999;
}

/* Open state */
#mobile-nav.active {
  max-height: 500px; /* adjust if you have many items */
  opacity: 1;
}

/* Menu items */
.mobile-menu-items {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu-items li {
  border-bottom: 1px solid #eee;
}

.mobile-menu-items a {
  display: block;
  padding: 14px;
  font-size: 1.1rem;
  color: #333;
  text-decoration: none;
}

/* Remove horizontal overflow issues */
html,
body {
  overflow-x: hidden;
}

/* Ensure the mobile menu is only visible on small screens */
@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none !important;
  }
}

.hover-underline:hover {
  text-decoration: underline;
}
