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

body {
  font-family: 'Segoe UI', sans-serif;
  background: #fff;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  background: url('https://images.unsplash.com/photo-1607082349566-187346f34394?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

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

header h1 {
  font-size: 3em;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

header p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.btn {
  background: #b89c84;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #a1866e;
}

/* Section Styles */
.section {
  padding: 60px 20px;
  text-align: center;
}

.section h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.section p {
  max-width: 700px;
  margin: 0 auto 30px;
}

/* Product Section */
.products {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.product {
  background: #f9f9f9;
  border-radius: 10px;
  width: 250px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.product:hover {
  transform: translateY(-5px);
}

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

.product h3 {
  margin-bottom: 8px;
  font-size: 1.2em;
}

/* CTA Section */
.cta {
  background: #f2eee9;
}

/* Footer */
footer {
  background: #222;
  color: #ccc;
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
}

/* Responsive */
@media (max-width: 768px) {
  header h1 {
    font-size: 2.2em;
  }

  .products {
    flex-direction: column;
    align-items: center;
  }
}
