/* about.css */

.about-page {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  position: relative;
}

/* Premium Animated Background Blobs */
.about-bg-blobs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.12; /* Extremely subtle and non-distracting */
  animation: drift 25s ease-in-out infinite alternate;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background-color: var(--accent-light); /* Mint/teal soft color */
  top: -10%;
  left: -10%;
  animation-duration: 28s;
}

.blob-2 {
  width: 600px;
  height: 600px;
  background-color: var(--accent-deep); /* Mid green soft color */
  bottom: -10%;
  right: -10%;
  animation-duration: 35s;
  animation-delay: -5s;
}

.blob-3 {
  width: 400px;
  height: 400px;
  background-color: var(--accent-light);
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-duration: 22s;
  animation-delay: -10s;
}

@keyframes drift {
  0% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.95);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}

.about-hero {
  padding: 100px 0 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
  opacity: 0.8;
}

.about-hero h1 {
  max-width: 800px;
  margin: 0 auto 12px;
}

.about-hero p {
  margin: 0 auto;
  max-width: 600px;
  font-size: clamp(12px, 1.2vw, 14px);
}

.about-section {
  padding: 32px 0;
  position: relative;
  z-index: 1;
}

.about-section-alt {
  background: rgba(243, 247, 244, 0.65); /* Translucent alternating sections */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.about-text-container {
  max-width: 800px;
  margin: 0 auto;
}

.about-text-container h2 {
  font-family: var(--font-heading);
  font-size: clamp(16px, 2vw, 24px);
  margin-bottom: 12px;
  color: var(--text-primary);
  font-weight: 700;
}

.about-text-container p {
  font-size: clamp(12px, 1.2vw, 14px);
  line-height: 1.5;
  color: var(--text-secondary);
  max-width: 100%;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.value-card {
  background: rgba(255, 255, 255, 0.8); /* Glassmorphic translucent cards */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 24px;
  transition: all var(--transition-fast);
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 16px 32px rgba(47, 107, 79, 0.08);
}

.value-icon {
  width: 36px;
  height: 36px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.value-card p {
  color: var(--text-secondary);
  line-height: 1.4;
}

.closing-section {
  padding: 60px 0;
  text-align: center;
}

.closing-section h2 {
  max-width: 700px;
  margin: 0 auto 20px;
  font-family: var(--font-heading);
  font-size: clamp(16px, 2vw, 24px);
  color: var(--text-primary);
  font-weight: 800;
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* Scoped Typography Reductions for About Page */
.about-hero h1 {
    font-size: clamp(18px, 2.2vw, 26px);
}

.value-card p {
    font-size: 12px;
}

.about-page .closing-section a.btn-primary {
    font-size: 15px !important;
}

/* Footer Typography specific to About Page */
.about-page .footer p {
    font-size: 0.75rem !important;
}

.about-page .footer-col h4 {
    font-size: 0.9rem !important;
}

.about-page .footer-links li a {
    font-size: 0.8rem !important;
}
