:root {
  --primary-color: #1a5e49;
  --accent-color: #D1BFA3;
  --background-color: #FAF8F3;
  --text-dark: #2E2E2E;
  --text-light: #7C7C7C;
  --cta-color: #C1746B;
  --hover-color: #6E9B81;
}

/* Algemene body styling */

body {
  background-color: var(--background-color);
  color: var(--text-dark);
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* Koppen */

h1, h2, h3, h4, h5 {
  color: var(--primary-color);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.titel {
  color: var(--bs-success);
}

/* Links */

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

a:hover {
  color: var(--hover-color);
}

/* CTA-knoppen */

.btn-cta {
  /*background-color: var(--cta-color);*/
  /*color: white;*/
  /*border: none;*/
  /*padding: 0.75rem 1.5rem;*/
  /*border-radius: 8px;*/
  /*font-weight: 600;*/
  /*transition: background-color 0.3s ease;*/
  /*transition: transform 0.3s ease, background-color 0.3s ease;*/
  background-color: var(--cta-color);
  color: white;
  border: none;
  padding: 0.85rem 1.6rem;
  font-size: 1.05rem;
  border-radius: 10px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.btn-cta:hover {
  background-color: var(--primary-color);
  color: white;
  transform: scale(1.05);
}

.pulse {
  animation: pulse-glow 1.8s infinite;
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(193,116,107, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(193,116,107, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(193,116,107, 0);
  }
}

/* Loader-wrapper fullscreen */

#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--background-color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--background-color);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* Hoofdtitel animatie */

.loader-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  color: var(--primary-color);
  animation: pulseText 1.6s ease-in-out infinite;
  margin: 0;
}

/* Subtekst fade-in */

.loader-sub {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  color: var(--text-light);
  margin-top: 0.5rem;
  opacity: 0;
  animation: fadeInSub 2s ease 0.6s forwards;
}

/* Animaties */

@keyframes pulseText {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes fadeInSub {
  to {
    opacity: 1;
  }
}

/* Verberg loader na laden */

.loaded #loader-wrapper {
  opacity: 0;
  visibility: hidden;
}

/* De loader zelf (ronde animatie) */

#loader {
  width: 60px;
  height: 60px;
  border: 6px solid #e0e0e0;
  border-top: 6px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Animatie */

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Verbergen wanneer geladen */

.loaded #loader-wrapper {
  opacity: 0;
  visibility: hidden;
}

/* Accent achtergrondsecties */

.section-accent {
  background-color: var(--accent-color);
  padding: 2rem;
  border-radius: 12px;
}

/* Cards of infoblokken */

.card-custom {
  background-color: white;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s ease;
}

.card-custom:hover {
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.hero-section {
  background-image: url("../../assets/img/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 94, 73, 0.6);
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.contact-section {
  background-color: var(--accent-color);
  color: var(--text-dark);
  border-radius: 20px;
}

.contact-section h2 {
  color: var(--primary-color);
  font-weight: 600;
}

.contact-section .form-control {
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.contact-section .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(26, 94, 73, 0.2);
}

.contact-section a {
  color: var(--primary-color);
  text-decoration: none;
}

.contact-section a:hover {
  color: var(--hover-color);
}

.offer-section {
  background-color: var(--background-color);
}

.offer-section h2 {
  color: var(--primary-color);
  font-weight: 600;
}

.offer-section img {
  filter: grayscale(30%);
}

.pricing-section {
  background-color: var(--background-color);
}

.pricing-section h2 {
  color: var(--primary-color);
  font-weight: 600;
}

.pricing-card {
  background-color: white;
  border: 1px solid #eee;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.pricing-card .price {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--primary-color);
}

.pricing-card.featured {
  border: 2px solid var(--cta-color);
  background-color: var(--accent-color);
}

.site-footer {
  background-color: var(--accent-color);
  color: var(--text-dark);
  border-top: 1px solid #ddd;
  font-size: 0.95rem;
}

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

.footer-link:hover {
  color: var(--hover-color);
}

.footer-link {
  color: var(--primary-color);
  font-weight: 600;
  margin-right: 0.5rem;
}

.footer-link:hover {
  color: var(--hover-color);
}

.thankyou-section h1 {
  font-size: 2.5rem;
  color: var(--primary-color);
}

.thankyou-section p {
  color: #444;
  font-size: 1.1rem;
}

body {
  background-color: #f7f9f7;
  font-family: 'Open Sans', sans-serif;
}

.thankyou-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.checkmark-container {
  margin-bottom: 2rem;
}

.checkmark {
  width: 80px;
  height: 80px;
  stroke: #1A5E49;
  stroke-width: 5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: draw 1s ease forwards;
}

@keyframes draw {
  from {
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
  }
  to {
    stroke-dasharray: 50;
    stroke-dashoffset: 0;
  }
}

.titel.fade-in {
}

.fade-in {
  opacity: 0;
  animation: fadeIn ease 1.2s forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-in-left {
}

.slide-in-left {
  opacity: 0;
  animation: slideInLeft 1.2s ease-out forwards;
}

@keyframes slideInLeft {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

