.location-hero-container {
  background-color: #0099ff;
  width: 100%;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.location-hero-content {
  text-align: center;
  max-width: 1200px;
  opacity: 0;
  transform: translateY(20px);
  animation: location-hero-fade-in 1s forwards 0.3s;
}

.location-hero-title {
  color: #ffffff;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.location-hero-title-accent {
  display: inline-block;
  position: relative;
}

.location-hero-title-accent::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #ffffff;
  animation: location-hero-underline 1.5s forwards 1s;
}

.location-hero-subtitle {
  color: #ffffff;
  font-size: 24px;
  font-weight: 400;
  opacity: 0;
  animation: location-hero-fade-in 1s forwards 0.8s;
}

@keyframes location-hero-fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes location-hero-underline {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* 반응형 스타일 */
@media (max-width: 768px) {
  .location-hero-container {
    padding: 60px 15px;
  }
  
  .location-hero-title {
    font-size: 36px;
  }
  
  .location-hero-subtitle {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .location-hero-container {
    padding: 40px 10px;
  }
  
  .location-hero-title {
    font-size: 28px;
  }
  
  .location-hero-subtitle {
    font-size: 16px;
  }
}