:root {
  --primary-color: #0F766E;
  --primary-hover: #096d91;
  --secondary-color: #ffffff;
  --text-color: #1f2937;
  --accent-color: #f2f2f2;
}

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--text-color);
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: none;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
}

section.bg-primary .btn-light {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: none;
}

footer a:hover {
  color: var(--primary-color);
  transition: 0.3s;
}

.hero-section {
  position: relative;
  height: 60vh;
  background-image: url('/assets/images/hero.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: #0F766E;
  z-index: 0;
}

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

.hero-circle {
  height: 90vh;
  background-color: #0F766E; 
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-container {
  position: relative;
  width: 500px;
  height: 500px;
  max-width: 90vw;
  max-height: 90vw;
}

.center-laptop {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-35%, -50%);
  max-width: 350px;
  z-index: 1;
  border-radius: 5px;
}

.circle-item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: rotate(var(--angle)) translate(270px) rotate(calc(-1 * var(--angle)));
  text-align: center;
  color: white;
}

.module-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.icon-circle {
  width: 60px;
  height: 60px;
  background-color: #0F766E;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin: 0 auto;
  font-size: 1.5rem;
}

.module-card ul {
  padding-left: 1rem;
  margin: 0;
}

.module-card li {
  margin-bottom: 0.5rem;
}

.text-crop {
  color: #0F766E; /* groen */
}

.text-vantage {
  color: #f57c00; /* oranje */
}

.circle-container {
  position: relative;
  width: 400px;
  height: 400px;
}

.center-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: #f57c00;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  z-index: 2;
}

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

.circle-item {
  position: absolute;
  text-align: center;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 60px;  /* grootte van het rondje */
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #20B08B;  /* jouw kleur */
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.circle-item i {
  font-size: 24px;
  color: white;  /* icon kleur */
  display: block;
  margin: 0;  /* icon gecentreerd */
  z-index: 2;  /* boven het rondje */
}

.circle-item span {
  position: absolute;
  top: 70px;  /* onder het rondje */
  left: 50%;
  transform: translateX(-50%);
  display: block;
  font-size: 14px;
  max-width: 100px;
  text-align: center;
  color: #ffffff;
}

.form-status-text {
  color: #6c757d; /* dezelfde kleur als text-muted */
}

.contact-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.08);
}

.text-primary {
  color: #0F766E !important;
}

.module-card {
  border: none;
  border-left: 4px solid #0F766E;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.module-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.08);
  border-left-color: #f57c00;
}

.module-title {
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.module-text {
  color: #555;
  font-size: 0.95rem;
}

.module-list {
  padding-left: 1rem;
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

.module-list li {
  margin-bottom: 0.25rem;
}

@media (max-width: 768px) {
  .circle-container {
    display: none;
  }

  .hero-section {
    height: auto; /* zodat de tekst en knoppen goed zichtbaar zijn */
    padding: 4rem 1rem;
  }

  .hero-section h1,
  .hero-section h2 {
    font-size: 2rem; /* kleiner op mobiel */
  }

  .hero-section p.lead {
    font-size: 1rem;
  }
}