/* About / Story page specific styles */
.about-content {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(35, 35, 42, 0.85) 0%, rgba(22, 22, 28, 0.92) 100%);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 4px 10px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .about-content {
    animation: none;
  }
}

.page-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.page-header h1 {
  font-size: 2.8rem;
  margin-bottom: 0.7rem;
  background: linear-gradient(135deg, #ffb347, #ffcc33);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.15);
  letter-spacing: 0.02em;
}

.subtitle {
  background: linear-gradient(90deg, #e6e6e6, #aaa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.6;
  font-size: 1.05rem;
}

.about-section {
  margin-bottom: 2.2rem;
}

.about-section h2 {
  margin-bottom: 1rem;
  color: #ffb347;
  font-size: 1.5rem;
  border-bottom: 1px solid rgba(255, 179, 71, 0.3);
  padding-bottom: 0.6rem;
}

.about-section p {
  line-height: 1.7;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.85);
}

.about-section p:last-child {
  margin-bottom: 0;
}

.about-section a {
  color: #ffb347;
  text-decoration: none;
}

.about-section a:hover {
  text-decoration: underline;
  color: #ffcc33;
}

.about-quote {
  margin: 2.2rem 0;
  padding: 0.2rem 0 0.2rem 1.5rem;
  border-left: 2px solid rgba(255, 179, 71, 0.5);
}

.about-quote p {
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 0.5rem;
}

.about-quote cite {
  font-style: normal;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.about-cta {
  text-align: center;
  margin: 2.5rem 0 1rem;
}

.about-cta .cta-button {
  margin-top: 0;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 179, 71, 0.8);
  color: #000;
  border: none;
  font-size: 1.1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: rgba(255, 179, 71, 1);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.back-to-top:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .about-content {
    padding: 1.5rem;
    margin: 1.5rem 1rem;
  }

  .page-header h1 {
    font-size: 2.2rem;
  }

  .about-quote {
    padding-left: 1rem;
  }

  .about-quote p {
    font-size: 1.05rem;
  }

  .back-to-top {
    width: 40px;
    height: 40px;
    bottom: 1.5rem;
    right: 1.5rem;
  }
}
