/* ===== PAGE HERO (Internal Pages) ===== */
.page-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), url(/images/main___slider.jpg);
  background-size: cover;
  color: white;
  position: relative;
  overflow: hidden;
  height: 55vh;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  margin: 0 13rem;
}

.page-hero-logo img {
  width: 100px;
  height: auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
  filter: brightness(0) invert(1);
  object-fit: cover;
}

.page-hero-text {
  margin-top: 5rem;
}

.page-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: var(--space-sm);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  line-height: 1.2;
  text-align: center;
  color: var(--color-secondary-light);
}

.page-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  line-height: 1.5;
  text-align: center;
  color: var(--color-accent-light);
}

/* Mobile */
@media (max-width: 768px) {
  .page-hero {
    height: 45vh;
  }
  
  .page-hero-content {
    margin: 0 1.5rem;
  }

  .page-hero-text {
    margin-top: 2.2rem;
  }
  
  .page-title {
    font-size: 2rem;
  }
  
  .page-subtitle {
    font-size: 0.9rem;

  }
  
  .page-hero-logo img{
    width: 90px;
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .page-hero-content {
    margin: 0 2rem;
  }

  .page-hero-text {
    margin-top: 6rem;
  }
  
  .page-title {
    font-size: 3rem;
  }

  .page-subtitle {
    font-size: 1.2rem;
  }
}