/* Biserna Dolina Uvac – video-premium.css */
/* Premium video section with advanced effects */

.bdu-video-premium-section {
  position: relative;
  padding: 0;
  background: var(--charcoal);
  overflow: hidden;
  min-height: 600px;
}

.bdu-video-premium-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Video wrapper with aspect ratio */
.bdu-video-premium-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.bdu-video-premium-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Overlay gradient for text readability */
.bdu-video-premium-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(20, 30, 20, 0.3) 0%, rgba(10, 20, 10, 0.1) 50%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Content overlay on video */
.bdu-video-premium-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
  padding: 5%;
  text-align: center;
  color: var(--white);
  animation: fadeInScale 1.2s ease-out;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.bdu-video-premium-label {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
  animation: slideDown 0.8s ease-out 0.2s both;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bdu-video-premium-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1rem;
  max-width: 800px;
  animation: slideDown 0.8s ease-out 0.3s both;
}

.bdu-video-premium-title em {
  font-style: italic;
  color: var(--gold-light);
}

.bdu-video-premium-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 2rem;
  animation: slideDown 0.8s ease-out 0.4s both;
}

.bdu-video-premium-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: slideDown 0.8s ease-out 0.5s both;
}

/* Play button indicator */
.bdu-video-play-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

.bdu-video-play-icon {
  width: 60px;
  height: 60px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.bdu-video-play-icon:hover {
  border-color: var(--gold-light);
  background: rgba(201, 168, 76, 0.1);
  transform: scale(1.1);
}

.bdu-video-play-text {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* Video info cards */
.bdu-video-info-cards {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 30px 5%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  flex-wrap: wrap;
}

.bdu-video-info-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 24px;
  border-radius: 8px;
  text-align: center;
  animation: slideUp 0.8s ease-out;
}

.bdu-video-info-card:nth-child(1) { animation-delay: 0.6s; }
.bdu-video-info-card:nth-child(2) { animation-delay: 0.7s; }
.bdu-video-info-card:nth-child(3) { animation-delay: 0.8s; }

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

.bdu-video-info-card-icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.bdu-video-info-card-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4px;
}

.bdu-video-info-card-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--gold-light);
  font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .bdu-video-premium-section {
    min-height: 400px;
  }

  .bdu-video-premium-container {
    min-height: 400px;
  }

  .bdu-video-premium-wrapper {
    min-height: 400px;
  }

  .bdu-video-premium-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
  }

  .bdu-video-premium-subtitle {
    font-size: 0.95rem;
  }

  .bdu-video-info-cards {
    gap: 12px;
    padding: 20px 5%;
  }

  .bdu-video-info-card {
    padding: 12px 16px;
    font-size: 0.85rem;
  }

  .bdu-video-play-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .bdu-video-premium-section {
    min-height: 300px;
  }

  .bdu-video-premium-container {
    min-height: 300px;
  }

  .bdu-video-premium-wrapper {
    min-height: 300px;
  }

  .bdu-video-premium-content {
    padding: 3%;
  }

  .bdu-video-premium-title {
    font-size: clamp(1.2rem, 3vw, 2rem);
    margin-bottom: 0.8rem;
  }

  .bdu-video-premium-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .bdu-video-premium-ctas {
    gap: 0.8rem;
  }

  .bdu-video-info-cards {
    flex-direction: column;
    gap: 10px;
  }

  .bdu-video-play-indicator {
    bottom: 20px;
  }

  .bdu-video-play-icon {
    width: 45px;
    height: 45px;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .bdu-video-premium-section {
    background: var(--charcoal);
  }
}
