/* style.css */

.socials {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}

.socials a {
  text-decoration: none;
}

.socials i {
  font-size: 30px;
  color: white;
  text-shadow: 0 0 0.2em #000;
  transition: color 0.3s ease, transform 0.2s ease;
}

.socials i:hover {
  transform: scale(1.1);
  color: #aaa;
}

.title {
  font-family: derk, sans-serif;
  text-shadow: 0 0 0.2em #000;
  font-size: 3rem;
  user-select: none;
  margin-bottom: 1rem;
}

.socials {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}

.socials a {
  text-decoration: none;
}

.socials i {
  font-size: 30px;
  color: white; /* alap szín */
  text-shadow: 0 0 0.2em #000;
  transition: color 0.3s ease, transform 0.2s ease;
}

/* Hover: színes ikon */
.socials a:hover .fa-instagram {
  color: transparent;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent; /* Safari */
  text-fill-color: transparent;
}


.socials a:hover .fa-discord {
  color: #5865F2;
}

.socials a:hover .fa-youtube {
  color: #FF0000;
}

.socials a:hover .fa-steam {
  color: #136EA0;
}

.socials i:hover {
  transform: scale(1.1);
}
