body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #13304b;
  color: #fff;
}

a {
  color: #ffcc00;
  text-decoration: none;
  margin: 0 10px;
}
/* HERO */
.hero {
  height: 90vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-box {
  background: #0e2438;
  padding: 40px;
  text-align: center;
}

/* SECTIONS */
.section {
  padding: 60px 30px;
  text-align: center;
}

.section h2 {
  color: #ff0000;
  margin-bottom: 40px;
}

.dark {
  background: #0e2438;
}

/* MENU */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.card {
  background: #13304b;
  padding: 20px;
  border-radius: 10px;
}

.card img {
  width: 100%;
  max-height: 140px;
  object-fit: contain;
}

.card span {
  color: #ffcc00;
  font-weight: bold;
}
.card img{
  transition: transform 0.25s ease;
}

.card:hover img{
  transform: scale(1.15);
}


/* TEAM */
.team-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;              /* dichter bij elkaar */
  justify-items: center;

  max-width: 800px;       /* ⬅️ dit is de sleutel */
  margin: 0 auto;         /* centreert de groep */
}
/* Vanaf kaart 3 alles onder elkaar */
.team-card:nth-child(n+3){
  grid-column: 1 / -1;
}
.team-card{
  margin-left: auto;
  margin-right: auto;
}
/* Team card */
.team-card{
  background: #0e2438;
  padding: 35px 25px 25px;
  border-radius: 10px;
  text-align: center;
  width: 100%;
  max-width: 320px;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;           /* vaste afstand tussen items */
}
.team-card p{
  color: #ffcc00;   /* geel (rolkleur) */
  font-weight: 600;
}
/* Team foto */
.team-photo{
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  display: block;

  border: 3px solid #ffcc00;
  background: #23313d;
  margin: 0;           /* belangrijk: geen wisselende margins */
}
#solliciteren{
  text-align: center;
}

.btn-discord{
  display: inline-block;
  margin-top: 20px;
  padding: 14px 28px;
  background: #5865F2;
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-discord:hover{
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}
/* BurgerShot neon style */
.neon-title{
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: #ff1a1a;

  /* mooie gloed */
  text-shadow:
    0 0 4px rgba(255,26,26,0.8),
    0 0 10px rgba(255,0,0,0.6),
    0 0 18px rgba(200,0,0,0.5);

  letter-spacing: 2px;
  animation: neon-blink 2.2s infinite;
}
@keyframes neon-blink{
  0%   { opacity: 1; }
  65%  { opacity: 1; }

  70%  { opacity: 0; }   /* UIT */
  74%  { opacity: 1; }   /* AAN */

  88%  { opacity: 0; }   /* UIT */
  92%  { opacity: 1; }   /* AAN */

  100% { opacity: 1; }
}
