.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;
}

.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);
}

.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 {
  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-7 {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  height: 80px !important;
}

.page-style-8 {
  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-9 {
  width: 24px !important;
  height: 24px !important;
}

.page-style-10 {
  background: linear-gradient(
    to right,
    rgb(184, 73, 31) 80%,
    rgb(131, 31, 130) 100%
  ) !important;
}

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

.page-style-12 {
  color: rgb(255, 255, 255) !important;
}

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