:root {
  --primary-color: #16161d;
  --secundary-color: #0a0a0f;
  --text-color: #e0e0e0;
  --accent-color: #4f46e5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box !important;
}

html,
body {
  height: 100%;
}

body {
  display: table;
  width: 100%;
  height: 100%;
  line-height: 1.6;
  position: relative;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: var(--secundary-color);
}

/* Desktop Navbar - Originele staat */
.navbar {
  list-style-type: none;
  margin: 0;
  padding: 0;
  background-color: var(--primary-color);
  overflow: hidden;
  margin-inline: 30px;
  margin-top: 20px;
  border-radius: 8px;
  height: 70px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  animation: fadeInUp 1.2s ease-out forwards;
}

.navbar li {
  float: left;
}

.navbar a {
  display: flex;
  align-items: center;
  height: 70px;
  padding: 0 16px;
  border-right: 2px solid var(--secundary-color);
  text-decoration: none;
  color: var(--text-color);
  font-weight: bold;
  transition:
    background-color 0.5s,
    border-radius 0.5s;
}

.navbar a:hover {
  background-color: var(--accent-color);
  border-radius: 2px;
}

.navbar li.right-side {
  float: right;
}

.navbar li.right-side a {
  background-color: var(--accent-color);
  color: var(--text-color);
  font-weight: bold;
  align-items: center;
  height: 42px;
  padding: 0 30px;
  margin-top: 14px;
  margin-right: 30px;
  border-radius: 10px;
  border-right: none;
  box-shadow: 0 0 10px var(--accent-color);
  transition:
    background-color 0.5s,
    box-shadow 0.5s;
}

.navbar li.right-side a:hover {
  box-shadow: none;
  background-color: var(--secundary-color);
}

/* Mobiele Elementen - Standaard verbergen */
.mobile-nav-container,
.nav-links-mobile {
  display: none;
}

/* Mobiele Switch */
@media (max-width: 850px) {
  .navbar {
    display: none !important;
  }

  .mobile-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 30px 0;
    animation: fadeInUp 1.2s ease-out forwards;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: var(--primary-color);
    padding: 12px;
    border-radius: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }

  .menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    border-radius: 2px;
  }

  .cta-mobile {
    display: flex;
    align-items: center;
    background-color: var(--accent-color);
    color: var(--text-color);
    text-decoration: none;
    font-weight: bold;
    padding: 0 20px;
    height: 42px;
    border-radius: 10px;
    box-shadow: 0 0 10px var(--accent-color);
    font-size: 0.9rem;
  }

  .nav-links-mobile {
    display: none;
    position: absolute;
    top: 85px;
    left: 30px;
    right: 30px;
    background: var(--primary-color);
    border-radius: 8px;
    flex-direction: column;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-links-mobile.active {
    display: flex;
  }

  .nav-links-mobile li a {
    color: var(--text-color);
    text-decoration: none;
    padding: 15px;
    display: block;
    text-align: center;
    font-weight: bold;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
}

.footer {
  width: 100%;
  padding: 40px 0;
  text-align: center;
  margin-top: 60px;
}

.footer p {
  color: var(--text-color);
  font-size: 14px;
  margin: 0;
  opacity: 0.7;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
