/**
 * Design Tokens / SCSS Variables
 * Gebaseerd op Groef branding
 */
/**
 * SCSS Mixins
 */
.welcome-section {
  background: #f5f5f5;
  padding: 64px 0;
  min-height: 50vh;
  display: flex;
  align-items: center;
}
.welcome-section .welcome-section__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 0 24px;
}
.welcome-section .welcome-section__content {
  flex: 1 1 400px;
  min-width: 320px;
}
.welcome-section .welcome-section__content .welcome-section__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #5a4221;
  font-family: "Inria Serif", serif;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.1;
}
.welcome-section .welcome-section__content .welcome-section__divider {
  width: 80px;
  height: 3px;
  background: #5a4221;
  margin-bottom: 24px;
  border-radius: 0;
}
.welcome-section .welcome-section__content .welcome-section__description {
  font-size: 18px;
  color: #666666;
  margin-bottom: 0;
  line-height: 1.6;
}
.welcome-section .welcome-section__content .welcome-section__description--with-cta {
  margin-bottom: 32px;
}
.welcome-section .welcome-section__content .welcome-section__cta {
  display: inline-block;
  background: #78582b;
  color: #ffffff;
  font-size: 16px;
  font-family: "DIN 2014", "Arial", "Helvetica", sans-serif;
  font-weight: 500;
  padding: 16px 40px;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 0.3s;
}
.welcome-section .welcome-section__content .welcome-section__cta:hover {
  background: #5a4221;
}
.welcome-section .welcome-section__image {
  flex: 1 1 320px;
  min-width: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.welcome-section .welcome-section__image img {
  width: 100%;
  max-width: 420px;
  border-radius: 0;
  box-shadow: none;
  border: 2px solid #1a1a1a;
  display: block;
}

@media (max-width: 768px) {
  .welcome-section__container {
    flex-direction: column;
    gap: 32px;
    padding: 0 10px;
  }
  .welcome-section__image img {
    max-width: 100%;
  }
}
/*# sourceMappingURL=welcome-section.css.map */
