body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #d3d3d3;
  background-image: url('BackgroundPic.jpg');
  background-size: cover;
  background-repeat: repeat;
  color: #333;
}

header {
  text-align: center;
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
}

.logo {
  max-width: 150px;
  margin-bottom: 1rem;
}

.tagline {
  font-style: italic;
  font-size: 1.2rem;
}

.intro, .contact, .products {
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.9);
  margin: 1rem;
  border-radius: 8px;
}

.products h2, .contact h2 {
  text-align: center;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.item {
  background-color: white;
  border: 1px solid #ccc;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
}

.item img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

input, textarea {
  padding: 0.5rem;
  border: 1px solid #aaa;
  border-radius: 4px;
}

button {
  padding: 0.7rem;
  background-color: #444;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background-color: #222;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
}
