body {
  margin: 0;
  background: #0a0a0a;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

/* HEADER */
header {
  position: fixed;
  width: 100%;
  padding: 20px 60px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  z-index: 10;
}

.logo span {
  color: #ff6a00;
}

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

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

/* HERO */
.hero {
  height: 100vh;
  background: linear-gradient(to right, rgba(0,0,0,.85), rgba(0,0,0,.3)),
              url('../images/hero-bike.webp') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 80px;
}

.hero h1 {
  font-size: 90px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

.hero p {
  margin-top: 20px;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}

.btn {
  background: #ff6a00;
  padding: 14px 28px;
  margin-top: 30px;
  display: inline-block;
  text-decoration: none;
  color: #fff;
  transition: .3s;
}

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

/* SECTIONS */
.section {
  padding: 120px 80px;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARDS */
.card {
  background: #111;
  overflow: hidden;
  transform: translateY(40px);
  opacity: 0;
  transition: .5s;
}

.card.active {
  transform: translateY(0);
  opacity: 1;
}

.card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: .4s;
}

.card:hover img {
  transform: scale(1.1);
}

.card h3 {
  padding: 20px;
}

/* BANNER WOW */
.banner {
  background: url('../images/workshop.webp') center/cover no-repeat;
  padding: 150px 80px;
  position: relative;
}

.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.banner h2 {
  position: relative;
  font-size: 42px;
}

/* ANIMATIONS */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}