html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: 'Segoe UI', sans-serif;
}

.poster-bg {
  background-image: url('../gpt/brite.png.png');
  background-size: cover;
  background-position: center;
  height: 100vh;
  position: relative;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 45px;  /* ✅ Increase left/right padding */
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: #ecf1f1;
  box-sizing: border-box;
}
/* Left side: menu + logo */
.header-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

/* Menu Icon */
.menu-icon {
  font-size: 25px;
  cursor: pointer;
  color: #3b7f00;
}

/* Logo */
.logo {
  font-size: 22px;
  font-weight: bold;
  color: #3b7f00;
}

/* Right-side Buttons */
.header-buttons {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.header-buttons button {
  padding: 8px 14px;
  font-size: 14px;
  background-color: #3b7f00;
  color: White;
  border: none;
  border-radius: 25px;
  cursor: pointer;
}

.header-buttons button.signup-btn {
  background-color: #000; /* Optional: Make signup button black */
}


.signup-btn {
  background: White;
  color: #000;
  border: 1px solid White;
}

.order-btn {
  background: #3b7f00;
  color: #000;
}

/* Promo Text */
.promo-text {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 30px;
  font-weight: 680;
  color: #000;
  max-width: 90%;
  line-height: 1.2;
  padding: 0 20px;
  word-break: break-word;
  white-space: normal;
}

/* Popup overlay */
.search-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Popup content */
.search-popup-box {
  background: #ffffff;
  border-radius: 3px;
  padding: 26px;
  max-width: 550px;
  width: 90%;
  box-shadow: 0 2px 15px rgba(0,0,0,0.2);
}



.custom-input-group {
  display: flex;
  align-items: center;
  background-color: #f8f8f8;
  border-radius: 50px;
  padding: 3px 3px;
  border: 2px solid #eee;
  margin-top: 10px;
}

.arrow-icon {
  margin-right: 10px;
}

.arrow-icon {
  margin-left: 15px;
}

.postcode-input {
  flex-grow: 1;
  border: none;
  outline: none;
  font-size: 15px;
  background: transparent;
  color: #333;
}

.search-btn {
  background-color: #3b7f00;
  color: white;
  border: none;
  padding: 18px 36px;
  font-size: 15px;
  font-weight: 600px;
  border-radius: 50px;
  cursor: pointer;
}

.login-cta {
  margin-top: 10px;
  font-size: 14px;
  color: #666;
}

.login-link {
  color: #3b7f00;
  text-decoration: none;
}



/* Side Popup */
.side-popup {
  position: fixed;
  left: -300px;
  top: 0;
  bottom: 0;
  width: 260px;
  background: #fff;
  z-index: 1001;
  padding: 20px;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  transition: left 0.3s ease-in-out;
}

.side-popup.show {
  left: 0;
}

/* ===== Side Menu Buttons ===== */
#sideSignupBtn,
#sideLoginBtn {
  cursor: pointer;
}


.side-popup button {
  width: 100%;
  padding: 12px;
  margin-bottom: 10px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 16px;
}

.big-black-btn {
  background: #000;
  color: #fff;
}

.light-login-btn {
  background: #efefef;
  color: #3b7f00;
  border: 1px solid #3b7f00;
}

.menu-links {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

.menu-links a {
  text-decoration: none;
  color: #333;
}

.bottom-icons {
  text-align: center;
  margin-top: 10px;
}

.app-icons img {
  width: 100px;
  margin: 10px;
}

.app-tagline {
  font-family: 'Arial', sans-serif;
  font-size: 18px;
  color: #333;
}

.text-logo {
  font-weight: bold;
  font-size: 35px;
  color: #3b7f00;
  display: block;
  margin-bottom: 150px;
}

.app-icons img {
  width: 100px;
  margin: 5px;
}
@media (max-width: 600px) {
  .search-popup-box {
    width: 90%;
    padding: 16px;
  }

  .custom-input-group {
    flex-direction: row;
    flex-wrap: nowrap;
    padding: 6px 10px;
    width: 100%;
    box-sizing: border-box;
  }

  .postcode-input {
    font-size: 14px;
    width: 100%;
    min-width: 0;
  }

  .search-btn {
    padding: 12px 20px;
    font-size: 14px;
    margin-left: 8px;
    white-space: nowrap;
  }





/* 🔧 Mobile View Adjustments */
@media (max-width: 600px) {
  body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }

  .header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    width: 100%;
  }

  .header-left {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .menu-icon {
    font-size: 22px;
    color: #3b7f00;
  }

  .logo {
    font-size: 22px;
    font-weight: bold;
    color: #3b7f00;
  }

  .header-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .signup-btn {
    font-size: 13px;
    padding: 6px 12px;
    background-color: #3b7f00;
    color: #fff;
    border: none;
    border-radius: 6px;
  }

  .order-btn {
    font-size: 13px;
    padding: 6px 12px;
    background-color: #3b7f00;
    color: #fff;
    border: none;
    border-radius: 6px;
  }

  .poster-bg {
    height: 95vh;
    background-size: cover;
    background-position: center;
    width: 100%;
    margin-top: 0;
  }

.promo-text p {
  font-size: 35px;
  line-height: 1.2;
  font-weight: 600;
  text-align: center;
  width: 88vw;
  max-width: 500px;
  white-space: normal;
  overflow-wrap: break-word;
  margin: 15px auto 0 auto;
  padding: 0 10px;
  display: block;
  box-sizing: border-box;
}


  .postcode-search-box {
    padding: 15px;
    font-size: 14px;
  }

  .postcode-search-box .input-group input,
  .postcode-search-box .input-group button {
    font-size: 14px;
    padding: 10px;
  }
} 



.bottom-icons {
  text-align: center;
  margin-top: 80px;
}

.brand-logo {
  width: 80px;
  height: auto;
  margin-bottom: 20px;
}

.app-tagline {
  font-size: 14px;
  color: #333;
  margin: 5px 0 15px;
}

.app-icons a img {
  width: 90px;
  height: auto;
  margin: 0 8px;
  transition: transform 0.2s ease;
}

.app-icons a img:hover {
  transform: scale(1.05);
}
}