/* TownGov Global Page Header Styles */

.page-header {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-header-bg:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--thm-header-gradient, linear-gradient(135deg, var(--thm-primary-rgba, rgba(45,205,124,0.95)) 0%, var(--thm-black-rgba, rgba(30,41,59,0.9)) 100%));
}

.page-header-bg:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, #f8f9fa 0%, rgba(248,249,250,0) 100%);
}

.page-header-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-header-content h1 {
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.1);
  animation: fadeInUp 0.8s ease;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  color: rgba(255,255,255,0.9);
  font-size: 15px;
  font-weight: 500;
}

.breadcrumb li a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
}

.breadcrumb li a:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.breadcrumb li:not(:first-child):before {
  content: '/';
  margin-right: 12px;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991px) {
  .page-header {
    padding: 100px 0 60px;
  }
  .page-header-content h1 {
    font-size: 42px;
  }
}

@media (max-width: 767px) {
  .page-header {
    padding: 80px 0 40px;
  }
  .page-header-content h1 {
    font-size: 32px;
  }
  .breadcrumb {
    font-size: 14px;
  }
}
