/* ===== Algemene instellingen ===== */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0a0a0f;
  color: #f5f5f5;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #111;
  z-index: 1000;
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 15px;
}

nav ul li {
  margin: 0 20px;
}

nav ul li a {
  color: #f5f5f5;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #00ffcc;
}

/* ===== Hero Section ===== */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 100vh;
  padding: 100px 10%;
  background: linear-gradient(to bottom right, #0d0d0d, #00ffcc);
}

.hero-text {
  max-width: 70%;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin: 0;
}

.hero-text h2 {
  font-size: 2rem;
  margin: 10px 0;
}

.highlight {
  color: #ff4f8b;
}

.highlight2 {
  color: #00ffcc;
}

/* ===== Socials ===== */
.socials {
  margin: 25px 0;
}

.socials a {
  margin-right: 25px;
  color: #f5f5f5;
  font-size: 2rem; /* Kleinere icons */
  transition: color 0.3s, transform 0.3s, text-shadow 0.3s;
}

.socials a:hover {
  color: #00ffcc;
  transform: scale(1.15); /* subtiele zoom */
  text-shadow: 0 0 15px rgba(255, 83, 181, 0.8);
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 25px;
  background: #00ffcc;
  color: #0a0a0f;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 4px 15px rgba(0, 255, 204, 0.3);
}

.btn:hover {
  background: #00cc99;
  box-shadow: 0 6px 20px rgba(0, 255, 204, 0.5);
}

.btn.alt {
  background: #ff4f8b;
  color: white;
  box-shadow: 0 4px 15px rgba(255, 79, 139, 0.3);
}

.btn.alt:hover {
  background: #cc3f70;
  box-shadow: 0 6px 20px rgba(255, 79, 139, 0.5);
}

/* ===== Code Block in Hero ===== */
.hero-code {
  background: #0e0e1a;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0, 255, 204, 0.2);
  font-family: "Courier New", monospace;
  max-width: 45%;
  overflow-x: auto;
}

.hero-code pre {
  margin: 0;
  color: #f8f8f2;
  font-size: 1rem;
}

.hero-code .keyword { color: #ff79c6; }
.hero-code .string { color: #f1fa8c; }
.hero-code .boolean { color: #50fa7b; }

/* ===== Skills Section ===== */
.skills-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 40px;
}

.skills-logos img {
  width: 80px;   /* terug naar originele grootte */
  height: 80px;
  object-fit: contain;
  transition: transform 0.3s, filter 0.3s;
}

.skills-logos img:hover {
  transform: scale(1.2);
  filter: drop-shadow(0 0 10px #00ffcc);
}
