/* About Section - Cool & Compact Design */

#about {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-alt) 100%);
  position: relative;
  overflow: hidden;
}

#about::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

#about::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.about-hero {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Badge */
.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--brand-500) 0%, var(--accent) 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
  animation: float 3s ease-in-out infinite;
}

.about-badge svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
}

/* Title */
.about-hero h2 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--brand-500) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.about-hero h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-500) 0%, var(--accent) 100%);
  border-radius: 2px;
}

/* Subtitle */
.about-subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Prophet Quote Section */
.prophet-quote-section {
  margin-bottom: 3rem;
}

.prophet-content {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(99, 102, 241, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(99, 102, 241, 0.1);
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .prophet-content {
  background: rgba(31, 41, 55, 0.9);
  border: 1px solid rgba(129, 140, 248, 0.2);
  box-shadow: 0 10px 40px rgba(129, 140, 248, 0.15);
}

.prophet-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-500) 0%, var(--accent) 100%);
}

.prophet-photo {
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  width: 180px;
  height: 180px;
  margin: 0 auto;
  border: 4px solid var(--brand-500);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.prophet-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.prophet-photo:hover img {
  transform: scale(1.05);
}

.prophet-quote {
  text-align: left;
}

.prophet-quote blockquote {
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 1rem 0;
  font-style: italic;
  position: relative;
  padding-left: 1.5rem;
}

.prophet-quote blockquote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -0.5rem;
  font-size: 3rem;
  color: var(--brand-500);
  font-family: Georgia, serif;
  line-height: 1;
}

.prophet-quote cite {
  font-size: 1rem;
  color: var(--brand-500);
  font-weight: 600;
  font-style: normal;
  display: block;
  text-align: right;
}

/* CTA Buttons */
.about-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.about-cta .btn {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about-cta .btn-primary {
  background: linear-gradient(135deg, var(--brand-500) 0%, var(--brand-600) 100%);
  color: white;
  border: none;
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.about-cta .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
}

.about-cta .btn-secondary {
  background: transparent;
  color: var(--brand-500);
  border: 2px solid var(--brand-500);
}

.about-cta .btn-secondary:hover {
  background: var(--brand-500);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  #about {
    padding: 3rem 0;
  }
  
  .about-hero h2 {
    font-size: 2.2rem;
    margin-bottom: 1.25rem;
  }
  
  .about-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
  }
  
  .prophet-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
    padding: 1.5rem;
  }
  
  .prophet-photo {
    width: 150px;
    height: 150px;
  }
  
  .prophet-quote {
    text-align: center;
  }
  
  .prophet-quote blockquote {
    font-size: 1.1rem;
    padding-left: 0;
  }
  
  .prophet-quote blockquote::before {
    display: none;
  }
  
  .prophet-quote cite {
    text-align: center;
  }
  
  .about-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .about-cta .btn {
    width: 100%;
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  .about-hero h2 {
    font-size: 1.8rem;
  }
  
  .about-subtitle {
    font-size: 1rem;
  }
  
  .about-badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }
  
  .prophet-photo {
    width: 120px;
    height: 120px;
  }
  
  .prophet-quote blockquote {
    font-size: 1rem;
  }
  
  .prophet-quote cite {
    font-size: 0.9rem;
  }
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-badge {
  animation: fadeInUp 0.8s ease-out, float 3s ease-in-out infinite 1s;
}

.about-hero h2 {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.about-subtitle {
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.prophet-quote-section {
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.about-cta {
  animation: fadeInUp 0.8s ease-out 1.2s both;
}