
@font-face {
	font-family: 'Pretendard';
	src: url('./fonts/PretendardVariable.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

body {
	font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
    background-color: #1d1d1d;
}


/* Side Navigation */
.side-nav {
    height: 100%;
    width: 250px;
    position: fixed;
    z-index: 200;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
    transform: translateX(-250px); /* 처음에는 화면 왼쪽에 숨김 */
}

.side-nav.open {
    transform: translateX(0); /* open 클래스가 추가되면 보이도록 설정 */
}

.side-nav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.side-nav a:hover {
    color: #f1f1f1;
}

.side-nav .close-btn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}









header {
    border: none;
    width: 100%; /* 100vw 대신 100% 사용 */
    position: fixed; /* relative에서 fixed로 변경 */
    top: 0; /* 상단에 고정 */
    left: 0; /* 좌측에 고정 */
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10px; /* 상하 패딩 추가 */
    background-color: #ffffff; /* 반투명 검정 */
    z-index: 100; /* 다른 요소들보다 뒤에 위치 */
}

.header-left span,
.header-right img {
  height: 40px;         /* 원하는 동일 높이로 지정 */
  vertical-align: middle;
  display: inline-block;
  line-height: 1;
}

.header-center img {
  height: 60px; /* 로고만 더 크게 */
  vertical-align: middle;
  display: inline-block;
  line-height: 1;
}

.header-left span {
  font-size: 40px;      /* 아이콘 크기도 맞춰줌 */
}

.menu-btn {
	background: none;
	border: none;
	font-size: 2rem;
	cursor: pointer;
	color: #000000;
}








.gallery {
  display: flex; /* 갤러리 컨테이너를 flexbox로 만듦 (가로 정렬) */
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px; /* 최대 너비 1000px로 제한 */
  flex-wrap: wrap; /* 줄이 넘치면 다음 줄로 자동 이동 */
  gap: 16px; /* 이미지 사이의 간격을 16px로 설정 */
  justify-content: center; /* 이미지를 가로 중앙 정렬 */
  margin-top: 120px; /* 위쪽에 80px 여백(헤더 아래 공간 확보) */
}

.gallery img {
  flex: 0 0 calc(50% - 16px); /* 한 줄에 2개씩, 각 이미지의 너비를 50% - 16px로 고정 */
  max-width: 400px; /* 최대 너비 400px로 제한 */
  width: 100%; /* flex-basis에 맞춰 100%로 채움 */
  height: auto; /* 이미지 비율 유지하며 높이 자동 조정 */
}

@media (max-width: 600px) {
  .gallery img {
    flex: 0 0 100%; /* 모바일에서는 한 줄에 1개(100% 너비) */
    max-width: 100%; /* 최대 너비 100%로 제한 */
    width: 100%; /* 부모(.gallery)의 너비를 꽉 채움 */
  }
}











footer {
	text-align: center;
	padding: 20px;
	background-color: transparent;
	color: #ffffff;
	font-size: 60%;
}