/* =========================
   Merchant Page Hero
========================= */

.merchant-hero {
  position: relative;
  width: 100%;
  min-height: 70vh;
  display: flex;
  align-items: center;

  background-image: url("../images/restaurantStock.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Soft overlay for readability */
.merchant-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.45),
      rgba(0, 0, 0, 0.25)
    );
}


/* Content */
.merchant-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  text-align: left;
  color: #fff;
}

.merchant-hero-title {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.merchant-hero-text {
  font-size: 1.1rem;
  max-width: 520px;
  color: #fff;
  
}

/* =========================
   Mobile Polish
========================= */
@media (max-width: 768px) {
  .merchant-hero {
    min-height: 55vh;
  }

  .merchant-hero-title {
    font-size: 1.9rem;
  }

  .merchant-hero-text {
    font-size: 1rem;
  }
}

.logoM {
  width: 150px;
  height: auto;
  margin-right: auto;
}
