/* =============================================
   SUBPAGE STYLES
   Specific styles for subpages go here
   ============================================= */

/* =============================================
   SUBPAGE HERO
   ============================================= */
.subpage-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 400px;
  margin-top:60px;
}

@media (min-width: 768px) {
  /*.subpage-hero {
    
  }*/
}

@media (min-width: 1024px) {
  .subpage-hero {
    min-height: 500px;
    margin-top:86px;
  }
}

.subpage-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.subpage-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.subpage-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 2;
}

.subpage-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 2rem 1.5rem;
}

.subpage-hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .subpage-hero-content h1 {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .subpage-hero-content h1 {
    font-size: 4rem;
  }
}

.subpage-hero-content p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .subpage-hero-content p {
    font-size: 1.25rem;
  }
}

/* =============================================
   SUBPAGE BODY
   ============================================= */
.subpage-body {
  padding: 4rem 0;
  background-color: #ffffff;
}

@media (min-width: 768px) {
  .subpage-body {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .subpage-body {
    padding: 6rem 0;
  }
}

.subpage-body h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .subpage-body h2 {
    font-size: 2.5rem;
  }
}

.subpage-body h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.subpage-body p {
  font-size: 1.125rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.subpage-body ul,
.subpage-body ol {
  font-size: 1.125rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.subpage-body li {
  margin-bottom: 0.5rem;
}

.subpage-body a {
  color: var(--secondary);
}

.subpage-body a:hover {
  color: var(--primary);
}

.subpage-body a.btn-primary{
  color: white;
}

.subpage-body a.btn-primary:hover{
  background-color: var(--secondary);
}

/* Article Date in Hero */
.subpage-hero-content .article-date {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

/* Add any additional subpage-specific styles below */
