.topbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  gap: 1rem;
}

/* MOBILE OPTIMALISATIE */
@media (max-width: 640px) {
  .topbar-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
  }

  .topbar-left,
  .topbar-right {
    justify-content: center;
  }
}

.topbar-left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.hero-container {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 50%;
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-container .hero-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
}

.hero-motion {
  max-width: 42rem;
  width: 100%;
}

.hero-h1 {
  color: white;
  font-family: var(--font-serif);
  filter: drop-shadow(0 25px 25px rgb(0 0 0 / 0.15));
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  width: fit-content;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 16px;
  margin-left: 0;
  justify-content: flex-start;
}

.logo-container {
  position: relative;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  padding: 8px;

  /* Grotere responsive container */
  width: clamp(250px, 80%, 600px); /* min 250px, max 600px, schaalt vloeiend */
  aspect-ratio: 485 / 198; /* behoudt oorspronkelijke verhouding */

  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.logo-hover-gradient {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 500ms cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.logo-container:hover .logo-hover-gradient {
  opacity: 1;
}

.logo-gradient-1 {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom right,
    rgba(184, 73, 31, 0.6),
    transparent,
    rgba(131, 31, 130, 0.6)
  );
}

.logo-gradient-2 {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(184, 73, 31, 0.7) 0%,
    transparent 70%
  );
}

.logo-image {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.95);
  filter: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04))
    drop-shadow(0 4px 3px rgb(0 0 0 / 0.1));
  text-align: left;
  margin: 0;
}

.nav-desktop {
  display: none;
}
@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
}

.nav-right {
  display: none;
}
@media (min-width: 1024px) {
  .nav-right {
    display: flex;
  }
}

.mobile-menu-btn {
  display: block;
  padding: 0.5rem;
  color: white;
  background: transparent;
  border: none;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}
.mobile-menu-btn:hover {
  color: rgba(255, 255, 255, 0.8);
}

.nav-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.contact-btn {
  padding: 0.5rem 1.5rem;
  background-color: #831f82;
  color: white;
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
}
.contact-btn:hover {
  background-color: white;
  color: #831f82;
  box-shadow: inset 0 0 0 2px #831f82;
}

.register-btn {
  padding: 0.5rem 1.5rem;
  background-color: #831f82;
  color: white;
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
}
.register-btn:hover {
  background-color: white;
  color: #831f82;
  box-shadow: inset 0 0 0 2px #831f82;
}

