/* 리셋 */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; background: #fff; }

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans KR", sans-serif;
}

/* ✅ 원형 로고 */
.logo-wrap {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
  background-color: aliceblue;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ✅ 아이콘 배치 */
.icon-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
}

.icon-row img {
  width: 80px;
  height: 80px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.icon-row img:hover {
  transform: scale(1.1);
  opacity: 0.9;
}

/* ✅ 반응형 */
@media (max-width: 600px) {
  .logo-wrap {
    width: 150px;
    height: 150px;
    margin-bottom: 40px;
  }
  .icon-row { gap: 25px; }
  .icon-row img { width: 60px; height: 60px; }
}

/* ✅ 푸터 */
footer {
  font-size: 0.8rem;
  color: #888;
  margin-top: 20px;
}
