/* ═══════════════════════════════════════
   FLOATING 버튼 — floating.css
   플로팅 SNS + 창업 플로팅
   daphone-landing-page
═══════════════════════════════════════ */

/* ── 플로팅 SNS 박스 ── */
.floating-box {
  position: fixed;
  right: 24px;
  bottom: 80px;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.floating-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--black2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  text-decoration: none;
  padding: 12px 16px;
  width: 52px;
  overflow: hidden;
  transition:
    width 0.3s ease,
    background 0.2s,
    border-color 0.2s;
  white-space: nowrap;
}
.floating-btn:hover {
  width: 160px;
  border-color: var(--gold);
}
.floating-btn__icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}
.floating-btn__label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  opacity: 0;
  transition: opacity 0.2s ease 0.1s;
}
.floating-btn:hover .floating-btn__label {
  opacity: 1;
}
.floating-btn--kakao:hover {
  background: #fee500;
  color: #000;
  border-color: #fee500;
}
.floating-btn--kakao:hover .floating-btn__label {
  color: #000;
}
.floating-btn--insta:hover {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
  border-color: #dc2743;
  color: #fff;
}
.floating-btn--naver:hover {
  background: #03c75a;
  border-color: #03c75a;
  color: #fff;
}

/* ── 창업 플로팅 ── */
.startup-float {
  position: fixed;
  right: 24px;
  bottom: 140px;
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: floatUpDown 2.5s ease-in-out infinite;
}
.startup-float__btn {
  background: linear-gradient(135deg, #f0c000, #ffd84d);
  color: #000;
  font-weight: 900;
  font-size: 0.85rem;
  text-align: center;
  padding: 16px 14px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(240, 192, 0, 0.35);
  transition: all 0.25s ease;
}
.startup-float__btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 35px rgba(240, 192, 0, 0.5);
}
.startup-float__label {
  margin-top: 6px;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 1px;
}
@keyframes floatUpDown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 900px) {
  .floating-box {
    right: 16px;
  }
}

@media (max-width: 640px) {
  .floating-box {
    display: none;
  }
  .startup-float {
    right: 16px;
    bottom: 120px;
  }
  .startup-float__btn {
    font-size: 0.8rem;
    padding: 14px 12px;
  }
}
