body {
  margin: 0;
  font-family: "Comic Sans MS", sans-serif;
  background: #1ca3ec;
  color: white;
}

.top-bar {
  background: #0b5ed7;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar a {
  color: white;
  text-decoration: none;
  margin-left: 15px;
  font-weight: bold;
}

.logo {
  font-size: 24px;
}

.banner {
  background: linear-gradient(#003366, #1ca3ec);
  text-align: center;
  padding: 80px 20px;
}

.banner h1 {
  font-size: 48px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 40px;
}

.card {
  background: white;
  color: #333;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s;
}

.card:hover {
  transform: scale(1.05);
}
.image-card {
  position: relative;
  height: 180px;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-card span {
  color: white;
  font-size: 26px;
  font-weight: bold;
  text-shadow:
    0 0 4px rgba(0, 0, 0, 0.6),
    0 0 8px rgba(0, 0, 0, 0.4),
    0 0 12px rgba(0, 0, 0, 0.2);

}
.image-card:nth-child(1) {
  background-image: url("https://i.pinimg.com/736x/42/df/ca/42dfcadbf61a15e694c49fe137bb8442.jpg");
}

.image-card:nth-child(2) {
  background-image: url("https://i.pinimg.com/1200x/e3/50/d8/e350d8c248320ba56c1ad70d1da1dcec.jpg");
}

.image-card:nth-child(3) {
  background-image: url("https://i.pinimg.com/736x/a6/a8/5e/a6a85eeab8df2464a121371260cfb600.jpg");
}

.image-card:nth-child(4) {
  background-image: url("https://i.pinimg.com/736x/e8/ec/21/e8ec2104bb414b0ab11b96863b9d63b5.jpg");
}

/* ===== ABOUT ME: MAP + BOOK ===== */

.map-bg {
  background: url("https://i.pinimg.com/1200x/02/52/35/02523535d6e1d585e957834ba7ced41c.jpg") center / cover no-repeat fixed;
  min-height: 100vh;
}

.map-bg::before {
  content: "";
  position: fixed;
  inset: 0;
  backdrop-filter: blur(6px);
  background: rgba(0, 0, 0, 0.25);
  z-index: -1;
}