/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  background: url("Images/KatanaCover.png") center/cover no-repeat;
  font-family: Arial, sans-serif;
  color: white;
  position: relative;
}

/* Navbar */
header {
  position: absolute;
  top: 40px;
  right: 58px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 60px;
}

nav ul li a {
  text-decoration: none;
  font-size: 22px;
  font-weight: 600;
  color: white;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #999;
}

/* Logo */
.logo-container {
  position: absolute;
  top: 17%;
  left: 50%;
  transform: translateX(-50%);
}

.logo-container img {
  max-width: 80vw; /* responsive */
  height: auto;
}

/* Scroll Down */
.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 14px;
  letter-spacing: 2px;
  color: #aaa;
}

.scroll-down img {
  margin-top: 10px;
  width: 28px;
  height: auto;
  animation: bounce 1.5s infinite;
}

/* Arrow bounce animation - only Y movement */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

