#landing {
  min-height: 100vh;
  padding: 2rem 1rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(to bottom, #AC2B37, #000a14);
  color: white;
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  position: relative;
}

#landing h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 0.1em;
  color: rgb(14, 117, 165);
  text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
  margin: 0; /* reset */
}

.logo {
  max-width: clamp(200px, 50vw, 500px);
  height: auto;
  filter: drop-shadow(5px 5px 10px rgba(0,0,0,1));
  padding-top: 10vh;
}

.scroll-down {
  position: static;
  bottom: 2rem;
  font-size: 1.25rem;
  color: white;
  text-decoration: none;
  border: 2px solid white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.scroll-down:hover {
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 480px) {
  #landing {
    padding: 1rem;
  }
  #landing h1 {
    font-size: 2rem;
  }
  .scroll-down {
    font-size: 1rem;
    padding: 0.25rem 0.5rem;
  }
}
