.about-section {
  background: #0d0d0d;
  color: #f5f5f5;
  padding: 100px 20px;
  text-align: center;
}

.about-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #00ffcc;
}

.about-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

/* Tekst */
.about-text {
  flex: 1 1 500px;
  background: #111;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 0 25px rgba(0, 255, 204, 0.2);
  min-height: 300px;
  text-align: left;
  line-height: 1.8;
  font-size: 1.2rem;
  position: relative;
}

.line {
  white-space: normal;
  overflow: hidden;
  display: block;
  margin: 10px 0;
  color: #f5f5f5;
  visibility: hidden; /* verberg totdat JS typt */
}

.cursor {
  display: inline-block;
  border-right: 2px solid #00ffcc;
  animation: blink 0.7s step-end infinite;
}

@keyframes blink {
  50% { border-color: transparent; }
}

/* Kleuren */
.highlight {
  color: #ff4f8b;
  font-weight: bold;
}

.highlight2 {
  color: #00ffcc;
  font-weight: bold;
}

/* Kat */
.about-image img {
  flex: 1 1 300px;
  max-width: 350px;
  border-radius: 14px;
  box-shadow: 0 0 25px rgba(255, 79, 139, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.05) rotate(-2deg);
  box-shadow: 0 0 35px rgba(0, 255, 204, 0.5);
}
