/* style.css - Basic styling for Hennything Custom */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #222;
}

header {
  background-color: #000;
  color: #fff;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo img {
  height: 40px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

main {
  padding: 2rem;
}

.hero {
  background: #eee;
  padding: 3rem;
  text-align: center;
}

.cta, .btn, button {
  background: #000;
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  margin-top: 1rem;
  display: inline-block;
}

.product-card {
  width: 200px;
  border: 1px solid #ccc;
  text-align: center;
  padding: 1rem;
  background: #fff;
  border-radius: 10px;
}


form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input, select, textarea {
  padding: 0.5rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  width: 100%;
}

footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}
nav ul li .active {
  font-weight: bold;
  color: yellow;
}

.product-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
}


.product-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  display: block;
}

@media (max-width: 600px) {
  .product-card {
    max-width: 150px;
  }

  .product-card img {
    max-height: 150px;
  }
}

