/* =============================================
   08_footer / footer.css
   ✏️ 배경색, 텍스트 크기·색상 수정
   ============================================= */

@import '../00_shared/variables.css';

/* ===== 푸터 래퍼 ===== */
footer {
  background: #060f1e;   /* ✏️ 푸터 배경 (더 진한 네이비) */
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid rgba(201,168,76,0.1);
}

/* ✏️ 브랜드명 텍스트 */
.footer-logo {
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

/* ✏️ 사업자 정보 텍스트 */
.footer-info {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ✏️ 저작권 텍스트 */
.footer-copy {
  font-size: 0.7rem;
  color: #3a4a5a;
  margin-top: 16px;
}
.footer-links{
  margin-top:18px;
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
}

.footer-links button{
  background:none;
  border:none;
  color:#c9a84c;
  font-size:13px;
  cursor:pointer;
}

.footer-links button:hover{
  text-decoration:underline;
}

.info-modal{
  display:none;
  position:fixed;
  z-index:9999;
  left:0;
  top:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.65);
  justify-content:center;
  align-items:center;
}

.info-modal-content{
  width:90%;
  max-width:520px;
  max-height:75vh;
  overflow-y:auto;
  background:#fff;
  color:#222;
  border-radius:18px;
  padding:34px 28px;
  position:relative;
  line-height:1.7;
}

.info-modal-content h3{
  font-size:22px;
  margin-bottom:18px;
  color:#111;
}

.info-modal-content p{
  font-size:14px;
  color:#444;
  margin-bottom:12px;
}

.info-close-btn{
  position:absolute;
  top:14px;
  right:18px;
  border:none;
  background:none;
  font-size:28px;
  color:#222;
  cursor:pointer;
}