/* ================================
   FONT FACE
================================ */
@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: #050505;
  color: #ffffff;
  overflow-x: hidden;
}

/* ================================
   PARTICLE CANVAS
================================ */
#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ================================
   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;
  z-index: 1000;
}

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

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

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

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

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

.nav-links a.active {
  color: #FFD700;
  border-bottom: 2px solid #FFD700;
  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: #FFD700;
  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: #050505;
  background-image:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.5),
      rgba(5, 5, 5, 0.92)
    ),
    url('images/hero-bg.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;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 1000px;
  position: relative;
  z-index: 2;
}

.hero-label {
  font-size: 13px;
  letter-spacing: 8px;
  color: #1a7a4a;
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeInDown 0.8s ease 0.5s forwards;
}

/* ================================
   NAME REVEAL ANIMATION
================================ */
.name-reveal {
  margin-bottom: 20px;
}
#athlete-name {
  font-family: 'Road Rage', Arial, sans-serif;
  font-size: 130px;
  font-weight: normal;
  line-height: 1.1;
  padding: 10px 30px 0 30px;
  text-align: center;
  display: block;
  width: 100%;
}
.name-first {
  color: #ffffff;
  display: inline-block;
  transform: translateX(-100px);
  opacity: 0;
  animation: slideInLeft 0.8s ease 0.8s forwards;
}

.name-last {
  color: #FFD700;
  display: inline-block;
  transform: translateX(100px);
  opacity: 0;
  animation: slideInRight 0.8s ease 1.0s forwards;
}


.name-first {
  color: #ffffff;
  display: inline-block;
  transform: translateX(-100px);
  opacity: 0;
  animation: slideInLeft 0.8s ease 0.8s forwards;
}

.name-last {
  color: #FFD700;
  display: inline-block;
  transform: translateX(100px);
  opacity: 0;
  animation: slideInRight 0.8s ease 1.0s forwards;
}

.name-underline {
  height: 4px;
  background: linear-gradient(
    to right,
    transparent,
    #1a7a4a,
    #FFD700,
    #1a7a4a,
    transparent
  );
  width: 0%;
  margin: 12px auto 0;
  animation: expandWidth 0.8s ease 1.6s forwards;
}

/* ================================
   HERO ANIMATIONS
================================ */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes expandWidth {
  from { width: 0%; }
  to { width: 80%; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================================
   HERO H2 AND BUTTONS
================================ */
#hero h2 {
  font-size: 18px;
  color: #aaaaaa;
  font-weight: 400;
  letter-spacing: 4px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 1.4s forwards;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s ease 1.8s forwards;
}

/* ================================
   HERO STATS STRIP
================================ */
.hero-stats-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-bottom: 40px;
  border: 1px solid #1a7a4a;
  border-radius: 8px;
  overflow: hidden;
  opacity: 0;
  animation: fadeInUp 0.8s ease 1.6s forwards;
}

.strip-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 32px;
  background-color: rgba(26, 122, 74, 0.1);
  flex: 1;
}

.strip-stat:hover {
  background-color: rgba(26, 122, 74, 0.25);
  transition: background-color 0.3s ease;
}

.strip-number {
  font-size: 28px;
  font-weight: 900;
  color: #FFD700;
  line-height: 1;
}

.strip-label {
  font-size: 11px;
  color: #aaaaaa;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}

.strip-divider {
  width: 1px;
  height: 60px;
  background-color: #1a7a4a;
  flex-shrink: 0;
}

/* ================================
   BUTTONS
================================ */
.btn-primary {
  display: inline-block;
  padding: 16px 40px;
  background-color: #1a7a4a;
  color: #ffffff;
  font-size: 13px;
  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: #FFD700;
  color: #050505;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

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

.btn-secondary:hover {
  background-color: #FFD700;
  color: #050505;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.btn-qr {
  display: inline-block;
  padding: 16px 40px;
  background-color: transparent;
  color: #1a7a4a;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  border: 2px solid #1a7a4a;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-qr:hover {
  background-color: #1a7a4a;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(26, 122, 74, 0.4);
}

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

.modal.active {
  display: flex;
}

.modal-content {
  background-color: #111111;
  border: 1px solid #1a7a4a;
  border-radius: 16px;
  padding: 50px 60px;
  text-align: center;
  position: relative;
  max-width: 400px;
  width: 90%;
}

.modal-content h3 {
  font-size: 24px;
  color: #FFD700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: transparent;
  border: none;
  color: #aaaaaa;
  font-size: 24px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: #FFD700;
}

.qr-container {
  width: 200px;
  height: 200px;
  margin: 0 auto 20px;
  border: 2px solid #1a7a4a;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.qr-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.qr-container.qr-placeholder::after {
  content: '📱';
  font-size: 64px;
}

.modal-content p {
  color: #aaaaaa;
  font-size: 14px;
  margin-top: 8px;
}

.qr-url {
  color: #1a7a4a !important;
  font-size: 13px !important;
  letter-spacing: 1px;
  margin-top: 12px !important;
}

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

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(
    to right,
    #1a7a4a,
    #FFD700
  );
  margin: 16px auto 0;
  border-radius: 2px;
}

/* ================================
   STATS SECTION
================================ */
#stats {
  padding: 100px 20px;
  background-color: #050505;
  position: relative;
  z-index: 1;
}

