@font-face {
  font-family: 'Road Rage';
  src: url('fonts/Road_Rage.woff2') format('woff2'),
       url('fonts/Road_Rage.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

/* GLOBAL RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
}

/* NAVIGATION */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 40px;
  background-color: transparent;
  transition: background-color 0.4s ease,
              border-bottom 0.4s ease;
  z-index: 1000;
}

#navbar.scrolled {
  background-color: rgba(10, 10, 10, 0.97);
  border-bottom: 1px solid #0531d5;
}

.nav-logo {
  font-size: 28px;
  font-weight: 900;
  color: #5b8cff;
  letter-spacing: 3px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #5b8cff;
}

.nav-links a.active {
  color: #5b8cff;
  border-bottom: 2px solid #5b8cff;
  padding-bottom: 4px;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #5b8cff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* HERO SECTION */
#hero {
  min-height: 100vh;
  background-color: #0a0a0a;
  background-image:
    linear-gradient(
      to bottom,
      rgba(5, 49, 213, 0.3),
      rgba(10, 10, 10, 0.90)
    ),
    url('images/tier2template.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 20px 80px 20px;
}

.hero-content {
  max-width: 900px;
}

.hero-label {
  font-size: 13px;
  letter-spacing: 6px;
  color: #ffffff;
  text-transform: uppercase;
  margin-top: 2px;
  margin-bottom: 24px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

#hero h1 {
  font-family: 'Road Rage', Arial, sans-serif;
  font-size: 120px;
  font-weight: normal;
  color: #ffffff;
  letter-spacing: 4px;
  line-height: 1;
  margin-bottom: 20px;
}

.name-first {
  color: #ffffff;
}

.highlight {
  color: #0531d5;
}

#hero h2 {
  font-size: 20px;
  color: #aaaaaa;
  font-weight: 400;
  letter-spacing: 3px;
  margin-top: 10px;
  margin-bottom: 15px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  padding: 16px 48px;
  background-color: #0531d5;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #5b8cff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(5, 49, 213, 0.5);
}

.btn-secondary {
  display: inline-block;
  padding: 16px 48px;
  background-color: transparent;
  color: #5b8cff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  border: 2px solid #5b8cff;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: #0531d5;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(5, 49, 213, 0.4);
}

/* SECTION TITLES */
.section-title {
  font-size: 36px;
  color: #5b8cff;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 60px;
}

/* STATS SECTION */
#stats {
  padding: 100px 20px;
  background-color: #0a0a0a;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-box {
  background-color: #111111;
  border: 1px solid #222222;
  border-radius: 12px;
  padding: 40px 20px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: default;
}

.stat-box:hover {
  border-color: #0531d5;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(5, 49, 213, 0.15);
}

.stat-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.stat-box h3 {
  font-size: 48px;
  font-weight: 900;
  color: #5b8cff;
  line-height: 1;
}

.stat-unit {
  font-size: 12px;
  color: #555555;
  letter-spacing: 1px;
  margin-top: 4px;
  min-height: 18px;
}

.stat-label {
  font-size: 13px;
  color: #aaaaaa;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 8px;
}

/* VIDEOS SECTION */
#videos {
  padding: 100px 20px;
  background-color: #0f0f0f;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.video-item h3 {
  font-size: 14px;
  color: #aaaaaa;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  text-align: center;
}

.video-wrapper {
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #222222;
  transition: border-color 0.3s ease;
}

.video-wrapper:hover {
  border-color: #0531d5;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
}

/* GALLERY SECTION */
#gallery {
  padding: 100px 20px;
  background-color: #0a0a0a;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  height: 220px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #222222;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.gallery-item:hover {
  border-color: #0531d5;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item.placeholder {
  background-color: #111111;
  background-image: linear-gradient(
    135deg,
    #0a1a4e 0%,
    #111111 50%,
    #0a0a0a 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item.placeholder::after {
  content: '📸';
  font-size: 36px;
  opacity: 0.3;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 16px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9),
    transparent
  );
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-overlay p {
  color: #5b8cff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  max-width: 90%;
  max-height: 85vh;
  position: relative;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid #0531d5;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 32px;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 10000;
}

.lightbox-close:hover {
  color: #5b8cff;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(5, 49, 213, 0.1);
  border: 1px solid #0531d5;
  color: #5b8cff;
  font-size: 24px;
  padding: 16px 20px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  z-index: 10000;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background-color: #0531d5;
  color: #ffffff;
}

/* TESTIMONIALS */
#testimonials {
  padding: 100px 20px;
  background-color: #0f0f0f;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background-color: #111111;
  border: 1px solid #222222;
  border-radius: 12px;
  padding: 40px 32px;
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  border-color: #0531d5;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(5, 49, 213, 0.1);
}

.quote-mark {
  font-size: 80px;
  color: #5b8cff;
  opacity: 0.3;
  line-height: 0.5;
  margin-bottom: 24px;
  font-family: Georgia, serif;
}

.quote {
  font-size: 15px;
  color: #cccccc;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 32px;
}

.coach-info h4 {
  font-size: 14px;
  color: #5b8cff;
  font-weight: 700;
  letter-spacing: 1px;
}

.coach-info p {
  font-size: 12px;
  color: #666666;
  margin-top: 4px;
  letter-spacing: 1px;
}

/* SOCIAL SECTION */
#social {
  padding: 100px 20px;
  background-color: #0a0a0a;
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.social-btn {
  padding: 16px 40px;
  border: 2px solid #0531d5;
  color: #5b8cff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background-color: #0531d5;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(5, 49, 213, 0.4);
}

/* CONTACT SECTION */

#contact {
  padding: 120px 20px;
  text-align: center;
  position: relative;
  background-image:
    linear-gradient(
      to bottom,
      rgba(10, 10, 10, 0.92),
      rgba(5, 49, 213, 0.75),
      rgba(10, 10, 10, 0.92)
    ),
    url('images/tier2template-bottom.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-subtitle {
  font-size: 18px;
  color: #aaaaaa;
  margin-bottom: 50px;
  letter-spacing: 1px;
}

.contact-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
} 

/* #contact {
  padding: 120px 20px;
  text-align: center;
  background-image: linear-gradient(
    to top,
    rgba(5, 49, 213, 0.05),
    #0a0a0a
  );
}



/* MOBILE TABLETS (max 768px) */
@media (max-width: 768px) {

  #hero h1 {
    font-size: 52px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.98);
    padding: 20px 0;
    border-bottom: 1px solid #0531d5;
    gap: 0;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    padding: 16px 0;
    border-bottom: 1px solid #1a1a1a;
  }

}

/* MOBILE PHONES (max 480px) */
@media (max-width: 480px) {

  #hero {
    padding-top: 120px;
  }

  #hero h1 {
    font-size: 38px;
    letter-spacing: 2px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title {
    font-size: 26px;
    letter-spacing: 2px;
  }

  .social-links {
    flex-direction: column;
    align-items: center;
  }

  .social-btn {
    width: 80%;
    text-align: center;
  }

  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }

}
