/* 비디오 섹션 */
.hero-section {
  position: relative;
  overflow: hidden;
  height: 600px;
  
}

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

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2); /* 검정 반투명 */
  z-index: 2;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  width: 100%;
  z-index: 98;
}

.hero-text h1 {
  font-size: 48px;
  line-height: 1.4;
  padding-bottom: 40px;
  font-weight: 600;
}
.hero-text h2{
  padding-bottom: 20px;
  font-size: 36px;
  font-weight: 600;
}
.hero-text h3 img{
  width: 300px;
}
.brand-logos img {
  width: 224px;
  margin: 0 10px;
  vertical-align: middle;
}
.br_none{
  display: none;
}

/* 카테고리 섹션 */
.category-section {
  padding: 4rem 0 8rem;
  text-align: center;
  position: relative;
}

.category-section h2 {
  font-size: 36px;
  margin-bottom: 2rem;
  font-weight: 500;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(262px, 1fr));
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.category-item {
  overflow: hidden;
  transition: transform 0.3s ease;
  cursor: pointer;
  position: relative;
}

.category-item span {
  display: block;
  padding: 1rem;
  color: #fff;
  font-weight: 500;
  position: absolute;
  bottom: 0;
  display: block;
  text-align: center;
  width: 100%;
  padding-bottom: 28px;
  font-size: 20px;
}

.category-item:hover {
  transform: translateY(-5px);
}

.category-item img {
  width: 100%;


}





@media (max-width: 1660px) {
  .hero-text{
    padding: 0 1rem;
  }
  .hero-text h1{
    font-size: 36px;
  }
  .brand-logos img {
    width: 200px;
  }
  .category-section {
    padding: 4rem 1rem 8rem;
  }
  .category-section h2 {
    font-size: 28px;
  }
  .category-grid{
    gap: 1rem;
  }
  .br_none{
  display: block;
}

