@charset "UTF-8";

/* ==========================================================================
   MXM Athletics — Clean Stylesheet (style.css)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Base & Reset
   -------------------------------------------------------------------------- */
body {
  background-color: #E6E7E8;
  color: #e4e2e1;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  display: inline-block;
  vertical-align: middle;
}

/* --------------------------------------------------------------------------
   2. Buttons & Interactivity
   -------------------------------------------------------------------------- */

/* Primary Glassmorphism Button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 2px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
}

.btn-primary:hover {
  background: rgba(255, 106, 0, 0.95);
  color: #000000;
  border-color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), 0 0 20px rgba(255, 255, 255, 0.12);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-primary:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 4px;
}

/* Outline Lime Button */
.btn-outline-lime {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  padding: 12px 24px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-outline-lime:hover {
  background-color: #bef264;
  border-color: #bef264;
  color: #000000;
}

/* Secondary Button */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  padding: 12px 24px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-secondary:hover {
  background-color: #fdba74;
  border-color: #fdba74;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-secondary:active {
  transform: translateY(1px);
}

/* Transparent Ghost Button */
.btn-transparent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 14px 28px;
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
}

.btn-transparent:hover {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.btn-transparent:active {
  transform: translateY(-1px);
}

.btn-transparent:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 4px;
}

/* --------------------------------------------------------------------------
   3. Gradients & Overlay
   -------------------------------------------------------------------------- */
.hero-gradient {
  background: linear-gradient(0deg, rgba(19, 19, 19, 1) 0%, rgba(19, 19, 19, 0) 50%, rgba(19, 19, 19, 0.3) 100%);
}

.card-scrim {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
}

/* --------------------------------------------------------------------------
   4. Hero Carousel
   -------------------------------------------------------------------------- */
.carousel-slide {
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 10;
  pointer-events: auto;
}

/* --------------------------------------------------------------------------
   5. Utilities
   -------------------------------------------------------------------------- */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}