/* Shared Hero Section Styles - Applied to all pages except index.html */

/* Hero Section */
section.about-us-hero {
  position: relative;
  background: linear-gradient(135deg, rgba(26, 58, 92, 0.95) 0%, rgba(0, 27, 77, 0.95) 100%);
  padding: 120px 0 80px;
  text-align: center;
  color: #fff;
}

.au-hero-text h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.au-hero-text p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

/* Breadcrumb styling (shared with product pages) */
.breadcrumb-custom {
  margin-top: 50px;
}

.breadcrumb-custom .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  justify-content: center;
}

.breadcrumb-custom .breadcrumb-item {
  color: #fff !important;
}

.breadcrumb-custom .breadcrumb-item a {
  color: #fff !important;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.breadcrumb-custom .breadcrumb-item a:hover {
  opacity: 0.8;
  color: #fff !important;
}

.breadcrumb-custom .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.9) !important;
}

.breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.7) !important;
  content: "/";
  padding: 0 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  section.about-us-hero {
    padding: 80px 0 60px;
    margin-top: 0 !important;
    padding-top: 80px !important;
  }
  
  /* Ensure no gap between header and hero section */
  .header-area + section.about-us-hero,
  header + section.about-us-hero,
  #shared-header + section.about-us-hero,
  div#shared-header + section.about-us-hero {
    margin-top: 0 !important;
    padding-top: 80px !important;
  }
  
  .au-hero-text {
    padding: 0 15px;
  }
  
  .au-hero-text h1 {
    font-size: 36px;
    margin-bottom: 15px;
  }
  
  .au-hero-text p {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .breadcrumb-custom {
    margin-top: 30px;
    margin-bottom: 0;
  }
  
  .breadcrumb-custom .breadcrumb-item,
  .breadcrumb-custom .breadcrumb-item a {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  section.about-us-hero {
    padding: 60px 0 40px;
    margin-top: 0 !important;
    padding-top: 60px !important;
  }
  
  /* Ensure no gap between header and hero section on small screens */
  .header-area + section.about-us-hero,
  header + section.about-us-hero,
  #shared-header + section.about-us-hero,
  div#shared-header + section.about-us-hero {
    margin-top: 0 !important;
    padding-top: 60px !important;
  }
  
  .au-hero-text {
    padding: 0 12px;
  }
  
  .au-hero-text h1 {
    font-size: 28px;
    margin-bottom: 12px;
  }
  
  .au-hero-text p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .breadcrumb-custom {
    margin-top: 25px;
    margin-bottom: 0;
  }
  
  .breadcrumb-custom .breadcrumb-item,
  .breadcrumb-custom .breadcrumb-item a {
    font-size: 14px;
  }
}

