/* =============================
   Base Styles
============================= */

body {
  margin: 0;
  padding: 0;
  color: #000;
  background-color: #fff;
  font-family: "Lucida Grande", Geneva, Arial, Verdana, sans-serif;
  font-size: 11px;
}

img {
  border: none;
  display: block;
  max-width: 100%;
  height: auto;
}

/* =============================
   Links
============================= */

a {
  color: #000;
  background-color: inherit;
  text-decoration: none;
}

a:hover {
  color: #333;
  background-color: #fff;
  text-decoration: underline;
}

a:active {
  color: #fff;
  background-color: #fff;
  text-decoration: none;
}

/* =============================
   Layout
============================= */

.hero {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90vw;
  max-width: 1240px;
  height: auto;
}

.logo {
  position: absolute;
  bottom: 34px;
  right: 10px;
  max-width: 410px;
  width: 100%;
  height: auto;
}

/* =============================
   Responsive Enhancements
============================= */

@media screen and (max-width: 768px) {
  .hero {
    width: 95vw;
  }

  .logo {
    bottom: 20px;
    right: 10px;
    max-width: 280px;
  }
}

@media screen and (max-width: 480px) {
  .hero {
    width: 100vw;
  }

  .logo {
    max-width: 200px;
    bottom: 15px;
    right: 5px;
  }
}

/* =============================
   Optional: Fade-in Animation
============================= */

.hero img {
  transform: scale(8) translate(-30%, -60%);
  opacity: 0;
  animation: zoomInFromTopLeft 1.6s ease-out forwards;
}

@keyframes zoomInFromTopLeft {
  0% {
    transform: scale(8) translate(-30%, -60%);
    opacity: 0;
  }
  60% {
    transform: scale(1.05) translate(0%, 0%);
    opacity: 1;
  }
  100% {
    transform: scale(1) translate(0, 0);
    opacity: 1;
  }
}
