.hero {
  background: url('../images/high-angle-arrangement-with-nuts-cinnamon-sticks.webp') no-repeat center center;
  background-size: cover;
  padding: 80px 20px;
  position: relative;
  color: #fff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* dark overlay */

  z-index: 1;
}

/* Hero content box */
.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 2;
  text-align: left;
  padding: 0 20px;
}

/* Bold, white heading */
.hero h1 {
  font-size: 46px;
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.2;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Bold, white description */
.hero p {
  font-size: 18px;
  font-weight: 500;
  max-width: 600px;
  line-height: 1.7;
  opacity: 0.95;
  margin-bottom: 15px;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}

/* Breadcrumb styling */
.breadcrumb {
  display: inline-block;
  margin-top: 25px;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  padding: 6px 14px;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.breadcrumb a {
  color: #f76c1d;
  font-weight: 600;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .hero {
    padding: 60px 16px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 50px 14px;
  }

  .hero h1 {
    font-size: 32px;
    text-align: center;
  }

  .hero p {
    font-size: 15px;
    text-align: center;
  }

  .hero-content {
    text-align: center;
  }

  .breadcrumb {
    margin: 20px auto 0;
  }
}
