:root {
  --font-main: 'Segoe UI', 'Helvetica Neue', sans-serif;
}

body {
  margin: 0;
  font-family: 'Georgia', serif;
  background-color: #e8e5db;
  color: #2c1c1a;
}

/* Quote formulier */
.quote-form {
  background-color: #eee8dd;
  padding: 4rem 2rem;
  max-width: 800px;
  margin: 0 auto;
  font-family: var(--font-main);
}

.quote-form h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #4b1e1e;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 1px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.row-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

input, textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ccc;
  font-size: 1rem;
  border-radius: 2px;
  background-color: white;
  font-family: var(--font-main);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  display: flex;
  justify-content: flex-end;
}

button[type="submit"] {
  background-color: white;
  border: 1px solid black;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

button[type="submit"]:hover {
  background-color: black;
  color: white;
}

/* Dropdown algemeen */
.custom-dropdown {
  position: relative;
  width: 100%;
  background-color: white;
  border: 1px solid #ccc;
  font-family: var(--font-main);
  z-index: 1;
}

.dropdown-header {
  padding: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dropdown-arrow {
  transition: transform 0.3s ease;
}

.dropdown-content {
  display: none;
  flex-direction: column;
  background-color: white;
  border-top: 1px solid #ccc;
  padding: 1rem;
  position: relative;
  width: 100%;
  left: 0;
  top: 100%;
  z-index: 10;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  font-size: 0.95rem;
  line-height: 1.6;
  color: #2c1c1a;
  font-family: var(--font-main);
}

/* Open dropdown */
.custom-dropdown.open .dropdown-content {
  display: flex;
}

/* Checkbox-lijnen */
.dropdown-content label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  padding: 0.5rem 0;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border-bottom: 1px solid #eee;
}

.dropdown-content label:hover {
  background-color: #f9f9f9;
  border-radius: 4px;
}

/* Kleine checkbox stijl */
.checkbox-item input[type="checkbox"] {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 1.5px solid #999;
  border-radius: 3px;
  position: relative;
  cursor: pointer;
  background-color: white;
  display: inline-block;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.checkbox-item input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 2px;
  left: 2px;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234b1e1e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: cover;
}


/* Anders veld */
.anders-optie {
  flex-wrap: wrap;
  align-items: flex-start;
}

.inline-text {
  flex: 1;
  margin-left: 0.75rem;
  padding: 0.4rem 0.5rem;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-family: var(--font-main);
  font-size: 0.9rem;
  display: none; /* standaard verborgen */
}

.inline-text:focus {
  outline: none;
  border-color: #4b1e1e;
}
















.dropdown-item {
  padding: 0.85rem 1.25rem;
  font-size: 1rem;
  cursor: pointer;
  border-bottom: 1px solid #ccc;
  background-color: white;
  transition: background-color 0.2s ease, color 0.2s ease;
  line-height: 1.4;
}

.dropdown-item:hover {
  background-color: #f9f9f9;
  color: #4b1e1e;
}

.dropdown-item:last-child {
  border-bottom: none;
}
























