/* =========================
   Banner (generic) 
   ========================= */
.banner {
  background-size: cover;
  background-position: center;
  height: 300px;
}

@media (max-width: 576px) {
  .banner {
    height: 200px;
  }
}

/* =========================
   Typography
   ========================= */

/* Body text – calm & readable */
body {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: #222;
}

/* Headings & branding – character */
h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
}

/* Utility classes */
.dm-serif-display-regular {
  font-family: "DM Serif Display", serif;
  font-style: normal;
}

.dm-serif-display-regular-italic {
  font-family: "DM Serif Display", serif;
  font-style: italic;
}

/* Balanced bold */
strong,
b {
  font-weight: 600;
}

/* Spacing */
p {
  margin-bottom: 1.2rem;
}

/* =========================
   Navbar
   ========================= */
.navbar {
  background-color: #fff;
}

.navbar-brand {
  font-size: 1.5rem;
}

.navbar-nav .nav-link {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
}

/* =========================
   Image Styling (products & general)
   ========================= */
.img-soft {
  border-radius: 6px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.img-soft:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.image-wrapper {
  overflow: hidden;
  border-radius: 6px;
}

/* =========================
   Product Image Row (Home page)
   ========================= */
.product-card {
  text-align: center;
}

.product-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* =========================
   Contact Icons
   ========================= */
.contact-icons a {
  color: #000;
  font-size: 1.6rem;
  text-decoration: none;
  margin-right: 1rem;
}

.contact-icons a:last-child {
  margin-right: 0;
}

.contact-icons a:hover {
  color: #555;
}

/* =========================
   Hero Banner (Home / How We Work)
   ========================= */
.hero-banner {
  position: relative;
  height: 400px;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  color: #fff;
  max-width: 700px;
  padding: 0 1rem;
  text-align: center;
}

.hero-content h1 {
  margin-bottom: 0.5rem;
  font-size: 2.5rem;
}

.hero-content p {
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .hero-banner {
    height: 300px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-banner {
    height: 220px;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }
}

/* =========================
   Process Steps
   ========================= */
.process-step {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.step-number {
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 44px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

/* =========================
   How We Work CTA Button
   ========================= */
.btn-dark {
  padding: 0.75rem 2rem;
  border-radius: 6px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-dark:hover {
  background-color: #333;
  transform: translateY(-2px);
}

/* =========================
   Footer
   ========================= */

/* Footer logo */
.footer-logo {
  max-width: 140px;
  height: auto;
}

footer {
  font-size: 0.9rem;
}

footer h6 {
  font-weight: 600;
}

footer a {
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* =========================
   Supplier Section
   ========================= */

.supplier-section {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.supplier-logo img {
  max-height: 40px;
  width: auto;
  opacity: 0.95;
  filter: brightness(1.1) contrast(0.9);
}

.supplier-logo img:hover {
  opacity: 1;
}
