* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0a0a0a;
  font-family: 'Inter', sans-serif;
  color: white;
  overflow-x: hidden;
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 80px;
  position: absolute;
  width: 100%;
  z-index: 10;
}


.logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.navbar a.active {
  color: #00ff99;
}

.navbar ul {
  display: flex;
  list-style: none;
  gap: 40px;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.navbar a:hover {
  color: #ccff00;
}









.logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.navbar ul {
  display: flex;
  list-style: none;
  gap: 40px;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.navbar a:hover,
.navbar a.active {
  color: #ccff00;
}

/* ===========================
   HERO SECTION
=========================== */
.hero {
  background: url('./images/about-bg.jpg') center/cover no-repeat;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.65);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 4rem;
  color: #ccff00;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.hero p {
  color: #ccc;
  font-size: 1.3rem;
  line-height: 1.6;
}

/* ===========================
   MISSION / ABOUT SECTION
=========================== */
.about-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  padding: 160px 10%;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  min-width: 320px;
}

.about-text h2 {
  font-family: 'Orbitron', sans-serif;
  color: #ccff00;
  font-size: 3rem;
  margin-bottom: 25px;
  letter-spacing: 2px;
}

.about-text p {
  color: #ccc;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-img {
  flex: 1;
  min-width: 320px;
  position: relative;
}

.about-img img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(204,255,0,0.2);
}

.years-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: #ccff00;
  color: #000;
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  padding: 10px 25px;
  border-radius: 30px;
}

/* ===========================
   HIGHLIGHTS / FEATURES
=========================== */
.highlights {
  text-align: center;
  padding: 140px 80px;
  background-color: #111;
}

.highlights h2 {
  font-family: 'Orbitron', sans-serif;
  color: #ccff00;
  font-size: 3rem;
  margin-bottom: 70px;
}

.highlight-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
}

.highlight-card {
  background: #1b1b1b;
  padding: 50px 30px;
  border-radius: 20px;
  width: 300px;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(204,255,0,0.15), transparent);
  opacity: 0;
  transition: 0.4s;
}

.highlight-card:hover::before {
  opacity: 1;
}

.highlight-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(204,255,0,0.3);
}

.highlight-card h3 {
  color: #ccff00;
  font-family: 'Orbitron', sans-serif;
  margin-bottom: 15px;
}

.highlight-card p {
  color: #bbb;
  font-size: 1rem;
  line-height: 1.6;
}

/* ===========================
   COACHES / TEAM SECTION
=========================== */
.coaches {
  padding: 140px 80px;
  text-align: center;
}

.coaches h2 {
  font-family: 'Orbitron', sans-serif;
  color: #ccff00;
  font-size: 3rem;
  margin-bottom: 80px;
}

.gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.photo {
  text-align: center;
  background: #1a1a1a;
  border-radius: 15px;
  padding: 20px;
  width: 220px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.photo img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.photo:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px rgba(204,255,0,0.3);
}

.photo p {
  font-family: 'Orbitron', sans-serif;
  color: #ccc;
  font-size: 1rem;
}

/* ===========================
   FOOTER
=========================== */
footer {
  background-color: #000;
  padding: 80px 10%;
  color: #ccc;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h3 {
  color: #ccff00;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
  cursor: pointer;
  transition: color 0.3s;
}

.footer-col li:hover {
  color: #fff;
}

.footer-col a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: #ccff00;
}

footer .copyright {
  text-align: center;
  color: #555;
  font-size: 0.9rem;
}