/* animations */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glowPulse {
  0%, 100% { text-shadow: 0 0 8px rgba(158, 217, 174, 0.0); }
  50% { text-shadow: 0 0 18px rgba(158, 217, 174, 0.67); }
}

body > * {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.logo          { animation-delay: 0.1s; }
h1             { animation-delay: 0.3s; }
h3             { animation-delay: 0.5s; }
p              { animation-delay: 0.65s; }
.social-icons  { animation-delay: 0.8s; }

/* style */

body {
  margin: 0;
  padding: 0;
  height: 100vh;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(180deg, #1c4828 0%, #0e2414 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.logo {
  width: 180px;
  height: auto;
  margin-top: -2rem;
  margin-bottom: 0rem;
  padding-left: 0.75rem;
  animation: fadeUp 0.8s ease 0.1s forwards;
}

h1 {
  font-family: 'Arapey', sans-serif;
  font-size: 4rem;
  margin-top: 0rem;
  margin-bottom: 0.5rem;
  letter-spacing: 5px;
  animation: fadeUp 0.8s ease 0.5s forwards, glowPulse 5s ease-in-out 1.5s infinite;
}

h3 {
  margin-bottom: 0rem;
  font-size: 1.75rem;
  font-style: italic;
}

p {
  font-size: 1rem;
  color: #ccc;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}

.social-icons {
  display: flex;
  gap: 2rem;
}

.social-icons a {
  color: #fff;
  font-size: 2rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  color: #9ed9ae;
  transform: translateY(-3px);
}

.social-logo {
  height: 2rem;
  padding-top: 0.2rem;
}