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

@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* Scoped Styles to prevent conflicts */
.burger-menu-container {
  font-family: Arial, sans-serif;
  background: url("../mahaloha/franchise/burger-menu-background.webp") no-repeat
    center center;
  background-size: cover;
  color: white;
  padding: 130px;
}

.burger-menu-container h1 {
  color: #fa8539;
  font-size: 60px;
  font-family: "Zing Rust Demo Base" !important;
  font-weight: 400;
  line-height: 40px;
  word-wrap: break-word;
}

.burger-tabs {
  display: flex;
  margin-bottom: 50px;
  padding-top: 45px;
}

.burger-tab-button {
  background-color: transparent;
  border: none;
  color: white;
  font-size: 18px;
  margin-right: 20px;
  cursor: pointer;
  padding-bottom: 10px;
}

.burger-tab-button.active {
  border-bottom: 2px solid #ff6600;
}

.burger-tab-content {
  display: none;
  /* background-color: #444;
  padding: 20px;
  border-radius: 10px; */
}

.burger-tab-content.active {
  display: block;
}

.burger-section {
  display: flex;
  margin-top: 20px;
  gap: 40px;
}

.burger-section div {
  background-color: #555;
  padding: 24px;
  width: 40%;
  border-radius: 10px;
}

.burger-section h3 {
  color: #ff6600;
  font-family: "Zing Rust Demo Base" !important;
  color: #fa8539;
  font-size: 32px;
  font-weight: 400;
  line-height: 21.6px;
  word-wrap: break-word;
}

.burger-section .card-desc {
  width: 100%;
  padding: 0;
}

.burger-section .card-desc .card-desc-heading {
  color: white;
  font-size: 16px;
  font-family: "Zing Rust Demo Base" !important;
  font-weight: 400;
  line-height: 14px;
  word-wrap: break-word;
}

.burger-section .card-desc .card-desc-content {
  color: white;
  font-size: 12px;
  font-family: "Poppins", sans-serif !important;
  font-weight: 400;
  line-height: 14px;
  word-wrap: break-word;
}

/* For tablets and small laptops (max-width: 1024px) */
@media (max-width: 1024px) {
  .burger-section {
    gap: 20px; /* Reduce gap between sections */
  }
}

@media (max-width: 1200px) {
  .burger-menu-container {
    padding: 5% 10%; /* Adjust padding for smaller screens */
  }

  .burger-section {
    flex-direction: column; /* Stack sections vertically on smaller screens */
  }

  .burger-section div {
    width: 100%; /* Make each section take full width */
  }
}

/* For mobile devices (max-width: 768px) */
@media (max-width: 768px) {
  .burger-section h3 {
    font-size: 24px; /* Smaller heading font size */
    line-height: normal; /* Reset line height */
  }

  .burger-section .card-desc .card-desc-heading {
    font-size: 14px; /* Smaller heading font size in card descriptions */
  }

  .burger-section .card-desc .card-desc-content {
    font-size: 12px; /* Keep content font size smaller for readability */
    line-height: normal; /* Reset line height */
  }
}

/* For very small devices (max-width: 480px) */
@media (max-width: 480px) {
  h1 {
    font-size: 36px; /* Adjust main heading size for small screens */
    text-align: center; /* Center align heading */
  }

  .burger-tabs {
    margin-bottom: 30px; /* Reduce bottom margin for tabs */
    padding-top: 20px; /* Reduce top padding for tabs */
  }

  .burger-tab-button {
    font-size: 16px; /* Adjust tab button font size for readability */
    padding-bottom: 5px; /* Reduce padding for buttons */
  }

  .burger-menu-container h1 {
    line-height: 60px;
  }
}
