/* 更新header样式 */
header {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
/* Custom styles to complement Tailwind */
.hero-slider {
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.wine-card {
  transition: transform 0.3s ease;
}

.wine-card:hover {
  transform: translateY(-5px);
}

/* Mobile menu animation */
#mobile-menu {
  transition: all 0.3s ease;
}

/* 视频部分样式 */
.aspect-w-16 {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
}

.aspect-w-16 > div {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

/* 宽图做处理 */
/* 仅对手机（宽度 ≤ 767px）生效 */
@media (max-width: 767px) {
  .height-adaptive {
    height: 40vh;
  }
  .pic-adaptive {
      object-fit: contain;
  }
}