* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #F9F7F5;
  color: #1C1C1C;
}

/* HERO */
.hero {
  height: 90vh;
  background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 60px;
}

.hero-content {
  max-width: 600px;
  background: rgba(255,255,255,0.9);
  padding: 40px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: #3E2723;
}

.hero p {
  margin: 15px 0;
  font-size: 16px;
}

.buttons {
  margin-top: 20px;
}

.btn {
  text-decoration: none;
  padding: 12px 24px;
  margin-right: 10px;
  border-radius: 4px;
  font-weight: 500;
}

.whatsapp {
  background: #25D366;
  color: white;
}

.secondary {
  background: #8D6E63;
  color: white;
}

/* FEATURES */
.features {
  display: flex;
  justify-content: space-around;
  padding: 60px 20px;
  background: white;
}

.box {
  width: 30%;
  padding: 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* COLLECTION */
.collection {
  padding: 60px 20px;
  text-align: center;
}

.collection h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 30px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}

.item {
  background: #8D6E63;
  color: white;
  padding: 60px 20px;
  font-size: 20px;
}

/* BULK */
.bulk {
  background: #3E2723;
  color: white;
  padding: 60px 20px;
  text-align: center;
}

/* FOOTER */
footer {
  background: #1C1C1C;
  color: #aaa;
  text-align: center;
  padding: 15px;
}

/* MOBILE */
@media(max-width: 768px){
  .features {
    flex-direction: column;
  }
  .box {
    width: 100%;
    margin-bottom: 20px;
  }
  .grid {
    grid-template-columns: repeat(2,1fr);
  }
}
