/* ===== Muggy Landing Page Styles ===== */

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  background-color: #faf7f2; /* soft neutral backdrop */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-img {
  display: block;
  width: 90%;
  max-width: 900px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-img:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

/* ===== Responsive Tweaks ===== */
@media (max-width: 768px) {
  .hero-img {
    width: 95%;
    max-width: 600px;
    border-radius: 10px;
  }
}

@media (max-width: 480px) {
  .hero-img {
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
  }
}
