body, html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: #000;
  color: #fff;
  text-align: center;
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: fadeIn 2s ease-in-out forwards;
}

.hero-logo img {
  max-width: 80%;
  height: auto;
}

/* Fade-in animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translate(-50%, -60%); }
  to { opacity: 1; transform: translate(-50%, -50%); }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-logo img {
    max-width: 65%;
  }
}

@media (max-width: 480px) {
  .hero-logo img {
    max-width: 80%;
  }
}
