/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body & Font */
body {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  background: #fafafa;
  color: #333;
  line-height: 1.6;
}

/* Header */
h1 {
  text-align: center;
  padding: 20px;
  background: linear-gradient(90deg, #d35400, #e67e22);
  color: white;
  font-size: 28px;
  letter-spacing: 2px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Navigasi */
.menu {
  background: #e67e22;
  display: flex;
  justify-content: center;
  padding: 10px 0;
}

.menu ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.menu ul li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 16px;
  padding: 8px 14px;
  border-radius: 8px;
  transition: 0.3s;
}

.menu ul li a:hover,
.menu ul li a.active {
  background: #d35400;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

/* Galeri */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 30px;
}

.gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}