﻿* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000;
  font-family: Arial, sans-serif;
  color: white;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: linear-gradient(to right, #6a00ff, #C71B1B);
}

.profile-icon {
  font-size: 22px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-size: 14px;
}

img {
  width: 100px;
  height: 100px;
  margin-bottom: 15px;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  width: 100%;
}

.container h1 {
  text-align: center;
  font-size: 2rem;
  margin: 0 0 20px;
}

.badge {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 15px;
  margin: 15px 0;
  width: 260px;
  text-align: center;
}

.badges-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  width: 575px; 
}

footer{
    position: fixed;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to right, #6a00ff, #C71B1B);
    color: white;
    text-align: center;
    padding: 10px 0;
}

.topbar img{
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.profile-icon img {
    width: 45px;
    height: 45px;
    border-radius: 50%;    
    object-fit: cover;   
    border: 2px solid #fff;  
    box-shadow: 0 0 5px rgba(0,0,0,0.2); 
}


.badges-container {
  width: 90%;
  max-width: 1000px;
  margin: 40px auto;
  text-align: center;
}

.badges-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.badges-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;              /* meer ruimte tussen badges */
}

.badge-item {
  background: #ffffff15;  /* subtiele transparante card */
  padding: 25px;          /* groter */
  border-radius: 12px;
  width: 200px;           /* breder */
  text-align: center;
  color: white;
  backdrop-filter: blur(4px);
  border: 1px solid #ffffff30;
  transition: 0.2s ease;
}

.badge-item:hover {
  transform: translateY(-5px);
  background: #ffffff25;
}

.badge-item img {
  width: 120px;           /* groter */
  height: 120px;
  object-fit: contain;
}

/* Hamburger standaard verbergen */
.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* Mobile */
@media (max-width: 600px) {

    .hamburger {
        display: block;
        color: white;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        background: linear-gradient(to right, #6a00ff, #C71B1B);
        margin-top: 10px;
        padding: 10px 0;
        border-radius: 10px;
    }

    .nav-links a {
        padding: 10px;
        display: block;
    }

    /* Actieve menu */
    .nav-links.active {
        display: flex;
    }
}

