:root {
  --bg: #0b0b0b;
  --panel: #101010;
  --muted: #b8b8b8;
  --text: #f3f3f3;
  --accent: #ff8c00;
  --accent-2: #41c95b;
  --accent-3: #ffd27f;
  --border: rgba(255, 255, 255, 0.08);
  --menu-gradient: linear-gradient(135deg, #ff8c00, #ff4500);
}

body {
  color: var(--text);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  margin: 0;
}

a {
  color: var(--accent);
  text-decoration: none;
}

/* fonts */
.logo {
  font-family: "Kaushan Script";
  font-size: 3.5rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 2.2rem;
}

.nav-links a {
  font-family: Bebas Neue;
  font-size: 2rem;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  transition: color.2s ease, text-shadow .2s ease;
}

.nav-links a:hover {
  color: var(--accent);
  text-shadow: 0 0 8px var(--accent);
}

.social-nav {
  display: flex;
  justify-content: center;
  gap: .8rem;
}

.social-nav a {
  font-size: 2rem;
  color: var(--text);
  margin-left: .5rem;
}

.social-nav a:hover {
  color: var(--accent);
  transform: scale(1.2);
}

/* navbar wrapper */
.navbar {
  background: rgba(10, 10, 10, .96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
  transition: all .25s ease;
}

.navbar-wrap {
  position: flex;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, .95);
  padding-block: .35rem;
}

.navbar .nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: .75rem 1rem;
  gap: 1.5rem;
}

/* bottom links bar */
.navbar-links {
  background: #111;
}

.navbar-links .nav-inner {
  flex-wrap: wrap;
}

/* mobile menu */
.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  background: rgba(12, 12, 12, .96);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: 6rem 1rem 2rem;
  z-index: 2000;
}

.mobile-drawer a {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  display: flex;
  color: var(--text);
  text-decoration: none;
  align-items: center;
  gap: 0.5rem;
}

.mobile-drawer .socials {
  display: flex;
  gap: .75rem;
  margin-top: 2rem;
}

.mobile-drawer .socials a {
  font-size: 1.5rem;
  color: var(--text);
}

.mobile-drawer .socials a:hover {
  color: var(--accent);
  text-shadow: 0 0 8px var(--accent);
}

.mobile-drawer.open {
  display: flex;
}

.drawer-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: 0;
  color: var(--text);
  font-size: 1.75rem;
  cursor: pointer;
}

/* responsive */
@media (max-width: 768px) {
  .nav-links, .social-nav {
    display: none;
  }
  .menu-toggle {
    display: block;
    margin-left: auto;
  }
}

/* hero */
.about-hero {
  position: relative;
  min-height: 60vh;
  background: var(--menu-gradient);
  animation: 600% 600%;
  animation: gradientShift 12s ease infinite;
  display: flex;
  justify-content: center;
  place-items: center;
  text-align: center;
  padding: 2rem 1rem;
  color: #fff;
}

.about-hero h1 {
  font-family: "Bebas Neue";
  font-size: clamp(2rem, 4vw, 3rem);
  text-shadow: 0 2px 6px rgba(0, 0, 0, .7);
  color: var(--accent-3);
}

.about-hero p {
  color: #f3f3f3;
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 700px;
  margin: 1rem auto 0;
  line-height: 1.6;
  font-family: "Montserrat";
  text-shadow: 0 1px 4px rgba(0, 0, 0, .7);
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .4);
  z-index: 1;
}

.about-hero-inner {
  position: relative;
  z-index: 2;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  
  50% {
    background-position: 100% 50%;
  }
  
  100% {
    background-position: 0% 50%;
  }
}

/* story */
.story {
  max-width: 1100px;
  margin: 2rem auto;
  padding: 1rem;
}

.story-inner {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .35);
}

.story-text h2 {
  font-family: "Bebas Neue";
  margin-bottom: .5rem;
  font-size: 1.8rem;
  color: var(--accent-3);
}

.story-text p {
  font-family: "Source Sans 3";
  font-size: 1.5rem;
  color: var(--text);
  line-height: 1.6;
}

.story-img img {
  border-radius: 1rem;
  width: 100%;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .35);
}

/* timeline */
.timeline {
  padding: 1rem;
  max-width: 1000px;
  margin: 2rem auto;
}

.timeline h2 {
  font-family: "Bebas Neue";
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--accent-3);
}

.timeline p {
  font-family: "Source Sans 3";
  font-size: 1.5rem;
}

.timeline-items {
  border-left: 2px solid var(--accent);
  padding-left: 1.5rem;
  position: relative;
}

.timeline-item {
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 0;
  transform: translateY(.5rem);
  width: 14px;
  height: 14px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--accent);
}

.timeline-item .year {
  font-weight: bold;
  font-size: 1.4rem;
  font-family: "Oswald";
  color: var(--accent-2);
  margin-bottom: .25rem;
}

/* mission */
.mission {
  max-width: 1000px;
  margin: 2rem auto;
  text-align: center;
  padding: 1rem;
}

.mission-inner {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .35);
}

.mission h2 {
  font-family: "Bebas Neue";
  font-size: 1.8rem;
  margin-bottom: .5rem;
  color: var(--accent-3);
}

.mission p {
  color: var(--muted);
  font-size: 1.5rem;
  font-family: "Source Sans 3";
  line-height: 1.6;
}

/* footer */
.footer {
  background: linear-gradient(135deg, rgba(16, 16, 16, .95), rgba(10, 10, 10, .95));
  color: var(--muted);
  padding: 4rem 1rem 2rem;
  border-top: 1px solid var(--border);
  box-shaow: 0 -4px 15px rgba(0, 0, 0, .5);
  font-family: "Montserrat";
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.footer-col {
  flex: 1 1 250px;
}

.footer-col h4 {
  font-family: "Bebas Neue";
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.footer-col p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
}

.footer-col a {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: 1rem;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: .5rem;
  transition: color .2s ease, text-shadow .2s ease, transform .2s ease;
}

.footer-col a i {
  font-size: 1.1rem;
  color: var(--accent-3);
  transition: transform .2s ease;
}

.footer-col a:hover {
  color: var(--accent-2);
  text-shadow: 0 0 6px var(--accent-2), 0 0 12px var(--accent-3);
}

.footer-col a:hover i {
  transform: scale(1.2);
}

.footer-copy {
  font-size: .85rem;
  color: var(--muted);
  text-align: center;
  margin-top: 3rem;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

/* responsive */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    grid-template-columns: 1fr;
  }
  
  .footer-col a {
    justify-content: center;
  }
  
  .footer-col h4 {
    font-size: 1.6rem;
  }
  
  .story-inner {
    grid-template-columns: 1fr;
  }
}
