/* aboutPage.css */
/* Fonts & Theme */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;700&family=Space+Grotesk:wght@400;600&display=swap');

:root {
  --bg-dark: #f8f9fa;
  --bg-card: #ffffff;
  --border-color: #2a2a2a;
  --text-dark: #000000;
  --accent-yellow: #ffc400;
  --shadow-color: rgba(0, 0, 0, 0.5);
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-dark);
  line-height: 1.8;
  font-size: 16px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* === NAVIGATION === */
.nav-banner {
  background: linear-gradient(135deg, var(--accent-yellow), #ffb000);
  padding: 1rem 0;
  text-align: center;
}

.nav-banner-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.nav-banner-btn {
  background: #000;
  color: var(--accent-yellow);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 0.7rem 1.5rem;
  border: 2px solid #000;
  border-radius: 8px;
  cursor: pointer;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.nav-banner-btn:hover {
  background: var(--accent-yellow);
  color: #000;
  border-color: var(--accent-yellow);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.nav-banner-btn.active {
  background: #000;
  color: var(--accent-yellow);
  border-color: #000;
}

/* === LOGO HEADER === */
.logo-header {
  text-align: center;
  padding: 2rem 0 1rem 0;
}

.site-logo {
  max-width: 180px;
  height: auto;
  transition: transform 0.3s ease;
  border: 3px solid var(--accent-yellow);
  border-radius: 50%;
  box-shadow: none;
}

.site-logo:hover {
  transform: scale(1.05);
}

/* === PAGE HEADER === */
.header {
  text-align: center;
  padding: 5rem 2.5rem;
  border: 3px solid var(--accent-yellow);
  border-radius: 12px;
  margin: 3rem auto 2rem auto;
  max-width: 1200px;
  background-color: var(--bg-card);
  box-shadow: 0 6px 20px var(--shadow-color);
  position: relative !important;
  top: auto !important;
  z-index: auto !important;
  animation: scaleIn 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.header h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: var(--accent-yellow);
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}

.header p {
  font-size: 1.4rem;
  color: var(--text-dark);
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
}

/* === MISSION SECTION === */
.mission-section {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 2rem;
}

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

.mission-card {
  background: var(--bg-card);
  border: 3px solid var(--accent-yellow);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  animation: fadeInUp 0.6s ease-out both;
}

.mission-card:nth-child(1) { animation-delay: 0.4s; }
.mission-card:nth-child(2) { animation-delay: 0.6s; }
.mission-card:nth-child(3) { animation-delay: 0.8s; }

.mission-card::before {
  display: none !important;
}

.mission-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(255, 196, 0, 0.3);
  border-color: #ffe066;
}

.mission-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.mission-card h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--accent-yellow);
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.mission-card p {
  font-size: 1.1rem;
  color: var(--text-dark);
  line-height: 1.6;
}

/* === FOOTER === */
footer {
  background: #000;
  text-align: center;
  padding: 1.5rem 0;
  color: white;
  border-top: 3px solid var(--accent-yellow);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  width: 100%;
  margin: 0;
  margin-top: auto;
}

footer p {
  color: white;
  margin: 0.25rem 0;
}

footer p.footer-credit {
  font-size: 11px;
  opacity: 0.4;
  margin-top: 0.5rem;
  letter-spacing: 0.02em;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .nav-banner-buttons {
    gap: 1rem;
  }

  .nav-banner-btn {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
  }

  .header h1 {
    font-size: 2.2rem;
  }

  .header p {
    font-size: 1rem;
  }

  .mission-content {
    grid-template-columns: 1fr;
  }

  .mission-card h2 {
    font-size: 1.8rem;
  }

  .mission-icon {
    font-size: 2.8rem;
  }
}
/* === FOOTER MOBILE === */
@media (max-width: 768px) {
  footer {
    padding: 1rem 0.75rem;
    font-size: 0.8rem;
  }
  footer p {
    margin: 0.15rem 0;
    line-height: 1.4;
  }
  footer p:last-child {
    font-size: 12px;
  }
}
