/* ==============================
   초기화 & 공통
   ============================== */
* { box-sizing: border-box; margin: 0; padding: 0 }
body {
  font-family: 'Noto Sans KR', sans-serif;
  color: #333;
  line-height: 1.5;
  padding-top: 64px;    /* 헤더 높이 확보 */
  padding-bottom: 80px; /* 푸터 높이 확보 */
}
a { text-decoration: none; color: inherit }
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.btn {
  display: inline-block;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s;
}

/* ==============================
   헤더(Header) 고정
   ============================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 64px;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 1000;
}
.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 1px;
}
.btn.kakao-login {
  background: #FEE500;
  color: #3C1E1E;
  border: none;
  padding: 8px 16px;
  font-size: 0.875rem;
}
.btn.kakao-login:hover {
  background: #ffd800;
}

/* ==============================
   메인(Main) · 점검중(Maintenance)
   ============================== */
.site-main {
  min-height: calc(100vh - 64px - 80px);
}
.maintenance-section {
  display: flex;
  align-items: center;
  justify-content: center;  /* 가로 중앙 정렬 */
  height: 100%;
  text-align: center;
}
.maintenance-message {
  font-size: 2.5rem;        /* 폰트 크기 2.5rem로 조정 */
  color: #333;
  line-height: 1.6;
}

/* ==============================
   푸터(Footer) 고정 & 왼쪽 정렬
   ============================== */
.site-footer {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #f8f8f8;
  border-top: 1px solid #e0e0e0;
  padding: 24px 0;
  z-index: 999;
}
.footer-content {
  display: flex;
  justify-content: flex-start;
}
.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-logo {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 8px;
}
.footer-info {
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
  text-align: left;
}
.footer-info li {
  margin-bottom: 4px;
  line-height: 1.4;
}
.footer-info a { text-decoration: underline }
.footer-copy {
  font-size: 0.75rem;
  color: #888;
}

/* ==============================
   반응형(Responsive)
   ============================== */
@media (max-width: 768px) {
  .maintenance-section { min-height: 50vh }
}
