@import url(https://db.onlinewebfonts.com/c/fd131d436dd85453848ae4a84bb466ad?family=Zing+Rust+Demo+Base);

/* Our Story Section */
.our-story {
  background-color: #fff;
  color: #333;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.our-story h2 {
  font-size: 28px;
  margin-bottom: 10px;
  text-align: center;
}

.our-story p {
  font-size: 16px;
  line-height: 1.6;
}

/* Why Us Section */
.why-us {
  background-image: url("../mahaloha/franchise/burger-menu-background.webp"); /* Specify your image URL */
  background-size: cover; /* Ensures the image covers the entire section */
  background-position: center; /* Centers the image */
  background-repeat: no-repeat; /* Prevents the image from repeating */
  padding: 90px 20px;
  color: white;
  position: relative; /* To ensure pseudo-elements are positioned correctly */
}
.why-us h2 {
  font-size: 24px;
  margin-bottom: 20px;
  position: relative; /* To keep the text above the overlay */
  z-index: 2; /* Ensure it's above the overlay */
  text-align: center;
}

.cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative; /* To ensure cards are above the overlay */
  z-index: 2; /* Ensure cards are above the overlay */
}

.card {
  background-color: white;
  color: #ff6a00;
  border-radius: 10px;
  padding: 20px;
  margin: 10px;
  width: 500px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}

.card img {
  width: 200px;
  border-radius: 10px;
}

.card p {
  margin-top: 10px;
  font-weight: bold;
  font-size: 18px;
}

.card .passion,
.card .inspired {
  color: #fa8539;
  font-size: 51.2px;
  font-family: "Zing Rust Demo Base" !important;
  font-weight: 400;
  line-height: 48px;
  word-wrap: break-word;
}

@media (max-width: 1200px) {
}

@media (max-width: 768px) {
  .cards-container {
    flex-direction: column;
  }

  .card {
    width: 100%;
    margin: 10px 0;
    flex-wrap: wrap;
  }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
  .card .passion,
  .card .inspired {
    color: #fa8539;
    font-size: 28px;
    font-family: "Zing Rust Demo Base" !important;
    font-weight: 400;
    line-height: 48px;
    word-wrap: break-word;
  }
}
