/* Ontwerp 3: Verfijnde Versie voor watjijwil.nu */

body {
  font-family: "Nunito", sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  line-height: 1.8;
  background-color: #fff;
  scroll-behavior: smooth;
}

/* HEADER */
.top-header {
  width: 100%;
  height: 200px;
  background-image: linear-gradient(
      to right,
      rgba(255, 255, 255, 0.98) 25%,
      rgba(255, 255, 255, 0.1)
    ),
    url("header-beeld.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.header-container {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  padding: 0 30px;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
  margin: 0;
}

.slogan {
  font-size: 1rem;
  font-weight: 300;
  color: #666;
  margin: 5px 0 0 0;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  z-index: 1000;
  padding: 15px 0;
}

.navbar nav {
  text-align: center;
}

.navbar a {
  text-decoration: none;
  color: #999;
  margin: 0 15px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.navbar a:hover {
  color: #000;
}

/* CONTENT SECTIES */
.content-section {
  max-width: 750px;
  margin: 0 auto;
  padding: 80px 30px;
}

.bg-light {
  background-color: #fafafa;
  max-width: 100%; /* Voor volle breedte achtergrond */
  padding: 80px 0;
}
.bg-light .text-block,
.bg-light .section-title,
.bg-light p,
.bg-light ul {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.opening-question {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.4;
  color: #000;
  margin-bottom: 30px;
}

.highlight-text {
  font-size: 1.2rem;
  font-style: italic;
  border-left: 2px solid #000;
  padding-left: 30px;
  margin: 40px 0;
  color: #444;
}

.section-title {
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
  color: #222;
}

/* REFINED LIST */
.refined-list {
  list-style: none;
  padding: 0;
}

.refined-list li {
  padding: 10px 0 10px 30px;
  position: relative;
}

.refined-list li::before {
  content: "•";
  position: absolute;
  left: 10px;
  color: #000;
}

.book-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.book-item {
  padding: 20px;
  background: #fafafa;
  border-left: 1px solid #333;
}

.book-item strong {
  display: block;
  font-size: 1.1rem;
  color: #000;
}

.book-item span {
  font-size: 0.9rem;
  color: #777;
  font-style: italic;
}

.small-note {
  font-size: 0.9rem;
  font-style: italic;
  color: #666;
}

.text-link {
  color: #000;
  text-decoration: underline;
  font-weight: 600;
  font-size: 0.95rem;
}

.category-title {
  margin-top: 40px;
  border-bottom: 1px solid #eee;
  padding-bottom: 5px;
  color: #444;
}

.full-book-list ul {
  list-style: none;
  padding: 0;
}

.full-book-list li {
  padding: 8px 0;
  border-bottom: 1px solid #f9f9f9;
}

/* CONTACT FORMULIER */
.contact-form {
  margin: 40px 0;
  background: #fff;
  padding: 30px;
  border: 1px solid #f0f0f0;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  font-family: inherit;
  box-sizing: border-box;
}

.direct-contact-grid {
  margin-top: 30px;
  padding: 20px;
  background: #fff;
  border: 1px dashed #ccc;
  text-align: center;
}

.contact-details a {
  color: #000;
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid #eee;
  transition: all 0.3s;
}

.contact-details a:hover {
  border-bottom: 1px solid #000;
}

.support-box h4 {
  margin-top: 0;
  font-size: 1.1rem;
  color: #000;
}

/* CTA BUTTON */
.cta-outline {
  display: inline-block;
  border: 1.5px solid #000;
  color: #000;
  padding: 14px 40px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

.cta-outline:hover {
  background: #000;
  color: #fff;
}

.btn-submit {
  background: transparent;
  cursor: pointer;
}

.footer-minimal {
  padding-bottom: 60px;
}

.legal-note {
  font-size: 0.8rem;
  color: #aaa;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .content-section {
    padding: 60px 20px;
  }
  .opening-question {
    font-size: 1.6rem;
  }
  .top-header {
    height: 180px;
  }
}

/* Success Message Styling */
.success-message {
  text-align: center;
  padding: 40px;
  background: rgba(0, 210, 255, 0.1);
  border: 1px solid var(--primary);
  border-radius: 15px;
}

.success-message h3 {
  color: var(--primary);
  margin-bottom: 10px;
}
