body {
  font-family: "Inter", Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #141414;
  color: #222;
  line-height: 1.6;
}

/* ---------- Intro ---------- */
.gallery-intro {
  text-align: center;
  padding: 4rem 10% 2rem;
  background:  #141414;
}

.gallery-intro h2 {
  font-size: 2.2rem;
  color: #1e9c94;
  margin-bottom: 1rem;
}

.gallery-intro p {
  color: #ccc;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ---------- Galerij grid ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 per rij */
  gap: 1.5rem;
  padding: 3rem 10%;
  background: #141414;
}

/* Tablet */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per rij */
  }
}

/* Telefoon */
@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(1, 1fr); /* 1 per rij */
  }
}

.gallery-item {
  overflow: hidden;
  border-radius: 15px;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 25px rgba(30, 156, 148, 0.4);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 15px;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* ---------- CTA sectie ---------- */
.join-section {
  text-align: center;
  padding: 4rem 10%;
  background: linear-gradient(180deg, #1a1a1a 0%, #101010 100%);
  color: #fff;
}

.join-section h2 {
  color: #1e9c94;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.join-section p {
  color: #ccc;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.cta-button {
  background-color: #1e9c94;
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
  background-color: #15736c;
  transform: scale(1.05);
}

/* ---------- Footer ---------- */
.footer {
  background-color: #111;
  color: #ccc;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
}

.footer span {
  color: #1e9c94;
  font-weight: 600;
}

/* ---------- Responsief ---------- */
@media (max-width: 768px) {
  .gallery-intro {
    padding: 3rem 5% 1.5rem;
  }
  .gallery-grid {
    padding: 2rem 5%;
  }
  .join-section {
    padding: 3rem 5%;
  }
}
