/* ==== OWC Theme ==== */
:root {
  --yellow: #f2c419;
  --yellow-dark: #cfa50f;
  --black: #0a0a0a;
  --dark: #161616;
  --dark-2: #1f1f1f;
  --white: #f5f5f5;
  --grey: #999;
  --max-width: 1100px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, .brand {
  font-family: 'Bebas Neue', 'Inter', system-ui, sans-serif;
  letter-spacing: 1px;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ==== Header ==== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.95);
  border-bottom: 3px solid var(--yellow);
  backdrop-filter: blur(6px);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-size: 1.8rem;
  color: var(--yellow);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.brand img {
  height: 52px;
  width: auto;
  display: block;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--yellow);
  margin: 5px 0;
  transition: 0.25s;
}

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

.main-nav a {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 4px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width 0.2s;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.main-nav a.active {
  color: var(--yellow);
}

/* ==== Hero (generic page banner) ==== */
.page-hero {
  padding: 70px 24px 50px;
  text-align: center;
  background:
    repeating-linear-gradient(135deg, transparent 0 40px, rgba(255,212,0,0.05) 40px 80px);
  border-bottom: 3px solid var(--dark-2);
}

.page-hero h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  color: var(--yellow);
}

.page-hero p {
  color: var(--grey);
  max-width: 600px;
  margin: 14px auto 0;
  font-size: 1.05rem;
}

/* ==== Home Hero ==== */
.hero {
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
  position: relative;
  background:
    repeating-linear-gradient(135deg, transparent 0 40px, rgba(255,212,0,0.06) 40px 80px);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0) 0%, rgba(10,10,10,1) 96%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; }

.hero-logo {
  width: 150px;
  margin: 0 auto 8px;
  filter: drop-shadow(0 0 30px rgba(242, 196, 25, 0.35));
}

.hero h1 {
  font-size: clamp(3.2rem, 12vw, 7.5rem);
  color: var(--yellow);
  line-height: 0.95;
}

.hero p.lead {
  margin: 22px auto 0;
  max-width: 520px;
  color: var(--grey);
  font-size: 1.1rem;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ==== Buttons ==== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.95rem;
  border: 2px solid var(--yellow);
  transition: transform 0.15s, background 0.15s, color 0.15s;
  cursor: pointer;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--yellow);
  color: var(--black);
}

.btn-primary:hover { background: var(--yellow-dark); }

.btn-outline {
  background: transparent;
  color: var(--yellow);
}

.btn-outline:hover {
  background: var(--yellow);
  color: var(--black);
}

.btn-lg {
  font-size: 1.15rem;
  padding: 20px 40px;
}

/* ==== WhatsApp CTA band ==== */
.whatsapp-band {
  background: var(--yellow);
  color: var(--black);
  padding: 60px 24px;
  text-align: center;
}

.whatsapp-band .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.whatsapp-band h2 {
  font-size: clamp(2rem, 6vw, 3.2rem);
}

.whatsapp-band p {
  font-size: 1.1rem;
  max-width: 520px;
  font-weight: 600;
}

.whatsapp-band .btn-primary {
  background: var(--black);
  color: var(--yellow);
  border-color: var(--black);
}

.whatsapp-band .btn-primary:hover {
  background: #000;
  color: var(--yellow);
}

/* ==== Sections ==== */
.section {
  padding: 80px 24px;
}

.section-alt {
  background: var(--dark);
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--yellow);
}

.section-head p {
  color: var(--grey);
  margin-top: 10px;
}

/* ==== Cards / Grid ==== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  background: var(--dark-2);
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 30px 24px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}

.card:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
}

.card .icon {
  color: var(--yellow);
  margin-bottom: 16px;
}

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.card p { color: var(--grey); font-size: 0.95rem; }

/* ==== Teaser (Bike Battle on home) ==== */
.teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.teaser img, .teaser .img-placeholder {
  border-radius: 14px;
  border: 3px solid var(--yellow);
}

.teaser h2 { color: var(--yellow); font-size: 2.2rem; margin-bottom: 12px; }
.teaser p { color: var(--grey); margin-bottom: 22px; }

