/* About Page - Figma-Inspired Premium Design */

/* Page Header */
.page-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 31, 30, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(196, 162, 79, 0.1);
  padding: 1.5rem 0;
  transition: all 0.3s ease;
}

.header-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.back-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  background: rgba(196, 162, 79, 0.1);
  border: 1px solid rgba(196, 162, 79, 0.2);
  transition: all 0.3s ease;
}

.back-button:hover {
  background: rgba(196, 162, 79, 0.15);
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(196, 162, 79, 0.2);
}

.back-button .icon {
  width: 1.25rem;
  height: 1.25rem;
}

.header-title h2 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  margin: 0;
}

.header-logo img {
  height: 3rem;
  width: auto;
  object-fit: contain;
}

/* Main Content */
.about-main {
  min-height: 100vh;
  background: linear-gradient(180deg, #0f1f1e 0%, #1a2e2d 50%, #0f1f1e 100%);
  position: relative;
  overflow: hidden;
}

/* Hero Section */
.about-hero {
  position: relative;
  padding: 5rem 2rem 4rem;
  text-align: center;
  overflow: hidden;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at top, rgba(196, 162, 79, 0.2) 0%, transparent 70%);
  animation: gradientPulse 6s ease-in-out infinite;
}

@keyframes gradientPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.hero-content-wrapper {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 1.5rem;
  background: rgba(26, 46, 45, 0.6);
  border: 1px solid rgba(196, 162, 79, 0.3);
  border-radius: 2rem;
  color: var(--foreground);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
  font-size: 5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  line-height: 1;
  letter-spacing: 0.05em;
  text-shadow: 0 0 60px rgba(196, 162, 79, 0.3);
}

.hero-date {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: rgba(26, 46, 45, 0.5);
  border: 1px solid rgba(196, 162, 79, 0.2);
  border-radius: 0.75rem;
  color: var(--foreground);
  font-size: 1.125rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.date-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

/* About Section */
.about-section {
  padding: 4rem 2rem;
  position: relative;
}

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

.section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  animation: fadeInRight 0.8s ease-out;
}

.section-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(196, 162, 79, 0.1);
  border: 1px solid rgba(196, 162, 79, 0.3);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.section-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--foreground);
  margin: 0;
}

.about-content {
  background: rgba(26, 46, 45, 0.4);
  border: 1px solid rgba(196, 162, 79, 0.2);
  border-radius: 1.25rem;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.about-text {
  font-size: 1.25rem;
  line-height: 2;
  color: rgba(240, 249, 248, 0.9);
  margin: 0;
}

/* Goals Section */
.goals-section {
  padding: 4rem 2rem;
  position: relative;
}

.goals-container {
  max-width: 1200px;
  margin: 0 auto;
}

.goals-icon {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.3);
}

.goals-icon svg {
  color: #10b981;
}

.goals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.goal-card {
  position: relative;
  background: rgba(26, 46, 45, 0.4);
  border: 1px solid rgba(196, 162, 79, 0.2);
  border-radius: 1.25rem;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: fadeInUp 0.6s ease-out backwards;
}

.goal-card:nth-child(1) { animation-delay: 0.1s; }
.goal-card:nth-child(2) { animation-delay: 0.2s; }
.goal-card:nth-child(3) { animation-delay: 0.3s; }
.goal-card:nth-child(4) { animation-delay: 0.4s; }

.goal-card:hover {
  transform: translateY(-8px);
  border-color: rgba(196, 162, 79, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 40px rgba(196, 162, 79, 0.15);
}

.goal-number {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(196, 162, 79, 0.1);
  line-height: 1;
}

.goal-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(196, 162, 79, 0.1);
  border: 1px solid rgba(196, 162, 79, 0.2);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.goal-card:hover .goal-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 20px rgba(196, 162, 79, 0.3);
}

.goal-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary);
}

.goal-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: rgba(240, 249, 248, 0.85);
  margin: 0;
}

/* Audience Section */
.audience-section {
  padding: 4rem 2rem;
  position: relative;
}

.audience-container {
  max-width: 900px;
  margin: 0 auto;
}

.audience-icon {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.3);
}

.audience-icon svg {
  color: #8b5cf6;
}

.audience-list {
  display: grid;
  gap: 1.25rem;
}

.audience-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.75rem;
  background: rgba(26, 46, 45, 0.4);
  border: 1px solid rgba(196, 162, 79, 0.2);
  border-radius: 1rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  animation: fadeInRight 0.6s ease-out backwards;
}

.audience-item:nth-child(1) { animation-delay: 0.1s; }
.audience-item:nth-child(2) { animation-delay: 0.2s; }
.audience-item:nth-child(3) { animation-delay: 0.3s; }
.audience-item:nth-child(4) { animation-delay: 0.4s; }

