/* Social Media Section */

.social-media-section {
  text-align: center;
  padding: 50px 0;
  color: #fff;
}

.social-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive Title */

@media (max-width: 992px) {
  .social-title {
    font-size: 24px;
  }
}

@media (max-width: 600px) {
  .social-title {
    font-size: 20px;
  }
}

.social-boxes {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-box i {
  font-size: 24px;
  transition: all 0.3s ease;
}

/* Hover Effect */

.social-box:hover {
  color: #fff;
}

.social-box.discord:hover {
  background: #7289da;
}

.social-box.facebook:hover {
  background: #1877f2;
}

.social-box.youtube:hover {
  background: #ff0000;
}

