body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #111;
}

/* 오른쪽 위에 떠 있는 메뉴 컨테이너 */
.floating-menu {
  position: fixed;
  top: 40px;
  right: 40px;
  z-index: 1000;
  text-align: right;
  font-family: system-ui, sans-serif;
}

/* 메뉴 버튼 */
.menu-toggle {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* + / - 아이콘 */
.menu-toggle__icon {
  font-size: 12px;
}

/* 오른쪽 위 메뉴 전체 위치 */
.floating-menu {
  position: fixed;
  top: 40px;
  right: 40px;
  z-index: 1000;
  text-align: right;
}

/* 버튼은 배경/테두리 없이, 이미지 자체만 보이게 */
.menu-toggle {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

/* 아이콘 공통 */
.menu-icon {
  display: block;
  width: 43px;    /* 아이콘 크기 조절 */
  height: auto;
}


.menu-panel {
  position: absolute;
  top: 40px;
  right: 0;
 /* 완전 투명도 조절 가능 */
  background: rgba(255, 255, 255, 0); 
  /* 0 = 완전 투명, 1 = 완전 불투명 → 0.6~0.8 추천 */
  border-radius: 0px;
  padding: 8px 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0);

  max-height: 0;          /* 높이 0 */
  overflow: hidden;       /* 넘치는 내용은 가림 */
  opacity: 0;             /* 투명 */
  pointer-events: none;   /* 클릭도 안 됨 */
  transition: max-height 0.25s ease, opacity 0.25s ease;
  min-width: 140px;
  z-index: 10;
}

/* 🔹 open 클래스가 붙었을 때만 펼쳐지면서 보이게 */
.menu-panel.open {
  max-height: 300px;
  opacity: 1;
  pointer-events: auto;
}

/* 메뉴 링크들 */
.menu-panel a {
  display: block;
  font-size: 12px;
  text-decoration: none;
  color: #111;
  padding: 4px 0;
}
.menu-panel a:hover {
  opacity: 0.7;
}

/* 기본 링크 스타일 */
a {
  color: inherit;               /* 주변 텍스트 색을 그대로 따라감 */
  text-decoration: none;        /* 밑줄 제거 */
  cursor: pointer;
  transition: opacity 0.2s ease, color 0.2s ease;
}





/* 기본 여백 제거 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, sans-serif;
}


/* 로고 겹치기 */
.floating-logo {
  position: fixed;
  top: 40px;
  left: 40px;
  z-index: 1000;
}

.floating-logo img {
  width: 150px;
  height: auto;
}


/* 텍스트 설정 */

h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
  color: #222121;
}

p {
  font-size: 10px;
  margin-bottom: 18px;
  color: #555;
}


.floating-logo img {
  width: 180px;
  height: auto;
}

/* 카피라이트 */
.site-footer {
  text-align: right !important;
  margin-top: 40px;
  font-size: 12px;
  color: #777;
  margin: 100px 80px 30px 0;  /* 상 우 하 좌 */
  padding: 20px 0;
   border-top: none !important;
}


/* --------------------------------------
   MOBILE (≤ 768px)
-------------------------------------- */
@media (max-width: 768px) {

  /* 로고 위치 & 크기 (모바일에서 약간 크게, 왼쪽 정렬 보정) */
  .floating-logo {
    top: 18px;
    left: 16px;
  }

  .floating-logo img {
    width: 140px;   /* 모바일에서 로고 조금 크게 */
  }

  /* 메뉴 위치 & 크기 */
  .floating-menu {
    top: 20px;
    right: 16px;
  }

  .menu-icon,
  .menu-toggle img {
    width: 32px;    /* 모바일에서 메뉴 아이콘 작게 */
    height: auto;
  }

  .menu-panel {
    top: 32px;      /* 버튼 바로 아래에 메뉴가 뜨도록 */
    right: 0;
  }
}