body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f4f1e9; /* Soft cream */
  color: #3a3a3a; /* Dark gray text for readability */
  line-height: 1.6;
}

header {
  background-color: #bfa43a; /* Gold accent */
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
}

header h1 {
  margin: 0;
  font-size: 2.5rem;
  color: #313030; /* Dark gray */
  font-weight: bold;
}
.logo {
  width: 200px;
  height: auto;
}


nav a {
  margin-left: 25px;
  text-decoration: none;
  color: #3a3a3a;
  font-weight: 600;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #bfa43a; /* Gold hover */
}

.hero {
  background-color: #273746; /* Dark blue-gray */
  color: #f4f1e9; /* Light cream text */
  text-align: center;
  padding: 100px 20px 80px;
}

.hero h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 35px;
}

.btn {
  background-color: #bfa43a; /* Gold */
  color: #273746; /* Dark text on gold */
  padding: 14px 30px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgb(191 164 58 / 0.4);
  transition: background-color 0.3s ease, color 0.3s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: #a78b2e; /* Darker gold */
  color: #f4f1e9;
  box-shadow: 0 6px 15px rgb(167 139 46 / 0.7);
}

.products {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.products h2 {
  font-size: 2.4rem;
  margin-bottom: 40px;
  color: #3a3a3a;
}

.product-list {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.product {
  background-color: #fff8f0; /* Soft off-white */
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 8px 15px rgb(0 0 0 / 0.1);
  max-width: 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgb(0 0 0 / 0.15);
}

.product img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
}

.product h3 {
  margin: 0 0 10px;
  font-size: 1.4rem;
  color: #bfa43a;
}

.product p {
  font-size: 1.2rem;
  font-weight: 600;
  color: #555;
}

footer {
  background-color: #2c2c2c; /* Dark charcoal */
  color: #f5f5f5; /* Off white */
  text-align: center;
  padding: 25px 20px;
  font-size: 0.9rem;
}

/* Contact form */
.contact {
  max-width: 600px;
  margin: 60px auto 80px;
  padding: 20px;
  background-color: #fff8f0;
  border-radius: 12px;
  box-shadow: 0 8px 15px rgba(0,0,0,0.1);
  text-align: left;
}

.contact h2 {
  text-align: center;
  color: #bfa43a;
  margin-bottom: 30px;
  font-size: 2rem;
}

.contact label {
  font-weight: 600;
  color: #3a3a3a;
}

.contact input,
.contact textarea {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  resize: vertical;
}

.contact button.btn {
  background-color: #bfa43a;
  color: #273746;
  border: none;
  padding: 12px 25px;
  font-weight: 700;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: block;
  margin: 20px auto 0;
}

.contact button.btn:hover {
  background-color: #a78b2e;
}
