
body {
  font-family: 'Noto Sans KR', sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background: #faf8f5;
}
section {
  padding: 40px 20px;
  text-align: center;
  width: 100%;
  max-width: 670px;
  margin: 0 auto;
  box-sizing: border-box;
}
.hero {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}
.hero h1 { font-size: 2.5rem; margin: 0; }
.hero h2 { font-size: 1.5rem; font-weight: 400; margin: 10px 0; }
.hero p { margin: 5px 0; }
.map-buttons a {
  display: inline-block;
  margin: 10px;
  padding: 12px 20px;
  background: #f4f4f4;
  border-radius: 50px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: all 0.3s ease;
}
.map-buttons a:hover {
  background: #ddd;
}
.swiper-slide img {
  width: 100%;
  border-radius: 10px;
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.footer { padding: 20px 0; font-size: 1rem; color: #777; }
/* Thumbs Swiper custom */
.thumbs-custom {
  padding-top: 10px;
  height: 100px;
  box-sizing: border-box;
}
.thumbs-custom .swiper-wrapper {
  padding-right: 30px;
}
.thumbs-custom .swiper-slide {
  width: 120px !important;
  height: 90px;
  flex: 0 0 auto;
  opacity: 0.4;
  transition: opacity 0.3s;
}
.thumbs-custom .swiper-slide-thumb-active {
  opacity: 1;
}
.thumbs-custom .swiper-slide img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 6px;
}
