body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #2b241c;
  color: #fff;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  background: #3d3227;
  border-bottom: 2px solid goldenrod;
}

.logo-area {
  display: flex;
  align-items: center;
}

.logo {
  height: 50px;
  margin-right: 10px;
}

nav a {
  color: gold;
  margin: 0 10px;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  position: relative;
  background: url('images/logo.png') center center no-repeat;
  background-size: 60%;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 40px;
  border-radius: 10px;
}

.overlay h2 {
  font-size: 2.5rem;
  color: gold;
}

.overlay button {
  background: goldenrod;
  border: none;
  padding: 10px 20px;
  margin-top: 15px;
  font-size: 1rem;
  cursor: pointer;
  color: #2b241c;
  font-weight: bold;
  border-radius: 5px;
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  padding: 30px;
}

.product {
  background: #3d3227;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  transition: transform 0.2s;
}

.product:hover {
  transform: scale(1.05);
}

.product img {
  width: 100%;
  border-radius: 10px;
}

footer {
  background: #3d3227;
  color: gold;
  padding: 10px;
  text-align: center;
  border-top: 2px solid goldenrod;
}
