body {
  margin: 0;
  padding: 0;
  background-color: #1e1e1e;
  font-family: 'Segoe UI', sans-serif;
  font-weight: 300;
  color: white;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  padding: 10px 0;
  text-align: center;
}

header h1 {
  font-family: 'Girly Stuff', cursive;
  font-size: 3em;
  font-weight: normal;
  background: linear-gradient(90deg, #ff69b4, #ba55d3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  padding: 10px 10px;
}

.card-wrapper {
  background-color: #2c2c2c;
  display: flex;
  flex-wrap: wrap;
  gap: 0px;
  padding: 10px 10px 0px 10px;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  width: 80%;
  animation: fadeIn 0.8s ease-in;
}

.photo {
  max-width: 550px;
  flex: 1 1 auto;
  display: flex;
}

.photo img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  border-radius: 12px;
}

.stream-box {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stream-box iframe {
  width: 100%;
  height: 500px;
  border: none;
  border-radius: 12px;
}

.stream-link p {
  margin-top: 15px;
  font-size: 1em;
  text-align: center;
}

.stream-link a {
  color: #ff69b4;
  text-decoration: none;
  font-weight: bold;
}

.stream-link a:hover {
  text-decoration: underline;
}

.social-icons {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icons a {
  color: white;
  font-size: 1.8em;
  transition: transform 0.2s, color 0.3s;
}

.social-icons a:hover {
  color: #ff69b4;
  transform: scale(1.15);
}

footer {
  background-color: #111;
  color: #888;
  text-align: center;
  padding: 15px;
  font-size: 0.9em;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}


/* Responsive ontwerp voor mobiel */
@media (max-width: 768px) {
  main {
    padding: 20px 10px;
  }

  .card-wrapper {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  .photo, .stream-box {
    max-width: 100%;
    width: 100%;
  }

  .photo img {
    height: auto;
    max-height: 400px;
  }

  .stream-box iframe {
    height: 300px;
  }

  header h1 {
    font-size: 2.2em;
  }

  .social-icons {
    flex-wrap: wrap;
    gap: 15px;
  }
}


/* Kleuraccenten en verbeterde visuele stijl */
body {
  background: linear-gradient(145deg, #2a2a35, #1e1e1e);
}

.card-wrapper {
  background-color: #2c2c2c;
  box-shadow: 0 0 25px rgba(255, 105, 180, 0.3);
}

.stream-box {
  background: linear-gradient(to bottom, #3b3b4f, #2c2c2c);
  padding: 20px;
  border-radius: 12px;
}

.social-icons a:hover {
  transform: scale(1.15);
}

.social-icons a[title="Instagram"]:hover {
  color: #E1306C;
}

.social-icons a[title="TikTok"]:hover {
  color: #69C9D0;
}

.social-icons a[title="Discord"]:hover {
  color: #7289DA;
}

.about {
  text-align: center;
  margin: 40px auto;
  max-width: 800px;
  padding: 20px;
  color: #ddd;
}

.about h2 {
  font-size: 2em;
  margin-bottom: 10px;
  color: #ff69b4;
}


footer {
  background-color: #1a1a1a;
  color: #aaa;
  font-size: 0.95em;
}

.about-wrapper {
  flex-direction: row-reverse;
  margin: 10px auto;
  max-width: 500px;
  padding: 30px;
  gap: 10px;
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(186, 85, 211, 0.4), 0 0 60px rgba(255, 105, 180, 0.2);
  background-color: rgba(44, 44, 44, 0.9);
}

.about-wrapper .about-text {
  flex: 1 1 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ddd;
}

.about-wrapper h2 {
  color: #ff69b4;
  font-size: 2em;
  margin-bottom: 10px;
}

.about-wrapper p {
  font-size: 1.1em;
  line-height: 1.6;
}

.about-wrapper .about-photo {
  flex: 1 1 40%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-wrapper .about-photo img {
  max-width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: center;

}

.logo {
  height: 200px;
  width: auto;
}

.title-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.subtitle {
  font-size: 1.2em;
  color: #ff69b4;
  margin: 0;
  margin-top: -40px;
  font-family: 'Girly Stuff', cursive;
}
