/* About Page Styles - Xardiant */

/* Hero Section */
.about-hero {
  padding: calc(var(--space-sm) * 2 + 80px) 0 var(--space-3xl) 0;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 50%, var(--bg-secondary) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: var(--space-lg);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--text);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Our Story Section */
.our-story {
  padding: var(--space-3xl) 0;
  background: var(--bg);
}

.story-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.story-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--space-xl);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.story-text p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.story-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  min-height: 300px;
  border: 1px solid var(--border);
}

.mascot-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: var(--space-xl);
}

.mascot-image {
  width: clamp(150px, 25vw, 200px);
  height: clamp(150px, 25vw, 200px);
  object-fit: contain;
  border-radius: var(--radius-lg);
  background: white;
  padding: var(--space-md);
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
  margin: 0 auto var(--space-lg) auto;
}

.mascot-image:hover {
  transform: scale(1.05) rotate(2deg);
}

.heart-animation {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
  justify-content: center;
}

.floating-heart {
  font-size: 3rem;
  animation: float 3s ease-in-out infinite;
  opacity: 0.9;
}

.visual-caption {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  text-align: center;
  margin-top: var(--space-md);
}

@keyframes float {
  0%, 100% { 
    transform: translateY(0px) scale(1);
  }
  50% { 
    transform: translateY(-15px) scale(1.1);
  }
}

/* Impact Section */
.impact-section {
  padding: var(--space-3xl) 0;
  background: var(--bg-secondary);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--space-lg);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.impact-messages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  max-width: 1200px;
  margin: 0 auto;
}

.message-card {
  background: var(--bg);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.message-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.message-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.message-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-lg);
  line-height: 1;
}

.message-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.7;
  font-style: italic;
}

/* Values Section */
.values-section {
  padding: var(--space-3xl) 0;
  background: var(--bg);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  max-width: 1200px;
  margin: 0 auto;
}

.value-card {
  background: var(--bg-secondary);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  text-align: center;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: var(--space-lg);
  line-height: 1;
  transition: all var(--transition);
}

.value-card:hover .value-icon {
  transform: scale(1.2);
  filter: brightness(1.2);
}

.value-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-md);
}

.value-card p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .about-hero {
    padding: calc(var(--space-sm) * 2 + 60px) 0 var(--space-2xl) 0;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .story-content {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .story-text h2 {
    font-size: 2rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .impact-messages {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .message-card {
    padding: var(--space-xl);
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .heart-animation {
    gap: var(--space-md);
  }
  
  .floating-heart {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .hero-container {
    padding: 0 var(--space-md);
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .story-text h2 {
    font-size: 1.8rem;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .message-card {
    padding: var(--space-lg);
  }
  
  .value-card {
    padding: var(--space-xl);
  }
  
  .mascot-image {
    width: clamp(100px, 35vw, 150px);
    height: clamp(100px, 35vw, 150px);
  }
  
  .visual-caption {
    font-size: 1rem;
  }
}
