/* ============================================================
   PalPal About Page — Premium Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

body.about-page {
  font-family: 'Outfit', system-ui, sans-serif;
  background: linear-gradient(135deg, #fdf6fb 0%, #f3e8f0 50%, #fdf6fb 100%);
  background-size: 200% 200%;
  animation: bgShift 18s ease infinite;
  min-height: 100vh;
  color: #1a0813;
  overflow-x: hidden;
}

@keyframes bgShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Floating orb */
.about-orb {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(84, 19, 66, 0.07), transparent 70%);
  filter: blur(60px);
  top: -150px;
  left: -150px;
  pointer-events: none;
  animation: orbDrift 16s ease-in-out infinite;
  z-index: 0;
}

@keyframes orbDrift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(60px, 40px) scale(1.1);
  }
}

/* Container spacing override */
body.about-page .container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

/* Header */
.about-header {
  text-align: center;
  margin-bottom: 3rem;
}

.about-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #541342;
  opacity: 0.75;
  margin-bottom: 0.9rem;
}

.about-title {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  color: #541342;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.about-subtitle {
  font-size: 1.1rem;
  color: rgba(84, 19, 66, 0.65);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Content card - glassmorphic */
.content-card {
  background: rgba(255, 255, 255, 0.75);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(84, 19, 66, 0.08);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.content-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(84, 19, 66, 0.12);
}

/* Shimmer border top */
.content-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #541342, #c06ea0, #541342);
  background-size: 200% 100%;
  animation: shimmer 3s ease infinite;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.content-text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #1a0813;
  margin-bottom: 1.75rem;
}

.content-text:last-of-type {
  margin-bottom: 0;
}

.about-features {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
}

.about-feature-title {
  font-weight: 700;
  color: #541342;
  margin-bottom: 0.25rem;
}

.about-feature-desc {
  font-size: 0.95rem;
  color: rgba(84, 19, 66, 0.75);
  line-height: 1.6;
}

/* Footer override */
body.about-page .footer {
  margin-top: 4rem;
  text-align: center;
}

body.about-page .footer p {
  color: rgba(84, 19, 66, 0.6);
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 640px) {
  body.about-page .container {
    padding: 3rem 1.5rem;
  }
  .content-card {
    padding: 2rem 1.5rem;
  }
}
