/* Wishes Slider Styles */

/* === Wishes Slider === */
.wishes-slider {
  width: 100%;
  position: relative;
  padding: 30px 20px;
  min-height: 65vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wish-slide {
  width: 100%;
  display: none;
  animation: wishSlideIn 0.8s ease;
  padding: 20px;
  max-width: 800px;
  margin: 0 auto;
}

@keyframes wishSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wish-slide:first-child {
  display: block;
}

.wish-content {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 350px;
}

.wish-icon-large {
  font-size: 5rem;
  margin-bottom: 25px;
  display: inline-block;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.15));
  animation: wishIconPulse 2s infinite alternate;
}

@keyframes wishIconPulse {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}

.wish-title {
  font-size: 2rem;
  color: white;
  margin-bottom: 20px;
  font-weight: 600;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.wish-text-large {
  width: 100%;
}

.wish-text-large p {
  font-size: 1.3rem;
  line-height: 1.6;
  color: white;
  font-weight: 500;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.wish-navigation {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  margin: 15px auto;
  max-width: 800px;
}

.wish-nav-button {
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50px;
  color: white;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 8px;
}

.wish-nav-button:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.wish-nav-button:active {
  transform: translateY(0);
}

.wish-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.wish-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.wish-dot.active {
  width: 20px;
  border-radius: 10px;
  background: white;
}

/* Final Wish Slide */
.wish-final {
  text-align: center;
}

.wish-finale-content {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.wish-candle {
  position: relative;
  width: 100px;
  height: 180px;
  margin: 0 auto 40px;
}

.wish-candle-base {
  width: 50px;
  height: 140px;
  background: linear-gradient(to bottom, #f8f9fa, #e2e2e2);
  border-radius: 8px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.wish-flame {
  width: 35px;
  height: 70px;
  background: linear-gradient(to top, #ff9800, #ffeb3b);
  border-radius: 50% 50% 20% 20%;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(8px);
  box-shadow: 0 0 30px #ff9800, 0 0 50px rgba(255, 152, 0, 0.6);
  animation: wishFlicker 1.5s infinite alternate;
  transform-origin: center bottom;
}

@keyframes wishFlicker {
  0% {
    transform: translateX(-50%) scale(0.85) rotate(-2deg);
    opacity: 0.8;
  }
  25% {
    transform: translateX(-50%) scale(1.15) rotate(1deg);
    opacity: 1;
  }
  50% {
    transform: translateX(-50%) scale(0.95) rotate(-1deg);
    opacity: 0.85;
  }
  75% {
    transform: translateX(-50%) scale(1.05) rotate(2deg);
    opacity: 0.95;
  }
  100% {
    transform: translateX(-50%) scale(0.9) rotate(0);
    opacity: 0.8;
  }
}

.wish-finale-title {
  font-size: 3rem;
  background: linear-gradient(45deg, #ff6b6b, #ff9a8b, #fda403, #e84a5f);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 15px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
  font-weight: 700;
  letter-spacing: 1px;
  animation: titleGradient 5s ease infinite;
}

.wish-finale-subtitle {
  font-size: 1.3rem;
  color: white;
  margin-bottom: 35px;
  font-weight: 500;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Responsive styles for mobile */
@media (max-width: 768px) {
  .wish-content {
    padding: 30px 20px;
    min-height: 300px;
  }

  .wish-icon-large {
    font-size: 4rem;
    margin-bottom: 20px;
  }

  .wish-title {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }

  .wish-text-large p {
    font-size: 1.1rem;
  }

  .wish-navigation {
    padding: 0 15px;
    margin-top: 10px;
  }

  .wish-nav-button {
    padding: 10px 15px;
    font-size: 0.9rem;
  }

  .wish-dot {
    width: 8px;
    height: 8px;
  }

  .wish-finale-title {
    font-size: 2.3rem;
  }

  .wish-finale-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
}

/* Small phone adjustments */
@media (max-width: 380px) {
  .wish-icon-large {
    font-size: 3.5rem;
  }

  .wish-title {
    font-size: 1.4rem;
  }

  .wish-text-large p {
    font-size: 1rem;
  }

  .wish-finale-title {
    font-size: 2rem;
  }
}
