/* =========================
   SOCIAL SECTION
========================= */
.social-section {
  min-height: 100vh;
  padding: 120px 8%;
  text-align: center;
}
/* TITLE */
.social-title {
  font-size: 65px;
  color: cyan;
  margin-bottom: 20px;
  text-shadow: 0 0 20px cyan;
  animation: glow 2s infinite alternate;
}
/* TEXT */
.social-text {
  color: white;
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto 60px;
  line-height: 1.7;
}
/* CONTAINER */
.social-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
}
/* CARD */
.social-card {
  width: 230px;
  height: 80px;
  border: 2px solid cyan;
  border-radius: 20px;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: white;
  font-size: 24px;
  font-weight: bold;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 20px cyan;
  transition: 0.3s ease;
  backdrop-filter: blur(10px);
  animation: glowpulse 3s infinite;
  animation: float 5s ease-in-out infinite;
}
@keyframes glowPulse {
  0% {
    box-shadow: 0 0 20px cyan;
  }
  50% {
    box-shadow:
      0 0 20px cyan,
      0 0 40px cyan;
  }
  100% {
    box-shadow: 0 0 10px cyan;
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}
/* HOVER */
.social-card:hover {
  transform: translateY(-10px) scale(1.05);
  background: cyan;
  color: black;
  box-shadow:
    0 0 25px cyan,
    0 0 30px cyan,
    0 0 60px cyan;
}
/* ANIMATION */
@keyframes glow {
  from {
    text-shadow: 0 0 10px cyan;
  }
  to {
    text-shadow:
      0 0 20px cyan,
      0 0 40px cyan;
  }
}
/* =========================
   SOCIAL PAGE FINAL VERSION
========================= */

.social-section {
  padding: 100px 50px;
  text-align: center;
  position: relative;
}

/* TITLE */

.social-title {
  font-size: 65px;
  color: cyan;
  margin-bottom: 20px;
  letter-spacing: 3px;

  text-shadow:
    0 0 10px cyan,
    0 0 20px cyan,
    0 0 40px #00ffff;

  animation: glowTitle 3s infinite alternate;
}

/* DESCRIPTION */

.social-desc {
  color: white;
  font-size: 18px;
  line-height: 35px;
  margin-bottom: 60px;
}

/* GRID */

.social-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 35px;
}

/* CARDS */

.social-card {
  width: 240px;
  padding: 25px;

  border-radius: 18px;

  background: rgba(255, 255, 255, 0.05);

  border: 2px solid rgba(0, 255, 255, 0.4);

  backdrop-filter: blur(10px);

  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);

  transition: 0.4s;

  animation: floatCard 4s ease-in-out infinite;

  position: relative;

  overflow: hidden;
}

/* HOVER */

.social-card:hover {
  transform: translateY(-12px) scale(1.05);

  border-color: cyan;

  box-shadow:
    0 0 20px cyan,
    0 0 40px #00ffff,
    0 0 80px rgba(0, 255, 255, 0.5);
}

/* ICON */

.social-card i {
  font-size: 34px;

  margin-bottom: 18px;

  color: white;

  animation: pulse 2s infinite;
}

/* LINK */

.social-card a {
  text-decoration: none;

  color: white;

  font-size: 24px;

  font-weight: bold;

  transition: 0.3s;
}

.social-card a:hover {
  color: cyan;

  text-shadow:
    0 0 10px cyan,
    0 0 20px cyan;
}

/* FLOAT */

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* ICON PULSE */

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

/* TITLE GLOW */

@keyframes glowTitle {
  from {
    text-shadow: 0 0 10px cyan;
  }

  to {
    text-shadow:
      0 0 20px cyan,
      0 0 40px #00ffff,
      0 0 60px cyan;
  }
}
