/* styles.css for weweimport.com */

body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: #fff;
  color: #333;
}

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

header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

header p {
  font-size: 1.25rem;
}

.btn {
  background: #000;
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  margin-top: 1.5rem;
  display: inline-block;
}

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

.category {
  text-align: center;
}

.category img {
  max-width: 100%;
  border-radius: 0.5rem;
}

.sale-banner {
  background: #f8d7da;
  color: #721c24;
  text-align: center;
  padding: 1.5rem;
  font-size: 1.2rem;
  margin: 2rem 0;
}

.about {
  padding: 2rem;
  background: #f0f0f0;
  text-align: center;
}

.footer {
  background: #222;
  color: white;
  padding: 2rem;
  text-align: center;
  font-size: 0.9rem;
}

.footer a {
  color: #f5f5f5;
  margin: 0 0.5rem;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}