/*
   hero.css
*/

.hero-hero {
  position: relative;
  background-image: url("../assets/images/landing-page-2.svg");
  background-size: cover;            
  background-position: center center;
  background-repeat: no-repeat;
  padding-top: 0;                    
  padding-bottom: 6rem;
}

.hero-container {
  width: 100%;
  margin: 0 auto;
}

.hero-hero-content {
  position: relative;
  z-index: 2;  
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14rem 6rem 6rem 6rem;   
}

.hero-hero-text {
  display: flex;
  flex-direction: column;
  max-width: 75%;
  gap: 0;
}

.hero-hero-title {
  font-family: var(--font-heading);
  font-size: 4rem;    
  color: var(--color-primary);
}

.hero-hero-subtitle {
  font-family: var(--font-heading);
  font-size: 2rem;  
  color: var(--color-text-dark);
}

.hero-hero-description {
  font-size: 1.5rem;  
  margin-bottom: 2rem;
  max-width: 80%;
}

.hero-hero-text .hero-btn-primary {
  margin-top: 1rem;
}


.hero-btn {
  display: inline-block;
  width: 200px;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  text-align: center;
  transition: background-color 0.3s ease;
}

.hero-btn-primary {
  background-color: var(--color-primary);
  color: #ffffff;
}

.hero-btn-primary:hover {
  background-color: #4aa310;
}

.scroll-down {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  background-color: var(--color-primary);
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  border: 3px solid #ffffff;
}

.hero-site-header {
  position: sticky;
  top: 0;                     
  width: 100%;
  background-color: transparent; 
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 99999; 
}

.hero-site-header.scrolled {
  background-color: #F9EBC6 !important;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 999;
}

.hero-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem; 
}

/* Logo */
.hero-logo {
  display: flex;
  flex-basis: 30%;
  gap: 20px;
  align-items: center;
}

.hero-logo img {
  height: 40px;
}

.hero-logo span {
  font-size: 30px;
  color: var(--color-text-dark);
}

.hero-main-nav {
  display: flex;
  position: relative;
  flex-basis: 30%;
  justify-content: flex-end;
}

.hero-main-nav ul {
  list-style: none;
  display: flex;
  gap: 10px;
}

.hero-list-menu {
  display: flex;
  flex-basis: 90%;
  justify-content: center;
  align-items: center;
}

.hero-list-menu li {
  display: flex;
  flex-basis: 20%;
}

.hero-main-nav ul li a {
  position: relative;
  display: inline-block;
  padding: 0.25rem 0.5rem;
  text-decoration: none;
  color: var(--color-text-dark);
  transition: color 0.2s ease;
}

.hero-main-nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: var(--color-text-dark);
  transition: width 0.3s ease-out;
}

.hero-main-nav ul li a:hover::after,
.hero-main-nav ul li a:focus::after {
  width: 100%;
}

.hero-main-nav ul li a:hover,
.hero-main-nav ul li a:focus {
  color: var(--color-text-dark);
}


.hero-main-nav ul li a.active-menu {
  background-color: var(--color-primary);
  color: #ffffff;
  border-radius: 4px 4px 0 0;
  padding: 0.5rem 1rem;
}

.hero-main-nav ul li a.active-menu::after {
  display: none;
}


.hero-main-nav ul li a[href^="tel:"]::before {
  content: "";
  font-size: 1.5rem;
  margin-right: 0.5rem;
  vertical-align: middle;
  color: var(--color-primary);
}


.hero-mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

/* Hamburger icon */
.hero-mobile-nav-toggle .hero-hamburger,
.hero-mobile-nav-toggle .hero-hamburger::before,
.hero-mobile-nav-toggle .hero-hamburger::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: #1E2E4A;
  transition: transform 0.3s, opacity 0.3s;
  border-radius: 1px;
}

.hero-mobile-nav-toggle .hero-hamburger::before {
  transform: translateY(-6px);
}

.hero-mobile-nav-toggle .hero-hamburger::after {
  transform: translateY(4px);
}

/* On “open”, animate into an “X” */
.hero-main-nav.open .hero-mobile-nav-toggle .hero-hamburger {
  background: transparent;
}

.hero-main-nav.open .hero-mobile-nav-toggle .hero-hamburger::before {
  transform: rotate(45deg) translate(5px, 5px);
}

