/* style.css */

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  background: linear-gradient(135deg, #ff8585, #e2668e, #b85098, #7e469e, #21409a, #009f9d, #5be49b, #ff8585);
  background-size: 400% 400%;
  animation: gradientShift 30s ease infinite;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes wiggle {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(10deg); }
  50% { transform: rotate(-8deg); }
  75% { transform: rotate(6deg); }
  100% { transform: rotate(0deg); }
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.intro img {
  display: block;
  width: 64px;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.intro img:hover {
  animation: wiggle 0.5s ease;
}

.intro p {
  font-size: 3.5rem;
  line-height: 1.4;
  font-weight: 700;
}

.intro a {
  position: relative;
  color: #fcdb3c;
  text-decoration: none;
  
}

.intro a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 0;
  height: 3px;
  background-color: #fcdb3c;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.intro a:hover::after {
  width: 100%;
  left: 0;
}

.social {
  margin-top: 3rem;
}

.label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.links a {
  display: inline-block;
  margin-right: 1.5rem;
  border: none;
}

.links img {
  width: 48px;
  height: auto;
}

@media (max-width: 768px) {
  .intro p {
    font-size: 2.5rem;
  }
  .links a {
    margin-right: 1rem;
  }
}

@media (max-width: 480px) {
  .intro p {
    font-size: 1.75rem;
  }
  .links img {
    width: 36px;
  }
}


.intro img:active {
  animation: partyWave 1s ease-in-out;
}

@keyframes partyWave {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(30deg) scale(1.2); }
  50% { transform: rotate(-30deg) scale(1.2); }
  75% { transform: rotate(10deg); }
  100% { transform: rotate(0deg); }
}