.stats-dashboard {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.stats-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.big-stat-card {
  background-color: #0d0d0d;
  border: 1px solid #1a7a4a;
  border-radius: 16px;
  padding: 40px 24px;
  text-align: center;
  flex: 1;
  transition: all 0.3s ease;
}

.big-stat-card:hover {
  border-color: #FFD700;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.1);
  transform: translateY(-4px);
}

.big-stat-number {
  font-size: 72px;
  font-weight: 900;
  color: #FFD700;
  line-height: 1;
}

.big-stat-label {
  font-size: 14px;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 12px;
}

.big-stat-sub {
  font-size: 12px;
  color: #555555;
  margin-top: 4px;
  letter-spacing: 1px;
}

.stats-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}

.progress-stat {
  background-color: #0d0d0d;
  border: 1px solid #1a1a1a;
  border-radius: 12px;
  padding: 20px 24px;
  transition: border-color 0.3s ease;
}

.progress-stat:hover {
  border-color: #1a7a4a;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.progress-label {
  font-size: 13px;
  color: #aaaaaa;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.progress-value {
  font-size: 16px;
  font-weight: 900;
  color: #FFD700;
}

.progress-bar {
  height: 8px;
  background-color: #1a1a1a;
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(
    to right,
    #1a7a4a,
    #FFD700
  );
  border-radius: 4px;
  transition: width 1.5s ease;
}

/* ================================
   VIDEOS SECTION
================================ */
#videos {
  padding: 100px 20px;
  background-color: #080808;
  position: relative;
  z-index: 1;
}

.videos-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.video-item.featured .video-wrapper {
  aspect-ratio: 16 / 9;
}

.videos-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.video-item h3 {
  font-size: 13px;
  color: #aaaaaa;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

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

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

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

/* ================================
   GALLERY SECTION
================================ */
#gallery {
  padding: 100px 20px;
  background-color: #050505;
  position: relative;
  z-index: 1;
}

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

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

.gallery-item:hover {
  border-color: #FFD700;
  transform: scale(1.02);
}

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

.gallery-item.placeholder {
  background-color: #0d0d0d;
  background-image: linear-gradient(
    135deg,
    #0d2a1a 0%,
    #0d0d0d 50%,
    #050505 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: #FFD700;
  font-size: 11px;
  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.97);
  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 #FFD700;
}

.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: #FFD700;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(26, 122, 74, 0.1);
  border: 1px solid #1a7a4a;
  color: #FFD700;
  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: #1a7a4a;
  color: #ffffff;
}

/* ================================
   TIMELINE SECTION
================================ */
#timeline {
  padding: 100px 20px;
  background-color: #080808;
  position: relative;
  z-index: 1;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    #1a7a4a,
    #FFD700,
    #1a7a4a
  );
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 40px);
  margin-bottom: 50px;
  position: relative;
}

.timeline-item.right {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 40px);
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 20px;
  width: 16px;
  height: 16px;
  background-color: #1a7a4a;
  border: 3px solid #FFD700;
  border-radius: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease;
}

.timeline-item.active::after {
  background-color: #FFD700;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.6);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(255, 215, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
  }
}

.timeline-content {
  background-color: #0d0d0d;
  border: 1px solid #1a1a1a;
  border-radius: 12px;
  padding: 24px 28px;
  max-width: 340px;
  transition: all 0.3s ease;
}

.timeline-content:hover {
  border-color: #1a7a4a;
  transform: translateY(-3px);
}

.timeline-item.active .timeline-content {
  border-color: #FFD700;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
}

.timeline-date {
  font-size: 11px;
  color: #1a7a4a;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 700;
}

.timeline-content h3 {
  font-size: 16px;
  color: #FFD700;
  font-weight: 700;
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 13px;
  color: #888888;
  line-height: 1.7;
}