.hero-main-nav.open .hero-mobile-nav-toggle .hero-hamburger::after {
  transform: rotate(-45deg) translate(5px, -5px);
}

.hero-phone-number{
  color: #000000;
  font-weight: 400;
}

.hero-btn-online {
  display: inline-block;
  padding: 0.75rem 1.5rem 0.75rem 1.5rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  text-align: center;
  transition: background-color 0.3s ease;
}

.hero-btn-accent {
  background-color: var(--color-accent);
  color: var(--color-text-dark);
}

.hero-btn-accent:hover {
  background-color: #e6b700;
}

.hero-order-btn {
  display: flex;
  flex-basis: 40%;
  justify-content: space-between;
  align-items: center;
}

.hero-order-btn a {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--color-text-dark);
  font-size: 1rem;
  display: flex;
  gap: 0.5rem;
}

.hero-maharani-text {
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
  color: #E56151;
  position: relative;
  display: inline-block;
}

.hero-maharani-text::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  color: #000000;
  z-index: -1;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
}

.hero-mobile-btn{
  display: none;
}

.call-us{
  font-weight: 600;
  color: #1E2E4A;
}

.mobile-call-us{
  display: none !important;
}

@media (max-width: 837px) {

  .hero-header-content, .hero-order-btn a, .hero-phone-number {
    font-size: 14px;
  }

  .hero-maharani-text{
    font-size: 24px;
  }

  .hero-icon-phone {
    display: flex;
    justify-content: center;
  }

  .call-us-icon {
    display: flex;
    flex-direction: row !important;
    width: auto !important;
    justify-content: space-between;
    margin-right: 0 !important;
    gap: 5px;
  }
}

