/* ========================================================================
   4. BANNER & HERO SECTION
   ======================================================================== */

   
 
#banner {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
 /* background-image: url(/images/banners/hero_bg.png); */
  background-image: none;
  background-color: #040923;
  padding: 14px 0; 
}
 
 
section.banner .banner-content,
section.banner .container {
  position: relative !important;
  z-index: 2 !important;
}

.banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0px;
  max-width: 100%;
  width: 100%;
}
/*
.banner-content {
  width: 95vw;
  max-width: none;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
*/
.hero-graphic {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 60%;
  height: 100%;
  z-index: 1;
  opacity: 0.85;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 30%);
  mask-image: linear-gradient(to right, transparent 0%, black 30%);
}

 
/* ISSUE-REV-002: Missing base padding - padding only defined in media queries, reference ISSUE-REV-004 */
/*.hero-text-area {
  position: relative;
  z-index: 3;
  flex: 1;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
  */
  /*
  .hero-text-area {
  flex: 1 1 45%; 
  max-width: 45%;
  min-width: 300px;  
  padding: 1rem;  
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
/* } * */

.hero-text-area {
  flex: 1 1 50%;
  max-width: 50%;
  min-width: 0; /* Prevents flex item from overflowing */
}


.hero-text {
  width: 100%;
  max-width: 600px;
  text-align: center;
}

 
/* ISSUE-REV-003: Missing base padding - padding only defined in media queries, reference ISSUE-REV-002 */
/*.hero-image-area {
  position: relative;
  z-index: 3;
  flex: 1;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
  */
  /*
  .hero-image-area {
  flex: 1 1 45%;  
  max-width: 45%;
  min-width: 300px;  
  padding: 1rem;  
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
  */

.hero-image-area {
  flex: 1 1 50%;
  max-width: 50%;
  min-width: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-sizing: border-box;
}


.banner-headline {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin: 0 0 0.75rem 0;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.banner-eyebrow {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #FFA500; /* Orange color for better visibility */
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 0.5rem 0;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.banner-subheadline {
  font-size: 1.25rem;
  color: white;
  margin: 0 0 1rem 0;
  line-height: 1.6;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.banner-cta {
  margin-top: 1rem;
  text-align: center;
}

.banner-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

.banner-buttons .banner-button {
  flex: 1;
  min-width: 180px;
  max-width: 250px;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
}

.banner-pills {
  display: flex; 
  gap: 10px; 
  flex-wrap: wrap; 
  margin-top: 18px;
  justify-content: center;
}

.banner-pill {
  display: inline-flex; 
  align-items: center; 
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.banner-dot {
  width: 8px; 
  height: 8px; 
  border-radius: 999px; 
  background: linear-gradient(135deg, #0073e6, #005bb5);
}

.banner-button {
  display: inline-block;
  background: linear-gradient(135deg, #0073e6, #005bb5);
  color: white;
  padding: 16px 32px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 115, 230, 0.3);
}

.banner-button:hover {
  background: linear-gradient(135deg, #005bb5, #004494);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 115, 230, 0.4);
  color: white;
}

.banner-microcopy-wrapper {
  margin: 1rem 0 0 0;
}

.banner-microcopy {
  margin: 0 !important;
  padding: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  text-align: center;
  width: 100%;
  line-height: 1.5;
}

.banner-microcopy + .banner-microcopy {
  margin-top: 0.2rem !important; /* Very tight spacing between microcopy lines */
}


.banner-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.banner-image img {
  max-width: 100%;
  max-height: 400px;
  width: auto;
  height: auto;
  display: block;
}




 
/* ISSUE-REV-005: Missing body padding reset - need to add 'body { padding-top: 0px !important; }' for consistency */
/* Hide hero image area on screens smaller than iPad Pro */
@media (max-width: 1024px) {
 
  .hero-image-area {
    display: none;
  }
  
  .hero-text-area {
  /*  max-width: 100%;
    flex: 1;*/
    flex: 1 1 auto; 
    max-width: 100%;
    min-width: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .hero-text {
    max-width: 800px; /* Allow text to expand a bit more */
  }
  
  .banner-content {
    justify-content: center;
    flex-direction: column;
    gap: 1.5rem;
  }

  .banner-headline {
    font-size: 2.5rem; /* Reduce from current size */
    line-height: 1.2;
  }
  
  .banner-subheadline {
    font-size: 1.1rem; /* Slightly smaller */
    line-height: 1.4;
  }
  
  .banner-button {
    padding: 0.8rem 1.5rem; /* Smaller button */
    font-size: 0.9rem;
  }

   .banner-content {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .hero-text-area,
  .hero-image-area {
    flex: 1 1 auto;
    max-width: 100%;
    min-width: auto;
  }
}
 

/* ISSUE-REV-006: Missing min-height adjustments - banner height may be insufficient for content on mobile */
@media (max-width: 768px) {
  .banner-headline {
    font-size: 2rem; /* Even smaller on mobile */
  }
  
  .banner-subheadline {
    font-size: 1rem;
  }
  
  .banner-button {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
  }
}
 

 
/* Large screens - add padding to slide content inward */
@media (min-width: 1400px) {
  .hero-text-area {
    padding-left: 5%; /* Add left padding to push text right */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .hero-image-area {
    padding-right: 5%; /* Add right padding to push image left */
  }

}

/* Extra large screens - increase padding */
@media (min-width: 1600px) {
  .hero-text-area {
    padding-left: 8%; /* More left padding */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .hero-image-area {
    padding-right: 8%; /* More right padding */
  }
}

 
 
/* Ultra wide screens - constrain image size */
@media (min-width: 1920px) {
  .hero-text-area {
    padding-left: 12%; /* Maximum left padding */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .hero-image-area {
    padding-right: 12%; /* Maximum right padding */
  }
  
  .banner-image {
    max-width: 600px; /* Limit image container width */
  }
  
  .banner-image img {
    max-width: 100%;
    max-height: 400px; /* Limit image height */
    width: auto;
    height: auto;
    object-fit: contain; /* Maintain aspect ratio */
  }
}

/* For extremely wide screens like 2880px */
@media (min-width: 2560px) {
  .banner-image {
    max-width: 500px; /* Even smaller on ultra-wide */
  }
  
  .banner-image img {
   
  }

    .banner-content {
    gap: 4rem; /* Larger gap on big screens */
  }
  
  .banner {
    padding: 3rem; /* More banner edge padding */
  }

/*  Override main.scss  */

}

  @media screen and (max-width: 1680px) {
  #banner {
           height: 600px !important;
    }
}

/*  Override main.scss  */

 @media screen and (max-width: 1280px) {
      #banner{
        height: 600px !important;
    }
}

