/* Parallax Narrative Section Styling */
.parallax-section {
  position: relative;
  height: 60vh;
  width: 100%;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.parallax-content {
  max-width: 800px;
  padding: 0 30px;
}

.parallax-title {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 300;
}

.parallax-text {
  font-size: 1.05rem;
  margin-bottom: 30px;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
}

.parallax-btn {
  display: inline-block;
  background-color: #fff;
  color: var(--text-color);
  font-family: var(--font-cta);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 15px 35px;
  transition: var(--transition-fast);
  text-decoration: none;
}

.parallax-btn:hover {
  background-color: var(--btn-bg);
  color: #fff;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .parallax-section {
    height: auto;
    padding: 80px 0;
    background-attachment: scroll; /* Parallax fixed doesn't work well on mobile */
  }

  .parallax-title {
    font-size: 2rem;
  }

  .parallax-text {
    font-size: 0.95rem;
  }
}
