/* ============================================================
   COCOBISLA HERO SECTION
   Full-screen video background with Ken Burns zoom effect
   ============================================================ */

.cocobisla-hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}

/* Video Background */
.cocobisla-hero__video {
  position: absolute;
  inset: -4%;
  width: 108%;
  height: 108%;
  object-fit: cover;
  display: block;
  animation: slowZoom 18s ease-in-out infinite alternate;
  filter: brightness(0.78) saturate(1.05);
}

/* Overlay Gradients */
.cocobisla-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(28, 28, 28, 0.6) 2%,
    rgba(28, 28, 28, 0.12) 45%,
    rgba(28, 28, 28, 0.42) 100%
  );
  z-index: 2;
}

/* Video Indicator Badge */
.cocobisla-hero__video-badge {
  position: absolute;
  top: 96px;
  right: 22px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(28, 28, 28, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  padding: 8px 14px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cocobisla-hero__video-badge::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  animation: pulse 2s ease-in-out infinite;
}

/* Hero Content Container */
.cocobisla-hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 22px;
  padding: 0 24px;
  z-index: 3;
  animation: fadeUp 1.2s ease both;
}

/* Location Tag */
.cocobisla-hero__location {
  margin: 0;
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

/* Main Headline */
.cocobisla-hero__headline {
  margin: 0;
  color: var(--color-white);
  font-size: clamp(26px, 4.6vw, 52px);
  font-weight: 200;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1.4;
  max-width: 18em;
  text-wrap: balance;
}

/* Subheadline / Description */
.cocobisla-hero__description {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 300;
  max-width: 32em;
  line-height: 1.75;
}

/* Hero CTA Button */
.cocobisla-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 17px 34px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--color-white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-base);
  border-radius: 0;
}

.cocobisla-hero__cta:hover {
  background: var(--color-primary);
  color: var(--color-charcoal);
  border-color: var(--color-primary);
}

/* Scroll Indicator */
.cocobisla-hero__scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.7);
  z-index: 4;
  animation: bounce 2s ease-in-out infinite;
}

.cocobisla-hero__scroll-indicator-text {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.cocobisla-hero__scroll-indicator-line {
  width: 1px;
  height: 26px;
  background: var(--color-primary);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

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

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */

@media (max-width: 1024px) {
  .cocobisla-hero__headline {
    max-width: 16em;
  }

  .cocobisla-hero__description {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .cocobisla-hero {
    min-height: 500px;
  }

  .cocobisla-hero__video-badge {
    top: 80px;
    right: 16px;
    font-size: 8px;
    padding: 6px 12px;
  }

  .cocobisla-hero__content {
    padding: 0 16px;
  }

  .cocobisla-hero__headline {
    font-size: clamp(20px, 3.5vw, 40px);
    max-width: 20em;
  }

  .cocobisla-hero__description {
    font-size: 12px;
    max-width: 28em;
  }

  .cocobisla-hero__cta {
    padding: 14px 28px;
    font-size: 9px;
  }

  .cocobisla-hero__scroll-indicator {
    bottom: 16px;
  }
}

@media (max-width: 480px) {
  .cocobisla-hero {
    min-height: 420px;
  }

  .cocobisla-hero__video-badge {
    top: 70px;
    right: 12px;
    font-size: 7px;
    padding: 5px 10px;
  }

  .cocobisla-hero__headline {
    font-size: clamp(18px, 2.8vw, 32px);
    letter-spacing: 0.18em;
  }

  .cocobisla-hero__description {
    font-size: 11px;
  }

  .cocobisla-hero__cta {
    padding: 12px 24px;
    font-size: 8px;
    letter-spacing: 0.2em;
  }

  .cocobisla-hero__scroll-indicator-line {
    height: 20px;
  }

  .cocobisla-hero__scroll-indicator-text {
    font-size: 8px;
  }
}

@media print {
  .cocobisla-hero {
    display: none;
  }
}
