body {
  margin: 0;
  font-family: "Georgia", serif;
  background: url("images/parchment.jpg") repeat;
  background-size: cover;
  color: #333;
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #b58900;
  color: white;
  padding: 10px 20px;
  z-index: 1000;
  border-bottom: 3px solid #8c6d00;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.nav-bar a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.nav-bar a:hover {
  text-decoration: underline;
}

.content {
  padding: 100px 20px 40px;
}

.button {
  display: inline-block;
  padding: 8px 16px;
  background: #b58900;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  margin-top: 10px;
  font-weight: bold;
}

.button:hover {
  background: #8c6d00;
}

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.watch-card {
  width: 250px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
}

.watch-card img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.watch-details {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 20px;
}
