
/* ===============================
   Tweeling Expo Theme - CSS Reset
   =============================== */

/*Footer */
.site-footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 2rem 0;
}

.footer-inner {
  max-width: 800px;
  margin: 0 auto;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
}

.footer-inner div:first-child {
  font-weight: bold;
  margin-bottom: 0.5rem;
}


/* Navigatie basis (desktop) */
.main-nav {
  display: flex;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: #222;
}

.nav-links li a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Hamburger knop */
.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: none;
  padding: 0;
  line-height: 0;
}

.nav-toggle .hamburger {
  width: 24px;
  height: 2px;
  background-color: #333;
  display: block;
  position: relative;
  transition: transform 0.3s ease;
}

.nav-toggle .hamburger::before,
.nav-toggle .hamburger::after {
  content: '';
  width: 24px;
  height: 2px;
  background-color: #333;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.nav-toggle .hamburger::before {
  top: -7px;
}

.nav-toggle .hamburger::after {
  top: 7px;
}

/* Mobiele weergave */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 1rem;
    z-index: 100;
    border-top: 1px solid #ccc;
  }

  .main-nav.active {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    gap: 1rem;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .nav-links li a {
    font-size: 1.1rem;
    text-decoration: none;
    color: #222;
  }
/* Verberg bepaalde elementen op mobiele schermen */
@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }
}

}
