* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #222;
  line-height: 1.6;
}

/* HERO */
.hero {
  height: 80vh;
  background: url("/img/famshop.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  padding: 60px;
  max-width: 700px;
  margin-left: 8%;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.hero p {
  margin-bottom: 16px;
}

/* BRANDS */
.brands {
  display: block;
  text-align: center;
  justify-content: center;
  gap: 60px;
  padding: 40px 20px;
  width: 70%;
  margin: 0 auto;
  background: #fff;
}

.brands img {
  max-height: 200px;
  opacity: 1;
}

/* FEATURE SECTIONS */
.feature {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  align-items: center;
  min-height: 600px;
}

.feature.reverse {
  grid-template-columns: 1.5fr 1fr;
}

.feature-text {
  padding: 100px;
}

.feature-text h2 {
  font-size: 22px;
  margin-bottom: 16px;
}

.feature-text p {
  margin-bottom: 24px;
  max-width: 420px;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* BUTTON */
.btn {
  display: inline-block;
  padding: 12px 32px;
  border: 1px solid #000;
  text-decoration: none;
  color: #000;
  font-size: 14px;
  letter-spacing: 1px;
}

.btn:hover {
  background: #000;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .feature,
  .feature.reverse {
    grid-template-columns: 1fr;
  }

  .feature-text {
    padding: 40px 20px;
  }

  .hero-overlay {
    margin: 0 20px;
    padding: 40px;
  }

  .brands {
    flex-wrap: wrap;
    gap: 30px;
  }
}
