@import url('https://fonts.googleapis.com/css2?family=Special+Gothic+Expanded+One&display=swap');
/* GENERAL */
body {
  background-color: rgb(31, 31, 31);
  margin: 0;
  padding-top: 120px;
  font-family: Arial, sans-serif;
  color: white;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background-color: #111;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  flex-wrap: wrap;
}

.navbar-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-left img {
  width: 70px;
  height: 70px;
  object-fit: cover;
}

.player-name {
  font-size: 18px;
  font-weight: bold;
  color: white;
}

.profile-selector {
  position: absolute;
  top: 110px;
  left: 20px;
  background-color: #222;
  border: 2px solid #444;
  padding: 10px;
  border-radius: 10px;
  display: none;
  z-index: 999;
}

.profile-selector img {
  width: 60px;
  height: 60px;
  margin: 5px;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s, border 0.2s;
}

.profile-selector img:hover {
  transform: scale(1.1);
  border: 2px solid #007bff;
}


.navbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  flex-wrap: wrap;
}

.icon {
  font-size: 30px;
}

.battery-text {
  font-size: 25px;
  color: white;
}

.imageWifi {
  width: 50px;
  height: auto;
}

.imageWifi img {
  width: 100%;
  height: auto;
  display: block;
}

/* LOGO GRID */
.logo-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  justify-items: center;
  padding: 40px 20px;
}

.logo-item {
  text-align: center;
  position: relative;
  width: 100%;
  max-width: 350px;
}

.label {
  color: rgb(0, 119, 255);
  font-size: 18px;
  margin-bottom: 8px;
  opacity: 0;
  transition: opacity 0.3s;
  display: block;
  height: 20px;
  font-family: 'Special Gothic Expanded One', sans-serif;
}


.logo-item:hover .label {
  opacity: 1;
}

.logo-item a img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 3px solid transparent;
  transition: border 0.3s;
  cursor: pointer;
}

.logo-item a img:hover {
  border: 3px solid rgb(0, 89, 255);
}

/* New Circle Container */
.circle-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px; 
  margin-top: 30px; 
}

/* Circle Styling */
.circle {
  
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: rgb(41, 41, 41);
  display: inline-block;
  transition: border 0.3s;
  box-sizing: border-box;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border: 3px solid transparent;
  margin-bottom: 75px;
}

/* Hover effect */
.circle:hover {
  border: 3px solid rgb(0, 89, 255); 
}

.circle1 {
  background-image: url("images/instagram.png");
}

.circle2 {
  background-image: url("images/Facebook-logo.png");
}

.circle3 {
  background-image: url("images/linkedin.png");
}

.circle4 {
  background-image: url("images/thuisbezorgd.png");
}

.circle5{
  background-image: url("images/steamlogo.png");
}

hr{
  color: #444;
}

#logoSwitch {
  width: 120px;
  height: 120px;
  margin-left: 50px;
}

.Footer{
  display: flex;
  flex-direction: row;
  justify-content: space-between
}
.footerRight {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 30px;
  flex-wrap: wrap;
  margin-right: 50px;
}
 
.footerLeft {
  display: flex;
}

#optionsLogo{
  width: 80px;
  height: 80px;
  ;
}

#homeLogo{
  width: 90px;
  height: 90px;
  margin-left: 15px;
  
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px;
    height: auto;
  }

  .navbar-left img {
    width: 60px;
    height: 60px;
  }

  .player-name {
    font-size: 16px;
  }

  .navbar-right {
    font-size: 16px;
    gap: 8px;
    margin-top: 10px;
  }

  .battery-text {
    font-size: 18px;
  }

  .label {
    font-size: 16px;
  }
}
