/* 기본 스타일 */
body {
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans KR', sans-serif;
  background-color: #fff;
  color: #333;
}
.image-modal{
	display:none;
}
.site-header{
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}
.container{
	width:100%;
	max-width:1920px;
    background:#000;
    margin: 0 auto;
}
.container .menu{
    width: 100%;
}
.pc-header {
  max-width: 1920px;
  width:1080px;
  margin: 0 auto;
  padding: 10px 0;
  display:flex;
  flex-direction:row;
  flex-wrap: nowrap;
  box-sizing:border-box;
  gap:50px;
  box-sizing: border-box;
}
.container h1{
	margin:0;
	padding:0;
}
.container .logo{
	width:200px;
}
.container .logo a img{
	width:100%;
}
.container .logo a{
	display:block;
}
.container .menu{
	width:880px;
}
.site-footer {
  background-color: #222;
  color: #fff;
  padding: 20px 0;
}

.site-header .logo a {
  font-size: 1.5em;
  color: white;
  text-decoration: none;
}

.main-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
    flex-wrap: nowrap;
}
.main-nav ul li{
	width:20%;
	text-align:center;
}
.main-nav ul li.tellephon-no{
	line-height:25px;
	font-size:20px;
	margin-top:5px;
	text-align:right;
}
.main-nav ul li a{
	line-height:70px;
	display:inline-block;
	text-align:center;
	color:#ccc;
	font-size:16px;
}
.main-nav ul li a:hover{
	color:#fff;
}

.main-nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* [1] PC 기본에서는 모바일 요소 숨김 */
.mobile-header,
.mobile-slide-menu {
  display: none;
}
.site-footer {
    font-size: 0.9em;
    text-align: center;
    padding: 30px 15px;
    background-color: #111; /* 더 세련된 딥블랙 */
    color: #ddd; /* 너무 새하얗지 않고 부드러운 회색톤 */
    line-height: 1.8;
}

.site-footer a {
    color: #00bcd4; /* 포인트 컬러 (밝은 하늘색 계열) */
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-container p {
    margin: 8px 0;
    font-size: 0.95em;
}

.footer-container .bigfont {
    font-size: 1.1em;
    font-weight: 600;
}

.footer-container .pc-version {
    display: inline;
}

.footer-container .mobile-version {
    display: none;
}

/* 관리자 링크 스타일 */
.admin-links {
    margin-top: 20px;
}

.footer-btn {
    display: inline-block;
    margin: 5px 8px;
    padding: 8px 16px;
    background-color: #00bcd4;
    color: #111;
    border-radius: 20px;
    font-size: 0.9em;
    transition: background-color 0.3s;
}

.footer-btn:hover {
    background-color: #0097a7;
}

/* 반응형 */
@media (max-width: 768px) {
    .footer-container .pc-version {
        display: none;
    }
    .footer-container .mobile-version {
        display: inline;
    }
}

/* [2] 모바일 해상도에서는 보여줌 */
@media (max-width: 768px) {
	/* 이미지 모달 기본 숨김 */
	.image-modal {
	  display: none; 
	  position: fixed; 
	  z-index: 10000; 
	  left: 0;
	  top: 0;
	  width: 100%; 
	  height: 100%; 
	  overflow: auto; 
	  background-color: rgba(0,0,0,1); /* 반투명 배경 */
	  align-items: center;
	  justify-content: center;
	}

	.image-modal-content {
	  margin: auto;
	  display: block;
	  max-width: 95%;
	  max-height: 95%;
	}

	.image-modal-close {
	  position: absolute;
	  top: 20px;
	  right: 30px;
	  color: #fff;
	  font-size: 40px;
	  font-weight: bold;
	  cursor: pointer;
	}

  /* PC 메뉴 숨김 */
  .pc-nav,
  .container {
    display: none !important;
  }

  .mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background-color: #222;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
  }
  .mobile-logo img{
	  height:30px;
	  padding:5px 0;
  }
  .mobile-icons {
    display: flex;
    align-items: center;
    gap: 10px;
	height:44px;
  }
  .mobile-icons a{
    display: inline-block;
	background:#00bcd4;
	border-radius:50%;
	text-align:center;
  }
  .call-icon i {
    font-size: 20px;
	padding:8px;
    color: #fff;
  }

  .hamburger {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 30px;
	padding:5px;
    color: white;
  }

  /* 슬라이드 메뉴 */
  .mobile-slide-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 70%;
    height: 100%;
    background-color: #333;
    transform: translateX(100%); /* 처음에 오른쪽 밖으로 숨김 */
    transition: transform 0.3s ease-in-out;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    padding-top: 80px; /* 헤더 공간 */
  }

  .mobile-slide-menu.active {
    transform: translateX(0); /* 슬라이드 인 */
  }

  .mobile-slide-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .mobile-slide-menu ul li {
    border-bottom: 1px solid #444;
  }

  .mobile-slide-menu ul li a {
    display: block;
    padding: 20px;
    color: #fff;
    text-decoration: none;
    font-size: 1.2em;
  }

  .mobile-slide-menu ul li a:hover {
    color: #fff;
    background-color: #444;
  }

}
