@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* =================================================
   ROOT DESIGN TOKENS
================================================= */

:root {
  --bg:            #0c0c0c;
  --bg-surface:    #161616;
  --bg-elevated:   #1e1e1e;
  --border:        rgba(255, 255, 255, 0.07);
  --border-accent: rgba(255, 107, 157, 0.45);
  --accent:        #ff6b9d;
  --accent-dark:   #e04f80;
  --accent-glow:   rgba(255, 107, 157, 0.18);
  --purple:        #a78bfa;
  --text:          #f0f0f0;
  --text-secondary:#8a8a8a;
  --text-dim:      #555;
  --radius:        14px;
  --radius-sm:     8px;
  --shadow:        0 4px 24px rgba(0, 0, 0, 0.5);
  --shadow-hover:  0 16px 48px rgba(0, 0, 0, 0.6);
  --transition:    0.25s ease;

  --color-primary:        #ff6b9d;
  --color-secondary:      #a78bfa;
  --color-text:           #f0f0f0;
  --color-text-secondary: #8a8a8a;
  --color-border:         rgba(255, 255, 255, 0.07);
  --spacing-sm:  1rem;
  --spacing-md:  1.5rem;
  --spacing-lg:  2rem;
  --spacing-xl:  3rem;
  --transition-fast:   0.2s ease;
  --transition-normal: 0.25s ease;
  --radius-small: 8px;
  --radius-large: 14px;
}

/* =================================================
   BASIS
================================================= */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Outfit', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

/* =================================================
   NAVBAR
================================================= */

.navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  height: 62px;
  background: rgba(12, 12, 12, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  gap: 40px;
}

.navbar .logo {
  position: absolute;
  left: 36px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.2px;
  white-space: nowrap;
  text-decoration: none;
}

#navbarMenu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2px;
}

#navbarMenu li a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.88rem;
  padding: 7px 13px;
  border-radius: 7px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
  letter-spacing: 0.1px;
  display: block;
}

#navbarMenu li a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

#navbarMenu li a.active {
  color: var(--accent);
  background: var(--accent-glow);
  font-weight: 600;
}

.navbar-toggle {
  position: absolute;
  right: 20px;
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
}

/* =================================================
   SECTIES
================================================= */

.section {
  max-width: 1100px;
  margin: auto;
  padding: 2rem;
}

.hero {
  padding: 4rem 2rem;
  text-align: center;
}

/* =================================================
   ONDERHOUD BANNER
================================================= */

.site-banner {
  background: rgba(251, 191, 36, 0.08);
  border-bottom: 1px solid rgba(251, 191, 36, 0.2);
  color: #f5c842;
  text-align: center;
  padding: 10px 56px;
  font-size: 0.84rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  letter-spacing: 0.1px;
  line-height: 1.5;
}

.site-banner-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: inherit;
  font-size: 1.3rem;
  cursor: pointer;
  opacity: 0.55;
  padding: 4px 8px;
  line-height: 1;
  transition: opacity var(--transition);
  font-family: inherit;
}

.site-banner-close:hover {
  opacity: 1;
}

/* =================================================
   FOOTER
================================================= */

footer {
  text-align: center;
  padding: 2rem;
  color: var(--text-secondary);
  font-size: 0.88rem;
  border-top: 1px solid var(--border);
  margin-top: 2rem;
}

footer a {
  color: var(--accent);
  text-decoration: none;
  transition: opacity var(--transition);
}

footer a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* =================================================
   MOBILE RESPONSIVE
================================================= */

@media (max-width: 768px) {
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    justify-content: space-between;
    gap: 0;
    padding: 0 20px;
    height: 56px;
    width: 100%;
  }

  .navbar .logo {
    position: static;
    font-size: 1.05rem;
  }

  .navbar-toggle {
    position: static;
    display: block;
    font-size: 1.4rem;
  }

  #navbarMenu {
    display: none;
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background: rgba(12, 12, 12, 0.98);
    flex-direction: column;
    gap: 0;
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
    width: 100%;
    z-index: 999;
  }

  #navbarMenu.active {
    display: flex;
  }

  #navbarMenu li {
    width: 100%;
  }

  #navbarMenu li a {
    padding: 14px 24px;
    border-radius: 0;
    font-size: 0.95rem;
  }

  body {
    padding-top: 56px;
  }
}
