/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Segoe UI', sans-serif;
  color: #eee;
  background-color: #0e0e0e;
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem;
}

/* Header */
.header {
  background: #111;
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #e91e63;
}

.nav {
  float: right;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #e91e63;
}

/* Burger Menu (Mobile) */
.burger {
  display: none;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 5px;
}

/* Hero Section */
.hero {
  /*background: url('https://images.unsplash.com/photo-1753195549952-3028981a3e53?q=80&w=755&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat;*/
  height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
}

.hero-title {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 2rem;
}

.btn {
  background: #e91e63;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s;
}

.btn:hover {
  background: #c2185b;
}

/* Sections */
.section {
  padding: 6rem 0;
  background: #0e0e0e;
}

.section.dark {
  background: #205554;
}

.section h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #e91e63;
}

.services li {
  margin: 0.5rem 0;
  font-size: 1.1rem;
}




/* Footer */
.footer {
  text-align: center;
  padding: 2rem 0;
  background: #111;
  font-size: 0.9rem;
  color: #777;
}

/* Responsive */
@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .burger {
    display: block;
  }

  .nav.active {
    display: block;
    position: absolute;
    top: 70px;
    right: 0;
    background: #111;
    width: 100%;
    text-align: right;
    padding: 1rem;
  }

  .nav-links {
    flex-direction: column;
    gap: 1rem;
  }
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

#p5-background canvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}

.contact-info {
  list-style: none;
  font-size: 1.1rem;
  line-height: 2;
  padding-left: 0;
}

.contact-info li {
  margin-bottom: 0.5rem;
}

.contact-info a {
  color: #e91e63;
  text-decoration: underline;
}

.contact-info a:hover {
  color: #fff;
}

.contact-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  background: #1a1a1a;
  border: 2px solid #333;
  border-radius: 15px;
  padding: 2rem;
  margin-top: 2rem;
  box-shadow: 0 0 15px rgba(233, 30, 99, 0.2);
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: #e91e63;
  box-shadow: 0 0 25px rgba(233, 30, 99, 0.4);
}

.contact-column h4 {
  color: #e91e63;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.contact-column p {
  font-size: 1rem;
  color: #ccc;
}

.contact-column a {
  color: #e91e63;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-column a:hover {
  color: #fff;
}


#services {
  position: relative;
  overflow: hidden;
}

.p5-wrapper canvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
}

.content-overlay {
  position: relative;
  z-index: 1;
}

/* ✅ Algemene sectie-layout */
#services {
  background-color: #1a1a1a;
  padding: 4rem 1rem;
}

#services .container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center; /* Centreren van de kaarten */
}

/* ✅ Service Card */
.service-category {
  flex: 1 1 300px;
  max-width: 500px;
  background: #1f1f1f;
  border: 1px solid #333;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Linkslijnend binnen de kaart */
}

.service-category:hover {
  border-color: #e91e63;
  box-shadow: 0 0 20px rgba(233, 30, 99, 0.4);
}

.service-category h4 {
  color: #e91e63;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.service-category p {
  color: #ccc;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

/* ✅ Lijst met services binnen elke card */
.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.service-list li {
  background: #252525;
  padding: 1rem;
  margin-bottom: 0.8rem;
  border-radius: 8px;
  transition: background 0.3s;
}

.service-list li:hover {
  background: #2f2f2f;
}

.service-list li strong {
  color: #fff;
  display: block;
  margin-bottom: 0.3rem;
}

.service-list li .price {
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: bold;
  background: #e91e63;
  color: #fff;
  padding: 0.3rem 0.6rem;
  border-radius: 20px;
  font-size: 0.9rem;
}

/* ✅ Responsiveness */
@media (max-width: 768px) {
  .service-category {
    flex: 1 1 100%;
  }

  #services .container {
    justify-content: flex-start;
  }
}
