/* ============================================
   PAGE HERO STYLES - Shared across all pages
   ============================================ */

/* Page Hero Section */
.page-hero {
  height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 230, 0, 0.094) 0%, rgba(0, 0, 0, 0.226) 100%);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.page-hero h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--secondary-color);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease-out;
}

.page-hero p {
  font-size: 18px;
  opacity: 0.95;
  color: var(--secondary-color);
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .page-hero {
    height: 300px;
  }

  .page-hero h1 {
    font-size: 36px;
    margin-bottom: 10px;
  }

  .page-hero p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .page-hero {
    height: 250px;
  }

  .page-hero h1 {
    font-size: 28px;
    margin-bottom: 8px;
  }

  .page-hero p {
    font-size: 14px;
  }

  .page-hero-content {
    padding: 0 15px;
  }
}

