* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

/* HEADER */
header {
  width: 100%;
  background: black;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 38px;
}

.topnav a {
  color: white;
  text-decoration: none;
  margin-left: 30px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
}

.topnav a:hover {
  color: #2fd6c8;
}

/* HERO VIDEO */
.hero-video {
  width: 100%;
  height: 80vh;
  position: relative;
  overflow: hidden;
}

.video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-text {
  position: absolute;
  bottom: 40px;
  left: 40px;
  color: white;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.6);
}

.hero-text h1 {
  font-size: 50px;
  font-weight: 800;
}

.hero-text h1 span {
  color: #2fd6c8;
}

.hero-text p {
  margin-top: 8px;
  font-size: 18px;
}

/* CONTENT SECTION */
.content {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}

.content h2 {
  font-size: 30px;
  border-left: 5px solid #2fd6c8;
  padding-left: 10px;
  margin-bottom: 20px;
}

.content p {
  font-size: 17px;
  line-height: 1.6;
  color: #333;
}

/* SHOE GRID */
.shoe-grid {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.shoe-grid h2 {
  font-size: 30px;
  border-left: 5px solid #2fd6c8;
  padding-left: 10px;
  margin-bottom: 30px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.shoe img {
  width: 100%;
  border-radius: 8px;
  background: #f7f7f7;
}

.price {
  font-weight: bold;
  margin-top: 10px;
}

.name {
  margin-top: 2px;
  color: #555;
  font-size: 15px;
}

/* MOBILE */
@media (max-width: 900px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 34px;
  }
}

/* SHOE HOVER EFFECT */
.shoe img {
  width: 100%;
  border-radius: 8px;
  background: #f7f7f7;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.shoe img:hover {
  transform: scale(1.08) translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
}
