/* Olive green gradient background (dark center, light edges) */
body {
  margin: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle at center, #4a4d2c 0%, #6b7042 40%, #b5b87a 80%, #f5f5f0 100%);
  font-family: 'Poppins', sans-serif;
  position: relative;
}

/* Centered logo and text */
.container {
  text-align: center;
  color: white;
  z-index: 1;
}

/* Logo fade-in */
.logo {
  width: 360px;
  height: auto;
  margin-bottom: 5px;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.4));
  opacity: 0;
  animation: fadeIn 2s ease-in-out forwards;
}

/* Title fade-in */
.logo {
  width: 380px;
  height: auto;
  margin-bottom: 5px;
  filter: brightness(0) saturate(100%) sepia(100%) hue-rotate(10deg) saturate(400%) brightness(90%);
  opacity: 0;
  animation: fadeIn 2s ease-in-out forwards;
}

/* Contact link styling */
h2 a {
  color: white;
  text-decoration: none;
  font-weight: normal;
  opacity: 0;
  animation: fadeIn 2s ease-in-out 2s forwards;
}

h2 a:hover {
  text-decoration: underline;
}

/* Fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Footer (ABN) styling */
footer {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
}

footer p {
  color: white;
  font-size: 0.8rem;
  opacity: 0.9;
  margin: 0;
  animation: fadeIn 2s ease-in-out 3s forwards;
}
