/* 네비바 */
.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 10px;
  background-color: #ffffff;
  font-family: 'Segoe UI', sans-serif;
}

.nav-logo {
  padding-top: 10px;
  padding-left: 50px;
  display: flex;
  align-items: center;
}

.logo {
  width: 70px;
  height: 60px;
  margin-right: 8px;
}

.nav-menu {
  display: flex;
  padding-right: 50px;
  gap: 20px;
  font-size: 24px;
}

.nav-menu a {
  color: #888;
  text-decoration: none;
}

.nav-menu a:hover {
  color: #000;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 25%;
}

.nav-menu .disabled {
  color: #ccc;
  pointer-events: none;
}

/* Home 오버레이 */
body {
  margin: 0;
  padding: 0;
  background: #f4f4f4;
  text-align: center;
}

.home-overlay {
  position: relative;
  width: 850px;
  height: 250px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  color: white;
  text-align: center;
  margin: 30px auto 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 10px;
}
.home-overlay p {
  margin: 0 0 10px 0;
  font-size: 20px;
}
/* home 이미지 */
.image-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.image-container {
  position: relative;
  width: 500px;
}

.image-container img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border: 3px solid black;
}

.img-overlay {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  text-align: center;
  font-size: 14px;
}
.image-row-1 {
  display: flex;
  justify-content: center;
  gap: 100px;
  margin-top: 20px;
  margin-bottom: 120px;
}

.image-card {
  position: relative;
  width: 300px;
  height: auto;
  overflow: hidden;
}

.image-card img {
  width: 100%;
  display: block;
  height: 200px;
  object-fit: cover;
}

.overlay-caption {
  background: rgba(0, 0, 0, 0.7);
  color: white;
  text-align: center;
  padding: 10px 0;
  position: absolute;
  bottom: 0;
  width: 100%;
  font-size: 16px;
  font-weight: bold;
}
.img-bottom-overlay {
  background-color: white;
  color: black;
  text-align: center;
  padding: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 14px;
  width: 100%;
  height: 150px;
  box-sizing: border-box;
  min-height: 100px;
}
/* 푸터 */
.site-footer {
  margin-top: 100px;
  height: 175px;
  background-color: #ededed;
  padding: 60px;
  text-align: center;
  font-size: 14px;
  line-height: 1.4;
}

.site-footer .footer-text {
  max-width: 800px;
  margin: 0 auto 10px;
  font-size: 14px;
  color: #000000;
}

.site-footer .footer-logo {
  width: 80px;
  height: auto;
  margin: 10px;
}

.site-footer .footer-locale {
  color: #000000;
  font-size: 14px;
}