.audience-item:hover {
  transform: translateX(-8px);
  border-color: rgba(196, 162, 79, 0.4);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.audience-bullet {
  width: 0.75rem;
  height: 0.75rem;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.5rem;
  box-shadow: 0 0 12px rgba(196, 162, 79, 0.5);
}

.audience-item p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(240, 249, 248, 0.9);
  margin: 0;
}

/* Pillars Section */
.pillars-section {
  padding: 4rem 2rem 6rem;
  position: relative;
}

.pillars-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.pillar-card {
  position: relative;
  background: rgba(26, 46, 45, 0.4);
  border: 1px solid rgba(196, 162, 79, 0.2);
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out backwards;
}

.pillar-card:nth-child(1) { animation-delay: 0.1s; }
.pillar-card:nth-child(2) { animation-delay: 0.2s; }
.pillar-card:nth-child(3) { animation-delay: 0.3s; }

.pillar-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(196, 162, 79, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.pillar-card:hover .pillar-glow {
  opacity: 1;
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.pillar-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(196, 162, 79, 0.5);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 80px rgba(196, 162, 79, 0.2);
}

.pillar-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.5rem;
  background: rgba(196, 162, 79, 0.1);
  border: 2px solid rgba(196, 162, 79, 0.3);
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
  z-index: 10;
}

.pillar-card:hover .pillar-icon {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 12px 30px rgba(196, 162, 79, 0.4);
}

.pillar-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--primary);
}

.coordination-icon {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
}

.coordination-icon svg {
  color: #3b82f6;
}

.networking-icon {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.3);
}

.networking-icon svg {
  color: #10b981;
}

.development-icon {
  background: rgba(251, 146, 60, 0.1);
  border-color: rgba(251, 146, 60, 0.3);
}

.development-icon svg {
  color: #fb923c;
}

.pillar-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--foreground);
  margin: 0 0 1rem 0;
  position: relative;
  z-index: 10;
}

.pillar-description {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: rgba(240, 249, 248, 0.75);
  margin: 0;
  position: relative;
  z-index: 10;
}

/* CTA Section */
.cta-section {
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(196, 162, 79, 0.15) 0%, transparent 70%);
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
  padding: 4rem 3rem;
  background: rgba(26, 46, 45, 0.4);
  border: 1px solid rgba(196, 162, 79, 0.3);
  border-radius: 1.5rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cta-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 2rem;
  background: rgba(196, 162, 79, 0.1);
  border: 1px solid rgba(196, 162, 79, 0.3);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-icon svg {
  width: 2.25rem;
  height: 2.25rem;
  color: var(--primary);
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.125rem;
  color: rgba(240, 249, 248, 0.75);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.125rem 2.75rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--primary-foreground);
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(196, 162, 79, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 20px 50px rgba(196, 162, 79, 0.5);
}

.button-icon {
  width: 1.5rem;
  height: 1.5rem;
  transition: transform 0.3s ease;
}

.cta-button:hover .button-icon {
  transform: translateX(-4px);
}

/* Footer */
.page-footer {
  background: rgba(15, 31, 30, 0.9);
  border-top: 1px solid rgba(196, 162, 79, 0.1);
  padding: 2rem;
  text-align: center;
}

.footer-content p {
  color: rgba(240, 249, 248, 0.5);
  font-size: 0.875rem;
  margin: 0;
}

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-header {
    padding: 1rem 0;
  }

  .header-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    padding: 0 1rem;
  }

  .back-button {
    font-size: 0.875rem;
    padding: 0.625rem 1rem;
    flex-shrink: 0;
  }

  .back-button .icon {
    width: 1rem;
    height: 1rem;
  }

  .header-title {
    display: none; /* Hide title on mobile for cleaner look */
  }

  .header-logo {
    flex-shrink: 0;
  }

  .header-logo img {
    height: 2.5rem;
    max-width: 120px;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .about-content {
    padding: 2rem;
  }

  .about-text {
    font-size: 1.0625rem;
  }

  .goals-grid {
    grid-template-columns: 1fr;
  }

  .pillars-container {
    grid-template-columns: 1fr;
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-content {
    padding: 3rem 2rem;
  }
}

@media (max-width: 480px) {
  .page-header {
    padding: 0.75rem 0;
  }

  .header-content {
    padding: 0 0.75rem;
    gap: 0.5rem;
  }

  .back-button {
    font-size: 0.8125rem;
    padding: 0.5rem 0.875rem;
  }

  .back-button span {
    display: none; /* Hide text on very small screens, show only icon */
  }

  .header-logo img {
    height: 2rem;
    max-width: 100px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .pillar-title {
    font-size: 1.5rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