.mobile-menu {
  display: block;
  border-top: 1px solid var(--gray-100);
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (min-width: 1024px) {
  .mobile-menu {
    display: none;
  }
}

.mobile-menu-items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-menu-item {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.75rem 1rem;
  color: white;
  background: transparent;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.service-card-wrapper {
  position: relative;
}

.service-card {
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid var(--gray-100);
  padding: 2rem;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card.colored {
  border-color: transparent;
}

.service-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.service-card-content {
  position: relative;
  z-index: 10;
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

.service-card:hover .service-card-content {
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
}

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Non-hover: Oranje en paarse cards krijgen zwart icon met witte achtergrond */
.service-card.orange-card .service-icon,
.service-card.purple-card .service-icon {
  background-color: white;
  color: black;
}

/* Non-hover: Over Ons card krijgt wit icon met paarse achtergrond */
.service-card.over-ons-card .service-icon {
  background-color: var(--secondary);
  color: white;
}

/* Hover: Oranje cards krijgen wit icon met paarse achtergrond */
.service-card.orange-card:hover .service-icon {
  background-color: var(--secondary);
  color: white;
}

/* Hover: Paarse cards krijgen wit icon met oranje achtergrond */
.service-card.purple-card:hover .service-icon {
  background-color: var(--primary);
  color: white;
}

/* Hover: Over Ons card krijgt wit icon met oranje achtergrond */
.service-card.over-ons-card:hover .service-icon {
  background-color: var(--primary);
  color: white;
}

.service-card.over-ons-card:hover {
  background-color: var(--secondary);
}

.service-card.over-ons-card:hover .service-title,
.service-card.over-ons-card:hover .service-description,
.service-card.over-ons-card:hover .service-link {
  color: white;
}

.service-title {
  font-family: var(--font-serif);
  margin-bottom: 0.75rem;
  transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.service-description {
  margin-bottom: 1rem;
  transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.service-link {
  display: flex;
  align-items: center;
  gap: 0;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
}

/* Non-hover: Oranje en paarse cards hebben witte tekst */
.service-card.orange-card .service-title,
.service-card.orange-card .service-description,
.service-card.orange-card .service-link,
.service-card.purple-card .service-title,
.service-card.purple-card .service-description,
.service-card.purple-card .service-link {
  color: white;
}

/* Non-hover: Over Ons card heeft zwarte tekst */
.service-card.over-ons-card .service-title,
.service-card.over-ons-card .service-description {
  color: black;
}

.service-card.over-ons-card .service-link {
  color: var(--primary);
}

.service-card:hover .service-link {
  gap: 0.5rem;
}

.service-arrow {
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-arrow {
  transform: translateX(0.25rem);
}

/* Hover: Oranje en paarse cards krijgen zwarte tekst */
.service-card.orange-card:hover .service-title,
.service-card.orange-card:hover .service-description,
.service-card.orange-card:hover .service-link,
.service-card.purple-card:hover .service-title,
.service-card.purple-card:hover .service-description,
.service-card.purple-card:hover .service-link {
  color: black;
}

.logo-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
}

.responsive-logo {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 12px;
  border-radius: 8px;
  flex: 1 1 0; /* kan krimpen tot 0, groeit naar beschikbare ruimte */
  min-width: 100px; /* minimale breedte op klein scherm */
  max-width: 150px; /* maximale breedte op groot scherm */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px; /* optioneel: consistent logohoogte */
}

.responsive-logo img {
  width: 80%;
  height: auto;
  object-fit: contain;
}

.page-style-1 {
  stroke: url("#phoneGradient") !important;
  fill: none !important;
}

.page-style-2 {
  position: absolute !important;
}

.page-style-3 {
  stop-color: rgb(184, 73, 31) !important;
  stop-opacity: 1 !important;
}

.page-style-4 {
  stop-color: rgb(131, 31, 130) !important;
  stop-opacity: 1 !important;
}

.page-style-5 {
  stroke: url("#mailGradient") !important;
  fill: none !important;
}

.page-style-6 {
  background-image: url("../../assets/6213e7fe44f0ebba209df6ec5ee871b429944fb9-ZLBZAOel.png") !important;
}

.page-style-7 {
  align-items: flex-start !important;
}

.page-style-8 {
  opacity: 1 !important;
  transform: none !important;
}

.page-style-9 {
  transform: scale(0.9) !important;
  transform-origin: left center !important;
  margin-bottom: 16px !important;
  filter: drop-shadow(rgba(0, 0, 0, 0.15) 0px 25px 25px) !important;
  align-self: flex-start !important;
}

.page-style-10 {
  position: sticky !important;
  top: 0px !important;
  z-index: 50 !important;
  background: linear-gradient(
    to right,
    rgb(184, 73, 31) 80%,
    rgb(131, 31, 130) 100%
  ) !important;
  transition: 300ms cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.page-style-11 {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  height: 80px !important;
}

.page-style-12 {
  padding: 0.5rem 1rem !important;
  transition: colors 300ms cubic-bezier(0.4, 0, 0.2, 1) !important;
  border-radius: 0.5rem !important;
  background: transparent !important;
  border-width: medium !important;
  border-style: none !important;
  border-color: currentcolor !important;
  border-image: initial !important;
  cursor: pointer !important;
  color: rgb(131, 31, 130) !important;
}

.page-style-13 {
  padding: 0.5rem 1rem !important;
  transition: colors 300ms cubic-bezier(0.4, 0, 0.2, 1) !important;
  border-radius: 0.5rem !important;
  background: transparent !important;
  border-width: medium !important;
  border-style: none !important;
  border-color: currentcolor !important;
  border-image: initial !important;
  cursor: pointer !important;
  color: white !important;
}

.page-style-14 {
  width: 24px !important;
  height: 24px !important;
}

.page-style-15 {
  padding-bottom: 60px !important;
}

.page-style-16 {
  padding-top: 0px !important;
  margin-top: -3rem !important;
}

.page-style-17 {
  margin-bottom: 4rem !important;
}

.page-style-18 {
  background-color: rgb(184, 73, 31) !important;
  color: white !important;
}

.page-style-19 {
  background-color: rgb(131, 31, 130) !important;
  color: white !important;
}

.page-style-20 {
  background-color: white !important;
  color: black !important;
}

.page-style-21 {
  color: black !important;
}

.page-style-22 {
  color: var(--primary) !important;
}

.page-style-23 {
  padding-top: 0px !important;
  padding-bottom: 60px !important;
}

.page-style-24 {
  overflow: hidden !important;
}

.page-style-25 {
  min-height: 150px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  padding: 2rem !important;
  position: relative !important;
  background-color: white !important;
  border-radius: 1.5rem !important;
  opacity: 0 !important;
}

.page-style-26 {
  font-style: italic !important;
  font-size: 1.25rem !important;
  line-height: 1.75 !important;
  color: rgb(55, 65, 81) !important;
  max-width: 900px !important;
  opacity: 1 !important;
  transform: none !important;
}

.page-style-27 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.page-style-28 {
  background: linear-gradient(
    to right bottom,
    rgba(184, 73, 31, 0.05),
    rgba(131, 31, 130, 0.05)
  ) !important;
  border-radius: 1.5rem !important;
  padding: 3rem !important;
  text-align: left !important;
  opacity: 1 !important;
  transform: none !important;
}

.page-style-29 {
  justify-content: flex-start !important;
}

.page-style-30 {
  background-color: var(--primary) !important;
  color: white !important;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px !important;
}

.page-style-31 {
  image-rendering: -webkit-optimize-contrast !important;
}
