/* --------------------------------------------------
   GLOBAL RESET
-------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: #f8f9fb;
  color: #1a1a1a;
  line-height: 1.6;
}

/* --------------------------------------------------
   NAVIGATION
-------------------------------------------------- */
nav {
  width: 100%;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* --------------------------------------------------
   CONTACT FORM
-------------------------------------------------- */
.contact-form {
  max-width: 600px;
  margin: 40px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  font-size: 16px;
  background: #ffffff;
  transition: 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0055ff;
  box-shadow: 0 0 0 3px rgba(0, 85, 255, 0.15);
  outline: none;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form button.cta {
  width: fit-content;
  align-self: flex-start;
  padding: 12px 28px;
  font-size: 16px;
  cursor: pointer;
}

/* Optional: subtle form container styling */
.contact-form-container {
  background: #ffffff;
  padding: 32px;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  max-width: 700px;
  margin: 40px auto;
}

.logo {
  height: 48px;
}

.nav-links a {
  margin-left: 24px;
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 500;
  transition: 0.2s ease;
}

.nav-links a:hover,
.nav-links .active {
  color: #0055ff;
}

/* --------------------------------------------------
   CTA BUTTONS
-------------------------------------------------- */
.cta {
  display: inline-block;
  padding: 12px 26px;
  background: #0055ff;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s ease;
}

.cta:hover {
  background: #003fcc;
}

.cta-secondary {
  display: inline-block;
  padding: 12px 26px;
  background: #e5e7eb;
  color: #1a1a1a;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s ease;
}

.cta-secondary:hover {
  background: #d1d5db;
}

.cta-row {
  margin-top: 20px;
  display: flex;
  gap: 16px;
}

/* --------------------------------------------------
   HERO SECTIONS
-------------------------------------------------- */
.hero-academy {
  width: 100%;
  height: 420px;
  background-image: url("academy-hero.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-academy .overlay {
  background: rgba(0, 0, 0, 0.45);
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  color: #fff;
}

.hero-academy h1 {
  font-size: 48px;
  font-weight: 800;
}

.hero-academy p {
  margin-top: 10px;
  font-size: 18px;
}

/* --------------------------------------------------
   SECTIONS
-------------------------------------------------- */
.section {
  padding: 60px 40px;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.section p {
  font-size: 18px;
  color: #444;
}

/* --------------------------------------------------
   TRACK BLOCKS
-------------------------------------------------- */
.track-block {
  background: #ffffff;
  padding: 28px;
  margin: 20px 0;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  text-align: left;
}

.track-block h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.track-block p {
  color: #555;
}

/* --------------------------------------------------
   XP / BADGE BANNER
-------------------------------------------------- */
.xp-banner {
  width: 100%;
  height: 320px;
  background-image: url("xp-banner.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.xp-banner .overlay {
  background: rgba(0, 0, 0, 0.45);
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  color: #fff;
}

.xp-banner h2 {
  font-size: 36px;
  font-weight: 800;
}

.xp-banner p {
  margin-top: 10px;
  font-size: 18px;
}

/* --------------------------------------------------
   SECTION DIVIDER
-------------------------------------------------- */
.section-divider {
  width: 100%;
  height: 2px;
  background: #e5e7eb;
  margin: 40px 0;
}

/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */
footer {
  text-align: center;
  padding: 40px 0;
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  margin-top: 40px;
  font-size: 14px;
  color: #555;
}

/* --------------------------------------------------
   ANIMATIONS
-------------------------------------------------- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --------------------------------------------------
   RESPONSIVE
-------------------------------------------------- */
@media (max-width: 768px) {
  nav {
    padding: 16px 20px;
  }

  .hero-academy h1 {
    font-size: 34px;
  }

  .section {
    padding: 40px 20px;
  }

  .track-block {
    padding: 22px;
  }
}
