/* the text on home page for join as merchant, or customer or delivery driver has been changed in the ApiController.php at public function actiongetjoin()/*
/* I couldn't find the text in the languages section in admin so change the text directly in the code. */
/* Remove app store images at bottom of front page */
.app-store-wrap img {
  max-width: 8em;
  display: none;
}
@media (min-width: 992px) {
    #main-search-banner {
        height: 600px;
        background-size
     }
}
/* the join section (become a partner, customer or delivery person)  in front page make it a bit higher for pictures */
/* max-height is originally 170px */
.join-sections img {
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    max-height: 190px;
}
/* Make the text black for the join us banner pic at bottom of page.  the file is called new-restaurant.png */
.w-100 {
color: black;
width: 100% !important;
}
/* This is for the words Join Wegugo on the front page */  
.warm-pink {
font-weight: bold;
  background: linear-gradient(to right, #00AEEF, #00C8C8, #84C225, #FFBE00, #F7931E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* Make all the green buttons that colour */
.btn-green{
background: #67c23a;
color: #fff;
}
/* Text on the join us ultra wide banner bottom of merchant registration page */
.mb-4, my-4 {
margin-bottom: 1.5rem !important;
color: black
} 

/*sub footer css */

.sub-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.sub-footer-nav h6 {
  font-size: 16px;
  font-weight: 700;
  color: #00bfa6; /* aqua-blue accent from logo */
  margin-bottom: 15px;
  text-transform: uppercase;
}

.sub-footer-nav a {
  color: #444;
  font-size: 14px;
  line-height: 1.8;
  display: block;
  transition: color 0.3s ease, transform 0.3s ease;
}

.sub-footer-nav a:hover {
  color: #3ecf8e; /* brand green from logo */
  transform: translateX(6px);
}

.sub-footer .social-icons {
  margin-top: 30px;
}

.sub-footer .social-icons a {
  font-size: 20px;
  margin-right: 18px;
  color: #00bfa6;
  transition: transform 0.3s ease, color 0.3s ease;
}

.sub-footer .social-icons a:hover {
  transform: scale(1.2);
  color: #3ecf8e;
}

.sub-footer .newsletter {
  margin-top: 30px;
}

.sub-footer .newsletter input[type="email"] {
  padding: 12px 20px;
  border: none;
  border-radius: 30px;
  width: 250px;
  max-width: 100%;
  font-size: 14px;
  background: #fff;
  box-shadow: 0 0 0 2px #3ecf8e20;
  outline: none;
  transition: box-shadow 0.3s ease;
}

.sub-footer .newsletter input[type="email"]:focus {
  box-shadow: 0 0 0 3px #00bfa650;
}

.sub-footer .newsletter button {
  background: linear-gradient(90deg, #00bfa6, #3ecf8e);
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 14px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.sub-footer .newsletter button:hover {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .sub-footer-nav {
    flex-direction: column;
    gap: 25px;
  }

  .sub-footer .newsletter input[type="email"],
  .sub-footer .newsletter button {
    width: 100%;
    margin: 5px 0;
  }
}

/* Footer css */
.footer {
  background: linear-gradient(135deg, #ffffff, #f0fdfb);
  color: #222;
  padding: 60px 30px 20px 30px;
  font-family: 'Poppins', sans-serif;
  border-top: 4px solid #00bfa6;
  font-size: 14px;
}

.footer .footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer .footer-section {
  flex: 1 1 200px;
  min-width: 180px;
}

.footer .footer-section h5 {
  font-size: 16px;
  font-weight: 700;
  color: #00bfa6;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.footer .footer-section a {
  display: block;
  color: #444;
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer .footer-section a:hover {
  color: #3ecf8e;
  transform: translateX(5px);
}

.footer .footer-bottom {
  border-top: 1px solid #e0e0e0;
  text-align: center;
  padding-top: 20px;
  margin-top: 40px;
  color: #777;
  font-size: 13px;
}

.footer .logo-text {
  font-size: 22px;
  font-weight: 800;
  color: #3ecf8e;
  margin-bottom: 20px;
}

.footer .app-links img {
  width: 120px;
  margin-right: 10px;
  margin-top: 10px;
}

.footer .social-icons {
  margin-top: 20px;
}

.footer .social-icons a {
  font-size: 18px;
  margin-right: 15px;
  color: #00bfa6;
  transition: transform 0.2s ease, color 0.2s ease;
}

.footer .social-icons a:hover {
  transform: scale(1.2);
  color: #3ecf8e;
}

@media (max-width: 768px) {
  .footer .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer .footer-section {
    margin-bottom: 30px;
  }

  .footer .social-icons a {
    margin: 0 10px;
  }
}

