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

/* ── CSS Custom Properties ── */
:root {
  --background:       hsl(220, 20%, 8%);
  --foreground:       hsl(0, 0%, 95%);
  --card:             hsl(220, 18%, 12%);
  --card-foreground:  hsl(0, 0%, 95%);
  --primary:          hsl(4, 80%, 50%);
  --primary-10:       hsla(4, 80%, 50%, 0.1);
  --primary-50:       hsla(4, 80%, 50%, 0.5);
  --primary-90:       hsla(4, 80%, 50%, 0.9);
  --secondary:        hsl(220, 15%, 18%);
  --border:           hsl(220, 15%, 20%);
  --muted-foreground: hsl(220, 10%, 55%);
  --accent:           hsl(25, 90%, 55%);
  --steel-light:      hsl(220, 8%, 65%);
  --foreground-10:    hsla(0, 0%, 95%, 0.1);
  --foreground-30:    hsla(0, 0%, 95%, 0.3);
  --background-60:    hsla(220, 20%, 8%, 0.6);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button, input, textarea { font-family: inherit; }

/* ── Utility ── */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.font-heading { font-family: 'Bebas Neue', sans-serif; }

.text-primary   { color: var(--primary); }
.text-muted     { color: var(--muted-foreground); }
.text-steel     { color: var(--steel-light); }

.text-gradient-spark {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Animations ── */
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.anim-1 { animation: fade-in-up 0.8s ease-out 0.0s both; }
.anim-2 { animation: fade-in-up 0.8s ease-out 0.15s both; }
.anim-3 { animation: fade-in-up 0.8s ease-out 0.30s both; }
.anim-4 { animation: fade-in-up 0.8s ease-out 0.45s both; }

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: hsla(220, 20%, 8%, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.navbar__logo {
  display: flex;
  align-items: center;
}

.navbar__logo-img {
  height: 4rem; /* Past binnen de 5rem navbar__inner hoogte */
  width: auto;
}

.footer__logo-img {
  height: 2.5rem;
  width: auto;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.navbar__links a {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--foreground);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: color 0.2s;
}
.navbar__links a:hover { color: var(--primary); }
.navbar__links a.btn-primary { color: var(--foreground); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: #fff;
  padding: 0.625rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 0.25rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--primary-90); }

/* Mobile toggle */
.navbar__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--foreground);
  padding: 0.25rem;
}

.navbar__mobile {
  display: none;
  background: var(--background);
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem;
  flex-direction: column;
  gap: 1rem;
}
.navbar__mobile.open { display: flex; animation: fade-in 0.2s ease-out; }

.navbar__mobile a {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.5rem 0;
  transition: color 0.2s;
}
.navbar__mobile a:hover { color: var(--foreground); }

.navbar__mobile .btn-primary {
  justify-content: center;
  padding: 0.75rem 1.25rem;
}

@media (max-width: 767px) {
  .navbar__links { display: none; }
  .navbar__toggle { display: block; }
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    hsla(220, 20%, 8%, 0.7) 0%,
    hsla(220, 20%, 8%, 0.4) 40%,
    hsla(220, 20%, 8%, 0.8) 100%
  );
}

.hero__content {
  position: relative;
  max-width: 48rem;
}

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--primary);
  margin-bottom: 1rem;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
    display: inline-block;
}

.hero__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 0.9;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.hero__subtitle {
  font-size: 1.125rem;
  color: var(--foreground);
  max-width: 36rem;
  margin-bottom: 2.5rem;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--foreground-30);
  color: var(--foreground);
  padding: 1rem 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 0.25rem;
  transition: background 0.2s;
}
.btn-outline:hover { background: var(--foreground-10); }

.btn-primary.btn-lg {
  padding: 1rem 2rem;
  font-size: 0.75rem;
}
.section-divider {
    background: linear-gradient(90deg, transparent, var(--primary-50), transparent);
    height: 1px;
    width: 100%;
}

/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */
.services {
  padding: 6rem 0;
  background: var(--secondary);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--foreground);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 2rem;
  border-radius: 0.25rem;
  transition: border-color 0.2s;
}
.service-card:hover { border-color: var(--primary-50); }

.service-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}
.service-card:hover .service-card__icon { color: var(--accent); }

.service-card__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.service-card__desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* ══════════════════════════════════════
   PROJECTS
══════════════════════════════════════ */
.projects {
  padding: 6rem 0;
  background: var(--background);
}

.projects__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.25rem;
}

.project-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.project-card:hover img { transform: scale(1.05); }

.project-card__overlay {
  position: absolute;
  inset: 0;
  background: var(--background-60);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}
.project-card:hover .project-card__overlay { opacity: 1; }

.project-card__cat {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.project-card__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.875rem;
  color: var(--foreground);
}

@media (max-width: 1023px) {
  .projects__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 639px) {
  .projects__grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════
   ABOUT
══════════════════════════════════════ */
.about {
  padding: 6rem 0;
  background: var(--secondary);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about__image {
  overflow: hidden;
  border-radius: 0.25rem;
}

.about__image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.about__text {
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about__qualities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 2rem;
}

.quality-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.quality-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.quality-item span {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

@media (max-width: 1023px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__image { order: -1; }
}

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
.contact {
  padding: 6rem 0;
  background: var(--background);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 64rem;
  margin: 0 auto;
}

.contact__intro {
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.contact__info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact__info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact__info-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.25rem;
  background: var(--primary-10);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__info-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.contact__info-label {
  color: var(--foreground);
  transition: color 0.2s;
}
a.contact__info-label:hover { color: var(--primary); }
span.contact__info-label { color: var(--muted-foreground); }

/* Form */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-input,
.form-textarea {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.25rem;
  padding: 0.75rem 1rem;
  color: var(--foreground);
  font-size: 0.875rem;
  transition: border-color 0.2s;
  outline: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--muted-foreground); }
.form-input:focus,
.form-textarea:focus { border-color: var(--primary); }

.form-textarea { resize: none; }

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 0.2s;
}
.form-submit:hover { background: var(--primary-90); }

@media (max-width: 767px) {
  .contact__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  padding: 3rem 0;
  background: var(--secondary);
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}


.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer__nav a {
  font-size: 0.7rem;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: color 0.2s;
}
.footer__nav a:hover { color: var(--foreground); }

.footer__copy {
  font-size: 0.7rem;
  color: var(--muted-foreground);
}

/* ══════════════════════════════════════
   SVG Icons (inline)
══════════════════════════════════════ */
svg { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
