/* ============================================================
   visit-page.css
   Shared styles for: singapore, uae (and future visit pages)
   ============================================================ */

/* PAGE WRAPPER
   ----------------------------------------------------------- */
.sg-page {
  background: #fff;
  padding: calc(62px + 24px) 60px 80px;
}
.sg-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

/* HEADING
   ----------------------------------------------------------- */
.sg-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #000;
  margin: 0;
  text-align: center;
}

/* HERO IMAGE
   ----------------------------------------------------------- */
.sg-hero-wrap {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}
.sg-hero-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* BODY TEXT
   ----------------------------------------------------------- */
.sg-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.sg-text p {
  font-size: 1rem;
  color: #000;
  line-height: 1.8;
  margin: 0;
}

/* GALLERY GRID
   ----------------------------------------------------------- */
.sg-gallery {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.sg-gallery img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sg-gallery img:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* RESPONSIVE
   ----------------------------------------------------------- */
@media (max-width: 720px) {
  .sg-page    { padding: 56px 20px 64px; }
  .sg-gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}
@media (max-width: 420px) {
  .sg-gallery { grid-template-columns: repeat(2, 1fr); }
}
