:root {
  --primary: #673ab7;
  --accent: #e91e63;
  --gradient: linear-gradient(180deg, #a56bfc, #f98ccf);
  --light-bg: #fdfbff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', sans-serif;
  background: white;
  color: #222;
}

section:target {
  scroll-margin-top: 70px;
}

/* ======= Navbar ======= */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  height: 50px;
}

.logo span {
  font-family: 'Uncial Antiqua', serif;
  font-size: 1.5rem;
  color: var(--primary);
  letter-spacing: 1px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);

}

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

.nav-links li a {
  text-decoration: none;
  font-size: 0.9rem;
  color: white;
  background: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  transition: background 0.3s;
}

.nav-links li a:hover {
  background: var(--primary);
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--primary)
}

/* Mobile menu */
@media (max-width: 767px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 90px;
    right: 1rem;
    background: white;
    flex-direction: column;
    display: none;
    width: 160px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    border-radius: 10px;
  }

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

  .nav-links li a {
    color: var(--primary);
    background: none;
    padding: 0.8rem 1rem;
    border-radius: 0;
    text-align: right;
  }
}

/* ======= Jumbotron ======= */
.jumbotron {
  margin-top: 80px;
  height: 80vh;
  background: url('assets/jumbotron.png') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  background: rgba(0,0,0,0.5);
  color: white;
  padding: 2rem 1rem;
  margin: 0 1rem;
  text-align: center;
  border-radius: 20px;
  max-width: 800px;
}

.cta-button {
  background: var(--accent);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: bold;
  margin-top: 1rem;
  display: inline-block;
  text-decoration: none;
}

/* ======= Diensten ======= */
.diensten {
  padding: 4rem 2rem;
  background: var(--gradient);
  color: white;
  text-align: center;
}

.diensten ul {
  list-style: disc;
  max-width: 600px;
  margin: 1rem auto;
  text-align: left;
  padding-left: 1rem;
}

/* ======= Portfolio ======= */
.portfolio {
  padding: 4rem 2rem;
  background: var(--gradient);
  color: white;
  text-align: center;
}

.video-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.video-card {
  width: 220px;
}

.video-card iframe {
  width: 100%;
  height: 130px;
  border-radius: 10px;
}

/* ======= Contact ======= */
.contact {
  padding: 4rem 2rem;
  background: var(--light-bg);
  text-align: center;
}

.contact > p {
    margin-top: 1rem;
}

form {
  max-width: 600px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input, textarea {
  padding: 1rem;
  font-size: 1rem;
  border: none;
  background: #eee;
  border-radius: 30px;
}

textarea {
  resize: vertical;
  height: 140px;
}

button {
  padding: 1rem;
  border: none;
  background: var(--primary);
  color: white;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
}

button:hover {
  background: var(--accent);
}

/* ======= Footer ======= */
.footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}

.dienst-card {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
  padding: 2rem;
  margin: 1rem auto;
  max-width: 700px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  color: #fff;
  text-align: left;
}

.dienst-card h3 {
  margin-bottom: 0.2rem;
  font-size: 1.5rem;
}

.prijs {
  font-weight: bold;
  color: #ffe082;
  margin-bottom: 0.5rem;
}

.kort {
  font-style: italic;
  margin-bottom: 0.8rem;
}

.details {
  padding-left: 1.2rem;
  list-style: disc;
  color: #fff;
}

@media (max-width: 768px) {
  .dienst-card {
    padding: 1.2rem;
  }

  .dienst-card h3 {
    font-size: 1.2rem;
  }
}

#socials {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--gradient);
  /** background: linear-gradient(to bottom, #f0f4ff, #ffffff); */
  color: #333;
}

#socials h2 {
  margin-bottom: 2rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.social {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  background: #fff;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.social:hover {
  transform: translateY(-2px);
}

.social img {
  width: 50px;
  height: 50px;
}

.social span {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
}

@media (max-width: 600px) {
  .social-links {
    flex-direction: column;
    align-items: center;
  }
}
