/**
 * Simple Page Header Block Styles
 * Clean page header with breadcrumb, title, and description
 */

.simple-page-header {
  background: var(--dark);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 48px 40px 44px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.simple-page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  opacity: .15;
  z-index: 0;
}

.simple-page-header::after {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,120,32,.2) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.simple-page-header-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.simple-page-header .breadcrumb {
  font-size: 12px;
  color: var(--cream);
  opacity: .7;
  margin-bottom: 16px;
}

.simple-page-header .breadcrumb a {
  color: var(--orange);
  transition: opacity .2s;
}

.simple-page-header .breadcrumb a:hover {
  text-decoration: underline;
  opacity: .85;
}

.simple-page-header h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 42px;
  font-weight: 500;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 14px;
  line-height: 1.2;
}

.simple-page-header h1 span {
  color: var(--orange);
}

.simple-page-header p {
  font-size: 17px;
  color: var(--cream);
  opacity: .9;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 600px) {
  .simple-page-header {
    padding: 36px 20px 32px;
  }
  
  .simple-page-header h1 {
    font-size: 28px;
  }
  
  .simple-page-header p {
    font-size: 15px;
  }
}
