/*!********************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[10].use[3]!./app/_components/BeverageSlider.css ***!
  \********************************************************************************************************************************************************************************************************************************************************************************/
.bev-slider {
  width: 100%;
  height: 600px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.bev-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: all 0.8s ease;
}

.bev-slide.active {
  opacity: 1;
  transform: scale(1);
}

.bev-content {
  position: absolute;
  bottom: 60px;
  left: 60px;
  color: white;
  max-width: 350px;
}

.bev-content h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.bev-content p {
  font-size: 16px;
  margin-bottom: 15px;
}

.bev-content button {
  padding: 10px 20px;
  border: none;
  background: #ff4d00;
  color: white;
  border-radius: 25px;
  cursor: pointer;
}

.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: white;
  font-size: 26px;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 50%;
}

.prev { left: 15px; }
.next { right: 15px; }

.nav:hover {
  background: rgba(0,0,0,0.8);
}

