body {
  margin: 0;
  font-family: Cascadia Code;
  background: #111;
  color: #eee;
  font-size: 25px
}

header {
  background: #000;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: Pixel;
}

header a {
  color: #eee;
  text-decoration: none;
  margin: 0 10px;
}

header a:hover {
  color: #aaa;
}

.container {
  padding: 40px;
  font-family: Courier New;
}

h1, h2 {
  color: #fff;
  font-family: Courier New;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  
}

.card {
  background: #1a1a1a;
  padding: 15px;
  border-radius: 10px;
}

img {
  width: 100%;
  border-radius: 10px;
  filter: grayscale(0%);
}

.price {
  color: #bbb;
  font-size: 25px;
}

p {
  max-width: 600px;
  line-height: 1.6;
}

.button-container {
  text-align: center;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  background: white;
  color: black;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s;
}

.btn:hover {
  background: #dcdcdc;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #111;
  color: white;
}

/* HEADER */

header {
  background: black;
  padding: 20px 40px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
}

nav a:hover {
  color: #bdbdbd;
}

/* HERO */

.hero {
  text-align: center;
  padding: 100px 20px 60px;
}

.hero h1 {
  font-size: 60px;
  margin-bottom: 10px;
}

.hero p {
  max-width: 700px;
  margin: auto;
  line-height: 1.7;
  color: #cfcfcf;
}

/* FEATURED WORK */

.best-work {
  padding: 40px;
}

.best-work h2 {
  text-align: center;
  margin-bottom: 40px;
}

.image-grid {
  display: grid;

  grid-template-columns:
  repeat(auto-fit, minmax(250px, 1fr));

  gap: 20px;
}

.image-grid img {
  width: 100%;
  height: 300px;

  object-fit: cover;

  border-radius: 12px;

  filter: grayscale(0%);

  transition: 0.3s;
}

.image-grid img:hover {
  transform: scale(1.02);

  filter: grayscale(0%);
}

/* EVENT BUTTONS */

.event-section {
  padding: 80px 20px;
  text-align: center;
}

.event-buttons {
  display: flex;

  flex-wrap: wrap;

  justify-content: center;

  gap: 20px;

  margin-top: 40px;
}

.event-btn {
  background: white;

  color: black;

  padding: 15px 30px;

  text-decoration: none;

  border-radius: 10px;

  transition: 0.3s;

  font-weight: bold;
}

.event-btn:hover {
  background: #d6d6d6;

  transform: translateY(-3px);
}

footer {
	text-align: center;
	padding: 30px;
	color: #888;
	font-size: 20px;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #111;
  color: white;
}

/* HEADER */

header {
  background: black;

  padding: 20px 40px;

  display: flex;

  justify-content: space-between;

  align-items: center;
}

nav a {
  color: white;

  text-decoration: none;

  margin-left: 20px;
}

nav a:hover {
  color: #bdbdbd;
}

/* HERO */

.gear-hero {
  text-align: center;

  padding: 100px 20px 60px;
}

.gear-hero h1 {
  font-size: 60px;

  margin-bottom: 10px;
}

.gear-hero p {
  color: #c7c7c7;

  max-width: 700px;

  margin: auto;

  line-height: 1.7;
}

/* GEAR SECTION */

.gear-container {
  padding: 40px;

  display: flex;

  flex-direction: column;

  gap: 40px;
}

.gear-card {
  background: #1b1b1b;

  border-radius: 20px;

  overflow: hidden;

  display: flex;

  flex-wrap: wrap;
}

.gear-card img {
  width: 350px;

  height: 350px;

  object-fit: cover;

  filter: grayscale(100%);
}

.gear-info {
  flex: 1;

  padding: 30px;
}

.gear-info h2 {
  margin-top: 0;

  font-size: 32px;
}

.gear-info p {
  line-height: 1.7;

  color: #d0d0d0;
}

/* BUY LINKS */

.buy-links {
  margin-top: 30px;

  display: flex;

  gap: 15px;

  flex-wrap: wrap;
}

.buy-links a {
  background: white;

  color: black;

  padding: 12px 22px;

  border-radius: 10px;

  text-decoration: none;

  font-weight: bold;

  transition: 0.3s;
}

.buy-links a:hover {
  background: #d6d6d6;

  transform: translateY(-2px);
}

.gear-card {
  transition: 0.35s;
}

.gear-card:hover {
  transform: translateY(-5px);

  box-shadow: 0 0 25px rgba(255,255,255,0.08);
}

/* IMAGE EFFECT */

.gear-card img {
  transition: 0.4s;
}

.gear-card img:hover {
  filter: grayscale(0%);

  transform: scale(1.03);
}

/* RESPONSIVE MOBILE LAYOUT */

@media (max-width: 850px) {

  .gear-card {
    flex-direction: column;
  }

  .gear-card img {
    width: 100%;

    height: 250px;
  }

}

/* OPTIONAL SECTION SPACING */

.gear-container {
  padding-bottom: 100px;
}

/* YOUTUBE BUTTON */

.youtube-button-container {
  text-align: center;

  margin-top: 30px;

  margin-bottom: 60px;
}

.youtube-btn {
  display: inline-block;

  background: white;

  color: black;

  padding: 15px 32px;

  border-radius: 12px;

  text-decoration: none;

  font-weight: bold;

  font-size: 18px;

  transition: 0.3s;
}

.youtube-btn:hover {
  background: #d6d6d6;

  transform: translateY(-3px);
}

/* FEATURED WORK */

.best-work {
  padding: 60px 0;
}

.best-work h2 {
  text-align: center;

  margin-bottom: 40px;

  font-size: 36px;
}

/* SLIDER */

.slider {
  overflow: hidden;

  width: 100%;

  position: relative;
}

/* TRACK */

.slide-track {
  display: flex;

  width: calc(350px * 12);

  animation: scroll 20s linear infinite;

  gap: 20px;
}

/* IMAGES */

.slide-track img {
  max-height: 450px;

  width: auto;

  height: auto;

  border-radius: 16px;

  filter: grayscale(0%);

  transition: 0.3s;
}

.slide-track img:hover {
  filter: grayscale(0%);

  transform: scale(1.02);
}

/* AUTO SCROLL */

@keyframes scroll {

  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-350px * 10));
  }

}

/* MOBILE OPTIMIZATION */

@media (max-width: 768px) {

  header {
    flex-direction: column;

    text-align: center;

    gap: 20px;
  }

  nav {
    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 10px;
  }

  nav a {
    margin: 0;
  }

  .hero h1,
  .gear-hero h1 {
    font-size: 40px;
  }

  .hero p,
  .gear-hero p {
    padding: 0 20px;
  }

  .slide-track img {
    max-height: 250px;
  }

  .youtube-btn,
  .event-btn,
  .buy-links a {
    width: 80%;

    text-align: center;
  }

  .gear-card {
    flex-direction: column;
  }

  .gear-card img {
    width: 100%;
  }

}

/* ABOUT SECTION */

.about-section {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 50px;

  padding: 80px 40px;

  flex-wrap: wrap;
}

/* TEXT */

.about-text {
  flex: 1;

  min-width: 300px;

  max-width: 600px;
}

.about-text p {
  line-height: 1.8;

  color: #d0d0d0;
}

/* IMAGE */

.about-image img {
  width: 400px;

  max-width: 100%;

  border-radius: 18px;

  filter: grayscale(0%);
}