@charset "UTF-8";
/* CSS Foot Pop 4/30/2026 */
/* =========================================
   OLD MAN HACKY SACK GLOBAL STYLE
========================================= */ :root {
  --yellow: #ffc400;
  --orange: #ff6b00;
  --dark: #111111;
  --gray: #f5f5f5;
  --red: #d62828;
}
html {
    scroll-behavior: smooth;
}
body {
  font-family: "arial", sans-serif;
  /*font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif;*/
  font-weight: 900;
  color: #222;
  background: #fafafa;
}
h1,h2,h3,h4,h5,h6 {
  font-weight: 900;
}
p,
ul li, 
ol li,
.lead {
  font-weight: 900;
}
.border-white-6 {
  border: 6px solid #fff;
}
.logo {
  max-height: 80px;
}
@media only screen and (max-width: 992px) {
  .logo {
    max-height: 60px;
  }
}
.gear {
  background: var(--gray);
  padding: 100px 0;
}
.games {
  background: white;
  padding: 100px 0;
}
.trick-jump-nav {
    position: sticky;
    top: 110px; /* navbar height */
    z-index: 100;
    background: #fafafa;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}
#basic,
#add1,
#add2,
#add3,
#add4,
#add5,
#add6{
  scroll-margin-top: 210px
}
@media only screen and (max-width: 992px) {
  .trick-jump-nav {
    top:90px;
  }
  #basic,
  #add1,
  #add2,
  #add3,
  #add4,
  #add5,
  #add6{
    scroll-margin-top: 250px
  }
}
@media only screen and (max-width: 992px) {
  .trick-jump-nav .btn.btn-outline-dark {
    padding-left:12px;
    padding-right:12px;
  }
}
@media only screen and (max-width: 552px) {
  .trick-jump-nav .btn.btn-outline-dark {
    font-size:14px;
    padding-left:10px;
    padding-right:10px;
  }
}
.jump-link {
    transition: all .2s ease;
}

.jump-link.active {
    background: #ffc400;
    color: #000;
    border-color: #ffc400;
    font-weight: 900;
}

/* =========================================
   NAVIGATION
========================================= */
.navbar {
  background: #111 !important;
  border-bottom: 5px solid var(--yellow);
}
.navbar-brand {
  color: var(--yellow) !important;
  font-size: 1.5rem;
  letter-spacing: 1px;
}
.nav-link {
  color: white !important;
  font-weight:900;
  text-transform: uppercase;
}
.nav-link:hover {
  color: var(--yellow) !important;
}
@media only screen and (max-width: 992px) {
   .nav-link {
     padding-bottom: 20px;
     padding-top: 20px;
     text-align: center;  
  }
}
/* =========================================
   BUTTONS
========================================= */
.btn {
  border-radius: 50px;
  font-weight: 900;
  text-transform: uppercase;
  padding: 12px 28px;
  letter-spacing: 1px;
}
.btn-primary {
  background: var(--yellow);
  border: none;
  color: #111;
}
.btn-primary:hover {
  background: var(--orange);
  color: white;
}
.btn-warning {
  background: var(--yellow);
  border: none;
}
.btn-dark {
  background: #111;
}
/* =========================================
   HERO SECTIONS
========================================= */
.hero, .about-hero {
  background:
    linear-gradient(rgba(0, 0, 0, .75), rgba(0, 0, 0, .75)), url(old-man-background-1920x1080.jpg);
  background-size: cover;
  background-position: center;
  color: white;
  padding: 120px 0;
}
.hero h1, .about-hero h1 {
  font-size: 4rem;
  text-transform: uppercase;
  line-height: 1;
}
.hero p {
  font-weight: 500;
}
/* =========================================
   SECTION HEADERS
========================================= */
h1, h2, h3, h4 {
  text-transform: uppercase;
}
h2 {
  font-size: 2rem;
  position: relative;
  margin-bottom: 6px;
}
/* =========================================
   VIDEO CARDS
========================================= */
.video-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, .15);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: .3s;
}
.video-card:hover {
  /* transform:translateY(-10px)
    rotate(-1deg);
*/
}
.video-wrapper {
  width: 100%;
  aspect-ratio: 9 / 16;
}
.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.video-content {
  padding: 20px;
  flex-grow: 1;
}
/* =========================================
   TRICK CARDS
========================================= */
.trick-card, .card {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  transition: .3s;
}
.trick-card:hover, .card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 15px 35px rgba(0, 0, 0, .2) !important;
}
.trick-card .btn {
  margin-top: 15px;
}
/* =========================================
   DIFFICULTY BADGES
========================================= */
.badge {
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 1rem;
}
.bg-danger {
  background: var(--red) !important;
}
/* =========================================
   STATS
========================================= */
.stats, .stats-section {
  background: #111;
  color: white;
  padding: 80px 0;
}
.stats h2 {
  color: var(--yellow);
  font-size: 2rem;
}
/* =========================================
   ABOUT
========================================= */
.about {
  background: var(--yellow);
  padding: 100px 0;
}
/* =========================================
   TRICK VIDEO
========================================= */
.trick-video {
  max-width: 420px;
  margin: 0 auto;
}
.trick-video .video-wrapper {
  width: 100%;
  aspect-ratio: 9 / 16;
}
.trick-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 20px;
  display: block;
}
/* Mobile */
@media (max-width:768px) {
  .trick-video {
    max-width: 100%;
  }
}
/* =========================================
   BREADCRUMBS
========================================= */
.breadcrumb {
  background: #eee;
  padding: 15px 20px;
  border-radius: 50px;
}
.breadcrumb a {
  color: #111;
}
/* =========================================
   FOOTER
========================================= */
footer {
  border-top:
    5px solid var(--yellow);
}
footer h3 {
  color: var(--yellow);
}
footer .footer-link {
  color:#fff;
  display: inline-block;
  margin-left:10px;
  margin-right:10px;
  text-decoration: none;
}
footer .footer-link:hover {
  color:var(--yellow);
}
/* =========================================
   MOBILE
========================================= */
@media(max-width:768px) {
  .hero h1, .about-hero h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
}