/* ==== Image placeholder ==== */
.img-placeholder {
  aspect-ratio: 4 / 3;
  background: var(--dark-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
}

/* ==== Video grid ==== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.video-card {
  background: var(--dark-2);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #2a2a2a;
  transition: border-color 0.2s, transform 0.2s;
}

.video-card:hover { border-color: var(--yellow); transform: translateY(-4px); }

.video-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #000;
  object-fit: cover;
}

.video-card .video-info { padding: 16px 18px; }
.video-card h3 { font-size: 1.05rem; text-transform: none; }
.video-card p { color: var(--grey); font-size: 0.85rem; margin-top: 4px; }

.video-note {
  text-align: center;
  margin-top: 40px;
  color: var(--grey);
}

/* ==== Coming soon (merch) ==== */
.coming-soon {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
}

.coming-soon h1 {
  font-size: clamp(3rem, 14vw, 8rem);
  color: var(--yellow);
  -webkit-text-stroke: 2px var(--yellow-dark);
}

.coming-soon p {
  color: var(--grey);
  max-width: 480px;
  margin-top: 18px;
  font-size: 1.1rem;
}

.coming-soon .icon-wrap {
  color: var(--yellow);
  margin-bottom: 20px;
  opacity: 0.85;
}

/* ==== Bike Battle winner ==== */
.winner-card {
  max-width: 460px;
  margin: 0 auto;
  background: var(--dark-2);
  border: 3px solid var(--yellow);
  border-radius: 18px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 0 40px rgba(255, 212, 0, 0.15);
}

.winner-badge {
  background: var(--yellow);
  color: var(--black);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 10px;
  font-size: 0.85rem;
}

.winner-photo {
  aspect-ratio: 1 / 1;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
}

.winner-info { padding: 26px 24px 32px; }

.winner-info h2 {
  font-size: 2rem;
  color: var(--yellow);
  margin-bottom: 10px;
}

.winner-info .insta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--white);
  border: 2px solid #333;
  padding: 10px 18px;
  border-radius: 30px;
  transition: border-color 0.2s, color 0.2s;
}

.winner-info .insta-link:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.battle-explain {
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
  color: var(--grey);
}

.battle-explain h2 {
  color: var(--yellow);
  font-size: 1.8rem;
  margin-bottom: 16px;
}

/* ==== Leader profile (OneWheelJay) ==== */
.leader-profile {
  display: flex;
  gap: 48px;
  align-items: center;
}

.leader-avatar {
  flex: 0 0 220px;
  width: 220px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: var(--dark-2);
  border: 3px solid var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  box-shadow: 0 0 40px rgba(242, 196, 25, 0.15);
  overflow: hidden;
}

.leader-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.leader-info { flex: 1; min-width: 260px; }

.leader-role {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.leader-info h2 {
  font-size: clamp(2.2rem, 5vw, 3rem);
  color: var(--yellow);
  margin-bottom: 18px;
}

.leader-info p {
  color: var(--grey);
  margin-bottom: 26px;
  font-size: 1.05rem;
  max-width: 600px;
}

.leader-socials {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--white);
  border: 2px solid #333;
  padding: 10px 18px;
  border-radius: 30px;
  transition: border-color 0.2s, color 0.2s;
}

.social-btn:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

@media (max-width: 800px) {
  .leader-profile {
    flex-direction: column;
    text-align: center;
  }
  .leader-socials { justify-content: center; }
  .leader-info p { margin-left: auto; margin-right: auto; }
}

/* ==== Floating WhatsApp button ==== */
.whatsapp-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.45), 0 0 0 0 rgba(242, 196, 25, 0.5);
  z-index: 200;
  transition: transform 0.2s, background 0.2s;
  animation: fab-pulse 2.5s infinite;
}

.whatsapp-fab:hover {
  background: var(--yellow-dark);
  transform: scale(1.08);
}

@keyframes fab-pulse {
  0% { box-shadow: 0 6px 24px rgba(0, 0, 0, 0.45), 0 0 0 0 rgba(242, 196, 25, 0.45); }
  70% { box-shadow: 0 6px 24px rgba(0, 0, 0, 0.45), 0 0 0 14px rgba(242, 196, 25, 0); }
  100% { box-shadow: 0 6px 24px rgba(0, 0, 0, 0.45), 0 0 0 0 rgba(242, 196, 25, 0); }
}

@media (max-width: 640px) {
  .whatsapp-fab {
    width: 52px;
    height: 52px;
    right: 16px;
    bottom: 16px;
  }
}

/* ==== Footer ==== */
.site-footer {
  border-top: 3px solid var(--yellow);
  padding: 36px 24px;
  text-align: center;
  color: var(--grey);
  font-size: 0.9rem;
}

.site-footer .footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.social-row {
  display: flex;
  gap: 18px;
}

.social-row a {
  color: var(--white);
  border: 2px solid #333;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}

.social-row a:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

/* ==== Responsive ==== */
@media (max-width: 800px) {
  .grid-3, .video-grid { grid-template-columns: 1fr 1fr; }
  .teaser { grid-template-columns: 1fr; }
  .teaser .teaser-text { order: 2; }
}

@media (max-width: 640px) {
  .nav-toggle { display: block; }

  .main-nav {
    position: fixed;
    top: 83px;
    left: 0;
    right: 0;
    background: var(--black);
    border-bottom: 3px solid var(--yellow);
    transform: translateY(-120%);
    transition: transform 0.25s;
  }

  .main-nav.open { transform: translateY(0); }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 10px 0;
  }

  .main-nav ul li a {
    display: block;
    padding: 16px 24px;
  }

  .grid-3, .video-grid { grid-template-columns: 1fr; }

  .whatsapp-band .container { gap: 14px; }
}
