/* ============================
   MINI MINDS LAND - HOMEPAGE CSS
   Page-specific styles only
============================ */

/* --------------------------------
   Background (Responsive: mobile/desktop)
-------------------------------- */
.full-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background-image: url("../images/backgrounds/bg-home-mobile.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  z-index: -1;
}

@media (min-width: 768px) {
  .full-bg {
    background-image: url("../images/backgrounds/bg-home-desktop.webp");
  }
}

/* --------------------------------
   Hero Image: Sam & Lucia on Cloud
-------------------------------- */
.hero-image {
  width: 90%;
  max-width: 300px;
  display: block;
  margin: 0 auto;
}

/* --------------------------------
   Button Panel (Horizontal layout)
-------------------------------- */
.button-grid {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* Button images inside grid */
.button-grid img {
  height: 140px;
  width: auto;
  max-height: 20vh;
  object-fit: contain;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.button-grid img:hover {
  transform: scale(1.05);
}

/* --------------------------------
   Responsive Tweaks
-------------------------------- */
@media (max-width: 480px) {
  .button-grid {
    gap: 12px;
  }

  .button-grid img {
    height: 110px;
  }
}
