@import url('variables.css');

.vip-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 60px auto;
  max-width: 600px;
  padding: 30px 0px;
  background-color: var(--ji-card);
  border-radius: 12px;
  box-shadow: var(--ateam-shadow);
  opacity: 0.9;
  overflow: hidden;
  z-index: 1;
}

.vip-carousel {
  overflow: hidden;
  width: 100%;
  max-width: 700px;
}

.vip-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.vip-buttons-row {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 0 20px;
  box-sizing: border-box;
}

.vip-arrow {
  color: white;
  border: none;
  font-size: 20px;
  cursor: pointer;
  z-index: 2;
}

.vip-arrow.left {
  position: absolute;
  left: 0px;
  bottom: 0px;
  padding: 1.8px 125px 1.8px 25px;
  background: linear-gradient(90deg, #314269, var(--ji-card));
  border-right: 2px var(--bg);
  transition: background 0.3s ease;
}
.vip-arrow.left:hover {
  background: linear-gradient(90deg, #617299, var(--ji-card));
}

.vip-arrow.right {
  position: absolute;
  right: 0px;
  bottom: 0px;
  padding: 1.8px 25px 1.8px 125px;
  background: linear-gradient(90deg, var(--ji-card), #314269);
  border-left: 2px var(--bg);
  transition: background 0.3s ease;
}
.vip-arrow.right:hover {
  background: linear-gradient(90deg, var(--ji-card), #617299);
}

.btn-buy {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background-color: var(--btn-buy);
  color: white;
  font-size: 20px;
  text-decoration: none;
  padding: 5px 25px;
  border-radius: 6px;
  font-weight: 400;
  transition: background-color 0.3s ease, transform 0.3s ease;
  transform: scale(1); /* Výchozí velikost */
}
.btn-buy:hover {
  background-color: #8a5b5b;
  transform: scale(1.07); /* Zvětšení o 5 % */
  background-color: var(--btn-buy-hover);
}

/* ===== VIP CARD ===== */
.vip-card,
.vip-card-final {
  flex: 0 0 100%;
  padding: 15px 20px 45px;
  position: relative;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  background-color: var(--vip-card-bg);
  box-shadow: 0 -4px 10px var(--ateam-shadow);
  color: var(--text-h3);
}
.vip-card-final {
  min-height: 100px;
  max-height: 230px;
  min-width: 500px;
  padding-bottom: 70px;
}

.vip-card ol,
.vip-card-final ol {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.vip-card h3, .vip-card-final  h3 {
  color: var(--text-h3);
  transition: color 0.3s ease;
}
.vip-card ol li,
.li-final {
  color: var(--text);
  font-size: 18px;
}
.li-final {
  margin-bottom: 20px;
  font-size: 15px;
}

/* ===== PRICE BADGE ===== */
.p-price {
  position: absolute;
  left: 35px;
  bottom: -10px;
  font-size: 18px;
  padding: 5px 12px;
  color: var(--p-price);
  background-color: var(--p-price-bg);
  border: 2px dashed rgb(2, 27, 29);
  border-radius: 12px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease, box-shadow 0.2s ease, transform 0.3s ease, color 0.3s ease;
}
.p-price:hover {
  transform: scale(1.05);
  box-shadow: 2px 4px 8px rgba(247, 255, 2, 0.15);
  background-color: var(--p-price);
  color: var(--p-price-hover);
}

/* ===== HERO SECTION (PARALLAX) ===== */
.shop-hero,
.shop-vip-hero1,
.shop-vip-hero2 {
  position: relative;
  height: 75vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shop-hero::before,
.shop-vip-hero1::before,
.shop-vip-hero2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.shop-hero-content,
.shop-vip-hero1-content,
.shop-vip-hero2-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
  margin-left: 75px;
  color: var(--text);
}
.shop-hero h1 {
  color: aliceblue;
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.shop-vip-hero1 h1,
.shop-vip-hero2 h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.shop-hero p {
  color: aliceblue;
}
.shop-hero p,
.shop-vip-hero1 p,
.shop-vip-hero2 p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* Specifické pozadí */
.shop-hero {
  background-image: url('./../images/vip_bg1.jpg');
}
.shop-vip-hero1 {
  background-image: url('./../images/vip_bg.jpg');
}
.shop-vip-hero2 {
  background-image: url('./../images/A10_2.jpg');
}


@media (max-width: 768px) {
  .shop-hero, .shop-vip-hero1, .shop-vip-hero2 {
    flex-direction: column;
    height: auto;
    padding: 40px 20px;
  }

  .shop-hero-content {
    margin-left: 0;
    margin-bottom: 30px;
    text-align: center;
  }

  .shop-hero h1 {
    font-size: 1.8rem;
  }

  .shop-hero p {
    font-size: 0.9rem;
  }

  .vip-carousel-wrapper {
    margin: 0 auto 60px;
    width: 100%;
    max-width: 90vw;
    padding: 20px 0px 50px;
  }

  .vip-arrow.right {
    padding: 12.5px 25px 12.5px 100px;
  }
  .vip-arrow.left {
    padding: 12.5px 100px 12.5px 25px;;
  }

  .vip-card-final {
    min-width: 90%;
    font-size: 18px;
    padding: 10px 15px 60px;
  }
}
