
body{margin:0;font-family:Arial,Helvetica,sans-serif;background:#f5f5f5}
header{background:#0f172a;color:#fff;padding:15px 20px;display:flex;justify-content:space-between;align-items:center}
.site-title{font-size:20px;font-weight:bold}
.navbar a{color:#fff;margin-left:15px;text-decoration:none;font-size:14px}

.hero{padding:50px;background:#e2e8f0;text-align:center}
.content{padding:30px;background:#fff;margin:20px;border-radius:6px}

.gallery{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  overflow: visible;
}
ul li{
  margin-bottom: 10px;   /* adjust spacing as needed */
}

/* Grid item */
.thumb{
  position: relative;
  overflow: visible;
  z-index: 1;                /* baseline */
}

/* Image */
.thumb img{
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Hover state */
.thumb:hover{
  z-index: 999;              /* 🔑 brings above neighbours */
}

.thumb:hover img{
  transform: scale(3.1);
  box-shadow: 0 12px 35px rgba(0,0,0,0.35);
}
.map-title{
  text-align: center;
  margin: 30px 0 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
}



footer{text-align:center;padding:15px;background:#0f172a;color:#fff}
