/* Main CSS voor Kurstjens Puttenboorbedrijf - Multi-page versie */

/* Basisvariabelen */
:root {
  --primary-color: #2B6CA9; /* Darkened for better contrast */
  --primary-dark: #1D5487; /* Darkened for better contrast */
  --primary-light: #4A87BD; /* Adjusted for better contrast */
  --secondary-color: #2D3D55; /* Darkened for better contrast */
  --accent-color: #4A8C55; /* Darkened for better contrast */
  --text-color: #333333;
  --text-light: #5A6978; /* Darkened for better contrast */
  --light-gray: #F5F7FA;
  --white: #FFFFFF;
  --black: #000000;
  
  --font-primary: 'Montserrat', system-ui, -apple-system, sans-serif;
  --font-secondary: 'Open Sans', system-ui, -apple-system, sans-serif;
  
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  
  --container-width: 1200px;
  --container-padding: 20px;
}

/* Reset en basis styling */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  color: var(--text-color);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Typografie */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  margin-top: 0;
  line-height: 1.3;
  color: var(--secondary-color);
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 15px;
}

h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

/* Header & Navigation */
.site-header {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: var(--spacing-sm) 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.logo {
  max-width: 200px;
}

.logo img {
  width: 100%;
  height: auto;
  aspect-ratio: 289/139;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list li {
  margin: 0 var(--spacing-xs);
}

.nav-list a {
  color: var(--white);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1rem;
  padding: var(--spacing-xs) var(--spacing-sm);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-list a:hover, .nav-list a.active {
  color: #FFFFFF;
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  width: 35px;
  height: 35px;
  padding: 5px;
  cursor: pointer;
  position: relative;
}

.hamburger-icon, 
.hamburger-icon::before, 
.hamburger-icon::after {
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

.hamburger-icon {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger-icon::before,
.hamburger-icon::after {
  content: '';
  left: 0;
}

.hamburger-icon::before {
  top: -8px;
}

.hamburger-icon::after {
  bottom: -8px;
}

/* Verwijder hover state voor hamburger icon */
=======

/* Hero sectie */
.hero-section {
  position: relative;
  height: 400px;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
  z-index: 1;
}

.hero-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
  padding: var(--spacing-lg);
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.hero-content h1 {
  text-align: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 10px;
  border-radius: 4px;
}

.hero-content h1:after {
  display: none;
}

.hero-content p {
  text-align: center;
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
  background-color: rgba(0, 0, 0, 0.2);
  padding: 10px;
  border-radius: 4px;
}

/* Buttons */
.cta-button, .submit-btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 15px 30px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cta-button:hover, .submit-btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--white);
}

/* Page Header for Sub-Pages */
.page-header {
  background-color: var(--primary-color);
  color: var(--white);
  padding: var(--spacing-md) 0;
  margin-bottom: var(--spacing-lg);
}

.page-header h1 {
  color: var(--white);
  margin: 0;
  text-align: center;
}

.page-header h1:after {
  display: none;
}

/* Content Sections */
.section {
  padding: var(--spacing-lg) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.section-intro {
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
  text-align: center;
}

/* Card Grid Layouts */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: var(--spacing-lg);
}

.card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

/* Two Column Layout */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: var(--spacing-lg);
}

.content-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-height: 400px; /* Gecontroleerde hoogte */
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-image img {
  width: 100%;
  height: 100%;
  max-height: 400px;
  object-fit: contain; /* Zorgt dat de afbeelding volledig zichtbaar is */
  object-position: center;
}

/* Benefits Section */
.benefits-section {
  background-color: var(--light-gray);
  padding: var(--spacing-lg) 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.benefit-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 1rem;
  background-color: rgba(43, 108, 169, 0.1);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.benefit-card h3 {
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

/* Process Section */
.process-section {
  padding: var(--spacing-lg) 0;
}

.process-steps {
  counter-reset: step;
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  position: relative;
  padding-left: 4rem;
  margin-bottom: 2.5rem;
  counter-increment: step;
}

.process-step:before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-family: var(--font-primary);
}

.process-step h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

/* FAQ Section */
.faq-section {
  padding: var(--spacing-lg) 0;
  background-color: var(--light-gray);
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.accordion-header {
  width: 100%;
  padding: 1.25rem;
  background-color: var(--white);
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--secondary-color);
  transition: background-color 0.3s ease, color 0.3s ease;
  border-radius: 8px;
}

.accordion-header:hover {
  background-color: rgba(43, 108, 169, 0.05);
}

.accordion-header[aria-expanded="true"] {
  color: var(--primary-color);
  background-color: rgba(43, 108, 169, 0.05);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.accordion-icon {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
  margin-left: 15px;
}

.accordion-icon:before,
.accordion-icon:after {
  content: '';
  position: absolute;
  background-color: var(--primary-color);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.accordion-icon:before {
  width: 100%;
  height: 2px;
  top: 50%;
  transform: translateY(-50%);
}

.accordion-icon:after {
  width: 2px;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.accordion-header[aria-expanded="true"] .accordion-icon:after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.accordion-content {
  background-color: var(--white);
  padding: 1.25rem 1.5rem;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  margin-top: -2px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.accordion-content p {
  margin-bottom: 1rem;
}

.accordion-content p:last-child {
  margin-bottom: 0;
}

.accordion-content ul,
.accordion-content ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

/* Zorgt dat vragen niet worden afgebroken op kleine schermen */
.accordion-header span:first-child {
  padding-right: 10px;
  flex: 1;
}

/* Contact Section */
.contact-section {
  padding: var(--spacing-lg) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-form {
  padding: 2rem;
  background-color: var(--light-gray);
  border-radius: 8px;
}

.form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  flex: 1;
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-group input, 
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--font-secondary);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.checkbox-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.validation-message {
  color: #d9534f;
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.company-details {
  padding: 2rem;
  background-color: var(--light-gray);
  border-radius: 8px;
}

.contact-link {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-weight: 600;
}

.contact-link {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 28px;
}

.contact-link:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.phone-link:before {
  background-image: url('images/phone-icon.svg');
}

.email-link:before {
  background-image: url('images/email-icon.svg');
}

.terms-link:before {
  background-image: url('images/document-icon.svg');
}

.contact-link:before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
  background-size: contain;
  background-repeat: no-repeat;
}

.phone-link:before {
  background-image: url('../images/phone-icon.svg');
}

.email-link:before {
  background-image: url('../images/email-icon.svg');
}

/* Footer */
.site-footer {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: var(--spacing-lg) 0 var(--spacing-sm);
}

.footer-logo {
  margin-bottom: 2rem;
  max-width: 150px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-column h4 {
  color: var(--white);
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 0.5rem;
  display: inline-block;
}

.footer-link {
  color: var(--white);
  margin-bottom: 0.5rem;
  display: block;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  padding: 3px 0;
  border-left: 2px solid transparent;
  padding-left: 5px;
}

.footer-link:hover {
  color: var(--primary-light);
  border-left: 2px solid var(--primary-light);
  padding-left: 8px;
  text-decoration: none;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--white);
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  padding: 3px 0;
  border-left: 2px solid transparent;
  padding-left: 5px;
  display: block;
}

.footer-links a:hover {
  color: var(--primary-light);
  border-left: 2px solid var(--primary-light);
  padding-left: 8px;
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 2rem;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-content {
  margin-bottom: 1rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-btn.accept {
  background-color: var(--primary-color);
  color: var(--white);
}

.cookie-btn.decline {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

/* Accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary-color);
  color: white;
  padding: 8px;
  z-index: 1001;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Page-specific styles */
.service-areas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.area-card {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.area-card h3 {
  display: flex;
  align-items: center;
  color: var(--primary-color);
}

.location-icon {
  width: 24px;
  height: 24px;
  margin-right: 0.5rem;
  background-image: url('../images/location-icon.svg');
  background-size: contain;
  background-repeat: no-repeat;
}

.area-card ul {
  margin: 0;
  padding-left: 1.5rem;
}

.service-map-container {
  margin-bottom: var(--spacing-lg);
}

/* About section with timeline */
.about-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 5rem; /* Meer ruimte voor de jaartallen */
}

.about-timeline:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 3rem; /* Verplaatst naar het midden van de jaartallen */
  width: 4px;
  background-color: var(--primary-color);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-year {
  position: absolute;
  left: -5rem; /* Meer naar links, buiten de tekst */
  top: 0;
  width: 5rem;
  height: 2.5rem; /* Iets hogere button */
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: var(--white);
  font-weight: bold;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  z-index: 2; /* Zorgt ervoor dat het bovenop de lijn komt */
}

.timeline-content {
  padding-left: 2rem;
  position: relative;
  z-index: 1;
}

.timeline-content h3 {
  margin-top: 0;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Verbinden van de jaartallen met de tijdlijn */
.timeline-item:before {
  content: '';
  position: absolute;
  top: 1.25rem; /* Midden van het jaartal */
  left: -2rem; /* Tot aan de tijdlijn */
  width: 2rem; /* Lengte van de verbindingslijn */
  height: 4px;
  background-color: var(--primary-color);
  z-index: 1;
}

/* Thank You Page Styles */
.thank-you-section {
  min-height: calc(100vh - 400px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-lg) 0;
  width: 100%;
  background-color: var(--light-gray);
  margin: 0;
}

.thank-you-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background-color: var(--white);
  border-radius: 8px;
  padding: var(--spacing-lg);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.thank-you-icon {
  margin: 0 auto var(--spacing-md);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(74, 140, 85, 0.1);
  border-radius: 50%;
  padding: 15px;
}

.thank-you-icon svg {
  width: 50px;
  height: 50px;
  fill: var(--accent-color);
}

/* 404 Not Found Page Styles */
.not-found-section {
  min-height: calc(100vh - 400px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-lg) 0;
  width: 100%;
  background-color: var(--light-gray);
  margin: 0;
}

.not-found-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background-color: var(--white);
  border-radius: 8px;
  padding: var(--spacing-lg);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.not-found-icon {
  margin: 0 auto var(--spacing-md);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 193, 7, 0.1);
  border-radius: 50%;
  padding: 15px;
}

.not-found-icon svg {
  width: 50px;
  height: 50px;
  fill: #ffc107; /* warning color */
}

.popular-links {
  margin: var(--spacing-lg) 0;
  text-align: left;
  border-top: 1px solid #eee;
  padding-top: var(--spacing-md);
}

.popular-links h2 {
  font-size: 1.3rem;
  margin-bottom: var(--spacing-sm);
  color: var(--secondary-color);
  text-align: center;
}

.popular-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-sm);
}

.popular-links li {
  margin-bottom: var(--spacing-xs);
}

.popular-links a {
  color: var(--primary-color);
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 4px;
  background-color: rgba(43, 108, 169, 0.1);
  display: inline-block;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.popular-links a:hover {
  background-color: rgba(43, 108, 169, 0.2);
  transform: translateY(-2px);
  text-decoration: none;
}

/* 500 Error Page Styles */
.error-page-section {
  min-height: calc(100vh - 400px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-lg) 0;
  width: 100%;
  background-color: var(--light-gray);
  margin: 0;
}

.error-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background-color: var(--white);
  border-radius: 8px;
  padding: var(--spacing-lg);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cta-buttons {
  margin-top: var(--spacing-lg);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-md);
}

.cta-button.secondary {
  background-color: var(--accent-color);
}

.cta-button.secondary:hover {
  background-color: #3a7044;
}

@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
}

/* Special classes for emphasis */
.highlight-text {
  color: var(--primary-color);
  font-weight: 600;
}

.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: var(--spacing-xs);
}

.mb-2 {
  margin-bottom: var(--spacing-sm);
}

.mb-3 {
  margin-bottom: var(--spacing-md);
}

.mb-4 {
  margin-bottom: var(--spacing-lg);
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0 0 var(--spacing-md);
  flex-wrap: wrap;
}

.breadcrumbs li {
  margin-right: 0.5rem;
}

.breadcrumbs li:after {
  content: '/';
  margin-left: 0.5rem;
  color: var(--text-light);
}

.breadcrumbs li:last-child:after {
  display: none;
}

.breadcrumbs a {
  color: var(--text-light);
}

.breadcrumbs .current {
  color: var(--primary-color);
  font-weight: 600;
}


/* Taalwisselaar styling */
.language-switcher {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0;
  background-color: transparent;
  border: 2px solid var(--primary-color);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(43, 108, 169, 0.15);
  position: relative;
}

/* Voeg een label toe met pseudo-element */
.language-switcher::before {
  content: '🌐';
  position: absolute;
  left: -30px;
  font-size: 18px;
  opacity: 0.7;
}

.language-switcher .current-lang,
.language-switcher a {
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 14px;
  transition: all 0.3s ease;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 45px;
}

.language-switcher .current-lang {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
}

.language-switcher a {
  background-color: var(--white);
  color: var(--primary-color);
  border: none;
}

.language-switcher a:hover {
  background-color: var(--primary-light);
  color: var(--white);
  text-decoration: none;
  transform: scale(1.05);
}

/* Divider tussen de talen */
.language-switcher .current-lang + a::before,
.language-switcher a + .current-lang::before {
  content: '';
  position: absolute;
  width: 1px;
  height: 60%;
  background-color: var(--primary-color);
  opacity: 0.3;
}

@media (max-width: 768px) {
  .language-switcher {
    justify-content: center;
    margin: 10px auto 5px;
    width: auto;
    border-width: 1.5px;
    box-shadow: 0 1px 3px rgba(43, 108, 169, 0.1);
  }

  .language-switcher::before {
    position: static;
    margin-right: 6px;
    font-size: 14px;
  }

  .language-switcher .current-lang,
  .language-switcher a {
    font-size: 11px;
    padding: 6px 10px;
    min-width: 38px;
    letter-spacing: 0.3px;
  }
}
