body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #1e293b;
  overflow-x: hidden;
  position: relative;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: transparent;
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo-img {
  height: 40px;
  animation: fadeIn 1s ease forwards;
}

.nav-menu {
  display: flex;
  gap: 20px;
}

.nav-menu a {
  text-decoration: none;
  color: #334155;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(-10px);
  animation: fadeSlide 0.8s ease forwards;
}

.nav-menu a:nth-child(1) { animation-delay: 0.3s; }
.nav-menu a:nth-child(2) { animation-delay: 0.4s; }
.nav-menu a:nth-child(3) { animation-delay: 0.5s; }
.nav-menu a:nth-child(4) { animation-delay: 0.6s; }
.nav-menu a:nth-child(5) { animation-delay: 0.7s; }
.nav-menu a:nth-child(6) { animation-delay: 0.8s; }

.hero {
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 80px;
  min-height: 70vh;
  z-index: 2;
  position: relative;
}

.hero-text-box {
  background: #ffffffcc;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  max-width: 500px;
  backdrop-filter: blur(4px);
}

#typing-title {
  font-size: 2rem;
  font-weight: bold;
  color: #3b82f6;
  min-height: 2.4em;
}

.hero-text-box p {
  margin-top: 16px;
  color: #475569;
  font-size: 1.05rem;
}

.cta {
  display: inline-block;
  margin-top: 30px;
  background: #3b82f6;
  color: white;
  padding: 12px 28px;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 1;
}

.cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: rgba(255, 223, 0, 0.3);
  transition: width 0.4s ease;
  border-radius: 30px;
  z-index: -1;
}

.cta:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(59,130,246,0.4);
}

.cta:hover::after {
  width: 100%;
}

/* 벌 부유 */
.bee-left {
  position: fixed;
  bottom: 20px;
  left: 10px;
  width: 500px;
  pointer-events: none;
  z-index: 1;
  animation: float 4s ease-in-out infinite;
}

.bee-right {
  position: fixed;
  top: 60px;
  right: 20px;
  width: 400px;
  pointer-events: none;
  z-index: 1;
  animation: float 3.5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes fadeSlide {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 스크롤 등장 */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 배경 꿀벌무늬 캔버스 */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* 반응형 */
@media (max-width: 768px) {
  .hero-text-box {
    margin-top: 40px;
  }

  .nav-menu {
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
  }

  .bee-left { width: 200px; }
  .bee-right { width: 160px; }
}
