body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background-color: #fdfdfd;
  color: #333;
}

header {
  background-color: #111;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo {
  height: 50px;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 1rem;
}

nav a.active, nav a:hover {
  color: #ffd700;
}

.hero {
  background: url('images/banner.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 5rem 2rem;
}

.collections {
  text-align: center;
  padding: 2rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
}

.card img {
  width: 100%;
  border-radius: 6px;
}

.card p {
  margin-top: 8px;
  font-weight: 500;
}

footer {
  text-align: center;
  background: #222;
  color: #aaa;
  padding: 1rem;
  position: fixed;
  bottom: 0;
  width: 100%;
}

.about, .contact {
  padding: 2rem;
  max-width: 800px;
  margin: auto;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

input, textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  background-color: #111;
  color: #fff;
  border: none;
  padding: 0.75rem;
  cursor: pointer;
}

button:hover {
  background-color: #333;
}
