/* Reset & base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  font-family: 'Quicksand', sans-serif;
  background: linear-gradient(to right, #f6f1f6, #f6baf2);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow-x: hidden;
}

/* Section layout */
.hero {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

/* Social section */
.socials {
  text-align: center;
  animation: fadeDown 1s ease-out;
}

.socials h1 {
  font-family: 'Dancing Script', cursive;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #5a2a82;
}

.follow {
  font-weight: 400;
  font-size: 5rem;
}

/* Icons styling */
.icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.icons a {
  text-decoration: none;
  color: #3e1644;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(-30px);
  animation: dropFade 0.8s forwards;
}

.icons a:nth-child(1) { animation-delay: 0.3s; }
.icons a:nth-child(2) { animation-delay: 0.5s; }
.icons a:nth-child(3) { animation-delay: 0.7s; }

.icons img {
  width: 50px;
  height: 50px;
  filter: invert(15%) sepia(30%) saturate(500%) hue-rotate(280deg);
  transition: transform 0.3s;
}

.icons a:hover img {
  transform: scale(1.15);
}

.icons p {
  margin-top: 8px;
  font-size: 1rem;
}

/* Animations */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dropFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .socials h1 {
    font-size: 2rem;
  }

  .icons {
    flex-direction: column;
    gap: 25px;
  }
}