/* ================================
   TESTIMONIALS
================================ */
#testimonials {
  padding: 100px 20px;
  background-color: #050505;
  position: relative;
  z-index: 1;
}

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

.testimonial-card {
  background-color: #0d0d0d;
  border: 1px solid #1a1a1a;
  border-radius: 16px;
  padding: 40px 32px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: #1a7a4a;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(26, 122, 74, 0.1);
}

.quote-mark {
  font-size: 80px;
  color: #FFD700;
  opacity: 0.2;
  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: #FFD700;
  font-weight: 700;
  letter-spacing: 1px;
}

.coach-info p {
  font-size: 12px;
  color: #555555;
  margin-top: 4px;
}

/* ================================
   LIVE STREAM SECTION
================================ */
#live {
  padding: 100px 20px;
  background-color: #080808;
  text-align: center;
  position: relative;
  z-index: 1;
}

.live-subtitle {
  font-size: 16px;
  color: #aaaaaa;
  letter-spacing: 2px;
  margin-bottom: 40px;
}

.live-container {
  max-width: 900px;
  margin: 0 auto;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.3);
  border-radius: 20px;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #ff4444;
  margin-bottom: 24px;
}

.live-dot {
  width: 8px;
  height: 8px;
  background-color: #ff4444;
  border-radius: 50%;
  animation: livePulse 1.5s infinite;
}

@keyframes livePulse {
  0% { opacity: 1; }
  50% { opacity: 0.3; }
  100% { opacity: 1; }
}

.live-wrapper {
  border-color: #1a7a4a !important;
  box-shadow: 0 0 40px rgba(26, 122, 74, 0.2);
}

/* ================================
   PRESS SECTION
================================ */
#press {
  padding: 100px 20px;
  background-color: #050505;
  position: relative;
  z-index: 1;
}

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

.press-card {
  background-color: #0d0d0d;
  border: 1px solid #1a1a1a;
  border-radius: 12px;
  padding: 32px 28px;
  transition: all 0.3s ease;
}

.press-card:hover {
  border-color: #FFD700;
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.08);
}

.press-outlet {
  font-size: 13px;
  font-weight: 900;
  color: #FFD700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #1a1a1a;
}

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

.press-link {
  font-size: 12px;
  color: #1a7a4a;
  text-decoration: none;
  letter-spacing: 1px;
  font-weight: 700;
  transition: color 0.3s ease;
}

.press-link:hover {
  color: #FFD700;
}

/* ================================
   SOCIAL SECTION
================================ */
#social {
  padding: 100px 20px;
  background-color: #080808;
  text-align: center;
  position: relative;
  z-index: 1;
}

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

.social-btn {
  padding: 16px 36px;
  border: 2px solid #1a7a4a;
  color: #1a7a4a;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background-color: #1a7a4a;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(26, 122, 74, 0.4);
}

/* ================================
   CONTACT SECTION
================================ */
#contact {
  padding: 140px 20px;
  text-align: center;
  background-image: linear-gradient(
    to top,
    rgba(26, 122, 74, 0.08),
    #050505
  );
  position: relative;
  z-index: 1;
}

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

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

/* ================================
   SECTION TITLE UNDERLINE
================================ */
#stats, #videos, #gallery,
#timeline, #testimonials,
#live, #press, #social, #contact {
  position: relative;
  z-index: 1;
}

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

  #athlete-name {
    font-size: 72px;
  }

  .stats-dashboard {
    grid-template-columns: 1fr;
  }

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

  .videos-side {
    flex-direction: column;
  }

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

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    padding-right: 0;
    padding-left: 60px;
    justify-content: flex-start;
  }

  .timeline-item.right {
    padding-left: 60px;
  }

  .timeline-item::after {
    left: 20px;
  }

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

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

  .hero-stats-strip {
    flex-wrap: wrap;
  }

  .strip-divider {
    display: none;
  }

  .strip-stat {
    width: 33%;
  }

  .hamburger {
    display: flex;
  }

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

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

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

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

  #hero {
    padding-top: 120px;
    align-items: flex-end;
    padding-bottom: 60px;
  }

  #athlete-name {
    font-size: 58px;
    padding: 10px 50px 0 15px;
    
  }

  .hero-content {
    width: 100%;
    text-align: center;
    padding: 0 10px;
  }

  .name-underline {
    width: 90%;
  }

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

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

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

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

  .hero-stats-strip {
    display: none;
  }

  .big-stat-number {
    font-size: 56px;
  }

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

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

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

}
