/* Hero Section Styles */
.hero {
  position: relative;
  height: 100vh;
  background: url("./assets/images/tour/7.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 20px;
  max-width: 800px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.typing-text {
  min-height: 3rem;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cursor {
  animation: blink 0.7s infinite;
}

.btn-hero {
  padding: 12px 30px;
  font-size: 1.2rem;
  background-color: #0054d3;
  color: white;
  border: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .typing-text {
    font-size: 1.2rem;
    min-height: 2rem;
  }
}
