* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Georgia, serif;
  background: #f7f7f7;
  color: #333;
  line-height: 1.6;
}

.navbar {
  background: #222;
  color: #fff;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar .logo {
  font-size: 20px;
  font-weight: bold;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.navbar a:hover {
  color: #fff;
}

.hero {
  padding: 50px 30px;
  background: #eaeaea;
  text-align: center;
  border-radius: 12px;
  margin: 20px;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.hero p {
  max-width: 600px;
  margin: 0 auto 20px;
  font-size: 1.1rem;
}

.hero button {
  background: #333;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.hero button:hover {
  background: #555;
}

.gallery {
  padding: 30px;
}

.gallery h2 {
  text-align: center;
  margin-bottom: 20px;
  font-family: 'Courier New', monospace;
}

.image-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.image-grid img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s;
}

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

footer {
  text-align: center;
  padding: 20px;
  background: #ddd;
  margin-top: 30px;
  font-size: 0.9rem;
}
