
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to bottom, #fff, #f7f7f7);
  color: #222;
  line-height: 1.6;
}

/* Typography */
p {
  margin-bottom: 2em;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 3px solid #222;
}

/* Navigation */
.navbar {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1.5rem 2rem;
  background-color: #fff;
}

.navbar a {
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  color: #222;
  position: relative;
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: #713dff;
}

/* Hero Section */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4rem 2rem;
  flex-wrap: wrap;
}

.hero-text h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hero-text .purple {
  color: #713dff;
}

.hero-text .pink {
  color: #ce6aec;
}

.hero-text .green {
  color: #8adf6b;
}

.tag {
  background: #713dff;
  padding: 1rem;
  display: inline-block;
  margin-bottom: 2rem;
  font-weight: bold;
  font-size: 3em;
  color: white;
  border-radius: 5px;
  transform: rotate(-5deg);
  box-shadow: 4px 4px 0px #333;
}

/* Buttons */
.buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.75rem 1.5rem;
  border: none;
  font-weight: bold;
  border-radius: 10px;
  box-shadow: 2px 2px 0px #333;
  cursor: pointer;
  transition: all 0.5s ease;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 4px 4px 0px #222;
}

.btn.pink {
  background: #ce6aec;
  color: white;
  box-shadow: 3px 3px 0px #222;
}

.btn.purple {
  background: #713dff;
  color: white;
  box-shadow: 3px 3px 0px #222;
}


.btn.white {
  background: white;
  border: 2px solid #222;
  color: #222;
  box-shadow: 3px 3px 0px #222;
}

/* Preview Section */
.preview {
  padding: 4rem 2rem;
  background: #fffdee;
  border-top: 3px solid #222;
  border-bottom: 3px solid #222;
  text-align: center;
}

.preview-work {
  max-width: 800px;
  margin: 0 auto;
}

img {
  margin: 5px;
}

.preview-work h2 {
  font-size: 2.5rem;
  color: #ce6aec;
  margin-bottom: 1rem;
}

.preview-work p {
  font-size: 1.125rem;
  color: #333;
  margin-bottom: 2rem;
}

.preview-btn {
  display: inline-block;
  background-color: #713dff;
  color: white;
  font-weight: bold;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 3px 3px 0px #222;
  margin-bottom: 2rem;
  transition: all 0.2s ease;
}

.preview-btn:hover {
  transform: translateY(-2px);
  box-shadow: 5px 5px 0px #222;
}

.preview-image {
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
  box-shadow: 5px 5px 0px #222;
  transition: transform 0.3s ease;
}

.preview-image:hover {
  transform: scale(1.02);
}

/* Work Page */
.work-gallery {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 2rem;
  text-align: center;
}

.work-gallery h2 {
  font-size: 2.5rem;
  color: #713dff;
  font-weight: 700;
  margin-bottom: 2rem;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.work-card {
  background: #fffdee;
  border: 3px solid #222;
  border-radius: 20px;
  box-shadow: 5px 5px 0px #222;
  padding: 1rem;
  transition: transform 0.2s ease;
}

.work-card:hover {
  transform: scale(1.02);
}

.work-image {
  width: 100%;
  border-radius: 12px;
  box-shadow: 3px 3px 0px #222;
  margin-bottom: 1rem;
  object-fit: cover;
 max-height: 500px;
}

.work-info h3 {
  font-size: 1.5rem;
  color: #ec6a8d;
  margin-bottom: 0.5rem;
}

.work-info p {
  font-size: 1rem;
  color: #333;
  padding: 0 1rem;
}

/* About Me Page */
.about-me {
  max-width: 800px;
  margin: 5rem auto;
  padding: 3rem 2rem;
  background: #fff;
  border: 3px solid #222;
  border-radius: 20px;
  box-shadow: 5px 5px 0px #222;
  color: #333;
}

.about-me h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #713dff;
  text-align: center;
}

.about-me p {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.about-me strong {
  color: #ce6aec;
}

/* contact.html */
/* formulier */

/* Footer */
.site-footer {
  background-color: #f9f9f9;
  border-top: 3px solid #222;
  padding: 2rem;
  text-align: center;
  font-size: 1rem;
  color: #555;
  margin-top: 4rem;
}

.site-footer p {
  margin: 0;
  font-weight: 500;
}

/* === Responsive Media Queries === */

/* Tablets */
@media (min-width: 768px) {
  .hero {
    flex-direction: row;
    text-align: left;
  }

  .work-gallery .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-me {
    padding: 4rem;
  }
}

/* Desktops */
@media (min-width: 1024px) {
  .hero {
    padding: 6rem 4rem;
  }

  .hero-text h1 {
    font-size: 4rem;
  }

  .work-gallery .work-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .work-card {
    padding: 2.5rem;
  }
}

/* Mobile */
@media (max-width: 767px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    flex-direction: column;
    text-align: center;
  }

  .buttons {
    flex-direction: column;
    align-items: center;
  }

  .buttons .btn {
    margin-bottom: 1rem;
    margin-right: 0;
  }

  .preview-image {
    max-width: 100%;
  }

  .work-info p {
    font-size: 1rem;
  }
}