@media (max-width: 735px) {
  .mobile-call-us {
    display: flex !important;
  }
  .hero-order-btn {
    display: none;
  }

  .hero-hero-content {
    z-index: 0;
  }

  .hero-hero-description {
    margin-bottom: 1rem;
}

  .hero-mobile-btn {
    display: flex;
    flex-basis: 15%;
    flex-direction: column;
    justify-content: space-around;
    width: 70%;
    text-align: center;
  }

  .hero-mobile-nav-toggle {
    display: block;
    position: fixed;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1000000;
  }

  .hero-mobile-nav-toggle .hero-hamburger,
  .hero-mobile-nav-toggle .hero-hamburger::before,
  .hero-mobile-nav-toggle .hero-hamburger::after {
    content: "";
    display: block;
    width: 24px;
    height: 2px;
    background: #1E2E4A;
    position: absolute;
    left: 3px;
    transition: transform 0.3s, opacity 0.3s;
  }

  .hero-mobile-nav-toggle .hero-hamburger {
    top: 14px;
  }

  .hero-mobile-nav-toggle .hero-hamburger::before {
    top: -6px;
  }

  .hero-mobile-nav-toggle .hero-hamburger::after {
    top: 8px;
  }

  .hero-main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: #F9EBC6;
    transition: right 0.3s ease-in-out;
    z-index: 999;
    padding: 80px 20px 20px;
    box-shadow: -2px 0 5px rgba(0,0,0,0.1);
  }

  .hero-main-nav.open {
    right: 0;
  }

  .hero-main-nav.open .hero-mobile-nav-toggle .hero-hamburger {
    background: transparent;
  }

  .hero-main-nav.open .hero-mobile-nav-toggle .hero-hamburger::before {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hero-main-nav.open .hero-mobile-nav-toggle .hero-hamburger::after {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero-main-nav .hero-list-menu {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    position: static;
    background: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .hero-main-nav.open .hero-list-menu {
    display: flex;
  }

  .hero-main-nav .hero-list-menu li {
    display: flex;
    flex-basis: 2%;
    width: 100%;
    border-bottom: 1px solid rgba(30, 46, 74, 0.1);
  }
  
  .hero-main-nav .hero-list-menu li:last-child {
    border-bottom: none;
  }

  .hero-main-nav .hero-list-menu a {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    width: 100%;
    color: #1E2E4A;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
  }

  .hero-ist-menu li {
    flex-basis: 3%;
  }

  .hero-icon-phone a {
    flex-basis: 100%;
  }
  
  .hero-main-nav .hero-list-menu a:hover {
    color: #E56151;
  }

  .hero-hero{
    background-color: var(--color-bg);
    background-image: none;
  }
  .hero-hero-content {
    display: flex;
    flex-basis: 80%;
    padding: 3rem 1rem 2rem 3rem;
  }

  body.menu-open {
    overflow: hidden;
  }
  
}
@media (max-width: 576px) {
  .hero-hero-description {
    font-size: 1rem;
  }

  .hero-hero-title {
    font-size: 3rem;
  }

  .hero-her-subtitle {
    font-size: 1.5rem;
  }
}


.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999999;
  justify-content: center;
  align-items: center;
}

.popup-container {
  background: #F9EBC6;
  padding: .5rem;
  border-radius: 10px;
  max-width: 750px;
  width: 90%;
  position: relative;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.popup-content {
  text-align: center;
}

.popup-close {
  position: absolute;
  top: -20px;
  right: -20px;
  height: 50px;
  width: 50px;
  background:#99A088;
  border: none;
  cursor: pointer;
  color: #1E2E4A;
  transition: color 0.3s ease;
  border-radius: 20px;
  font-size: 40px;
}

.popup-close:hover {
  color: #E56151;
}

.popup-title {
  color: #1E2E4A;
  font-size: 28px;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
  letter-spacing: 2px;
}

.popup-double {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.popup-all {
  display: flex;
  justify-content: space-around;
}

.popup-double a {
  margin: 0 0 10px 0 ;
}

.popup-single-first {
  display: flex;
  flex-direction: column;
  flex-basis: 48%;
  /* border-right: 1px solid rgba(30, 46, 74, 0.1); */
  /* padding: 0px 10px 10px 10px; */
}

.popup-single-second{
  display: flex;
  flex-direction: column;
  flex-basis: 48%;
  justify-content: space-between;
  align-items: center;
}

.popup-subtitle {
  color: #1E2E4A;
  font-size: 20px;
  margin: 1.5rem 0 1rem;
  font-family: var(--font-heading);
}

.popup-offer {
  display: flex;
  flex-basis: 100%;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.5);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.popup-text {
  color: #1E2E4A;
  margin-bottom: 1rem;
  font-size: 16px;
  line-height: 1.6;
}

.popup-note {
  color: #1E2E4A;
  font-size: 14px;
  font-style: italic;
  margin-top: 1rem;
}

.popup-highlight {
  color: #E56151;
  font-weight: 700;
  font-size: 18px;
}

.popup-bottle-info {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.5);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.popup-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem 0.75rem 1.5rem;
  border-radius: 50px;
  font-family: var(--font-body);
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
  max-width: 200px;
  background-color: var(--color-accent);
  color: white;
  font-size: 16px;
}

.popup-btn:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #e6b700;
}

.popup-pound {
  font-weight: 500;
}

@media (max-width: 576px) {
  .popup-container {
    padding: 2rem 1.5rem;
    max-width: 400px;
    max-height: 600px;
  }
  
  .popup-title {
    font-size: 20px;
  }

  .popup-double {
    display: flex;
    flex-direction: column;
  }

  .popup-single-first {
    border: none;
  }
  
  .popup-text {
    font-size: 12px;
  }
  
  .popup-highlight {
    font-size: 16px;
  }

  /* .popup-btn{
    display: none;
  } */
}

@media (max-width: 380px) {
  .popup-container {
    padding: 1rem .5rem;
    max-width: 300px;
    max-height: 300px;
  }
  
  .popup-title {
    font-size: 16px;
  }

  .popup-double {
    display: flex;
    flex-direction: column;
  }

  .popup-single-first {
    border: none;
    /* flex-basis: 40%; */
  }

  .popup-offer {
    padding: 0;
    margin: 0;
  }

  .popup-bottle-info {
    padding: 0;
    margin: 0;
  }
  .popup-subtitle {
    margin: 0;
    padding: 0;
    font-size: 16px;
  }

  .popup-note {
    font-size: 10px;
  }
  .popup-text {
    font-size: 9px;
  }
  
  .popup-highlight {
    font-size: 16px;
  }

  /* .popup-btn{
    display: none;
  } */
}