/* Hero Section */
#hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

#hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 76, 129, 0.7);
}

.hero-content {
  max-width: 800px;
  padding: 0 var(--space-lg);
  z-index: 1;
  position: relative;
  animation: fadeIn 1.5s ease;
}

.catchphrase {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: var(--space-xl);
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.catchphrase span {
  color: var(--accent-color);
}

.hero-content p {
  font-size: var(--h4-size);
  margin-bottom: var(--space-xl);
  opacity: 0.9;
}

.hero-content .btn {
  padding: var(--space-md) var(--space-xxl);
  font-size: 1rem;
  font-weight: 700;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: bounce 2s infinite;
  color: var(--white);
  cursor: pointer;
}

.scroll-indicator span {
  font-size: var(--small-size);
  margin-bottom: var(--space-sm);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-indicator i {
  font-size: 1.2rem;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Responsive */
@media (max-width: 992px) {
  .catchphrase {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .catchphrase {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .catchphrase {
    font-size: 1.75rem;
  }
  
  .hero-content {
    padding: 0 var(--space-md);
  }
}