/* ── RESET & BASE ── */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html, body {
  width: 100%;
  height: 100%;
}
body {
  font-family: Arial, sans-serif;
  background: #FFFDF8;           /* index.html 과 동일한 바디 컬러 */
  color: #333;
  overflow-x: hidden;
}

/* ── TOP BAR & NAV ── */
.top-bar {
  background: #F8893F;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Tahoma, sans-serif;
  color: #fff;
  font-size: 13px;               /* index.html 과 동일 */
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
}
.nav {
  background: #fcf4eb;
  height: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
  position: fixed;
  top: 40px; left: 0; right: 0;
  z-index: 1000;
  border-top: 1px solid #FFF4E9;
}
.nav img {
  height: 40px;
  margin-left: 10px;
  transform: translateX(-10px);
}
.nav-menu {
  display: flex;
  gap: 30px;
  padding-top: 15px;
}
.nav-menu a {
  font-size: 18px;
  font-weight: 500;
  color: #f8893f;
  text-decoration: none;
  transition: color .2s, font-weight .2s;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: #ae5d1e;
  font-weight: 600;
}

/* ── FOOTER (index.html 과 동일) ── */
footer {
  background: #413c37c5;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 100px 20px 60px;
}
footer img {
  height: 60px;
  margin-bottom: 50px;
}
footer p {
  color: #bab6b6;
  line-height: 1.6;
}
footer p:first-of-type {
  font-size: 17px;
  margin-bottom: 10px;
}
footer p:last-of-type {
  font-size: 15px;
}
