
/*
Theme Name: Brasero Divi Child
Template: Divi
Version: 1.0
*/

/* Global */
body {
  background: #111;
  color: #fff;
}

/* Hero */
.brasero-hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 40px 20px;
}

.brasero-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.brasero-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 28px;
  background: #e67e22;
  color: #fff;
  text-decoration: none;
}

/* Products */
.brasero-products {
  padding: 60px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.brasero-card {
  background: #1c1c1c;
  padding: 20px;
  text-align: center;
}

.brasero-card img {
  max-width: 100%;
  height: auto;
}

/* Mobile */
@media (max-width: 768px) {
  .brasero-hero {
    min-height: 70vh;
  }
}
