/*** font ***/
@import url('https://fonts.googleapis.com/css2?family=Montserrat&family=Noto+Sans+KR&family=Orbitron:wght@700&display=swap');



* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Noto Sans CJK KR', sans-serif;
  padding: 0;
  height: 100vh;

}



.content222 {
  position: fixed;
  /* 화면에 고정 */
  bottom: 0;
  /* 하단에 위치 */
  left: 0;
  width: 100%;
  /* 가로 전체 차지 */
  background: rgba(0, 0, 0, 0.5);
  color: #f1f1f1;
  padding: 1.0vw;
  /* 패딩도 비율로 */
  font-size: clamp(8px, 0.6vw, 14px);
  z-index: 10;
}



#myBtn {
  width: 200px;
  font-size: 18px;
  padding: 10px;
  border: none;
  background: #000;
  color: #fff;
  cursor: pointer;
}

#myBtn:hover {
  background: #ddd;
  color: black;
}

#header {
  text-align: center;
  color: #000000;
  /* 글자 보이게 */
  padding: 10px;
  display: flex;
  font-size: 16px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;

  /* ✨ 글라스 효과 스타일 */
  background: rgba(19, 178, 251, 0.3);
  /* 밝은 반투명 배경 */
  backdrop-filter: blur(10px);
  /* 흐림 효과 */
  -webkit-backdrop-filter: blur(10px);
  /* 사파리 대응 */
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  /* 경계선 */
}

#header img {
  margin-left: 20px;
  width: clamp(150px, 20vw, 250px);
  /* 최소 120px, 최대 250px */
  /* 로고 이미지의 너비 조정 */
  margin-right: 15px;
  /* 로고와 텍스트 사이의 간격을 설정합니다. */
  z-index: 3;
  /* 다른 요소 위에 표시합니다. */
}


.menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu img {
  width: 10px;
  /* 로고 이미지의 너비 조정 */
  margin-right: 0px;
  /* 로고와 텍스트 사이의 간격을 설정합니다. */
}

.navbar {
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0);
}

.navbar a {
  float: left;
  font-size: 16px;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  z-index: 1000;
  /* 다른 요소 위에 표시합니다. */
}

.sidebar {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.9);
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
  z-index: 1000;
  /* 다른 요소 위에 표시합니다. */
}

.sidebar a {
  padding: 30px 8px 8px 30px;
  text-decoration: none;
  font-size: 1.2em;
  color: #818181;
  display: block;
  transition: 0.3s;
  line-height: 130%;
  z-index: 1000;
}

.sidebar a:hover {
  color: #f1f1f1;
  z-index: 1000;
}

.sidebar .closebtn {
  position: absolute;
  top: 45px;
  right: 20px;
  font-size: 40px;
  margin-left: 40px;
}

.openbtn {
  font-size: 20px;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0);
  color: white;
  padding: 10px 15px;
  border: none;
}

.openbtn:hover {
  background-color: #000000;
  color: rgb(255, 217, 0);
}

#main {
  transition: margin-left .5s;
  padding: 16px;
  z-index: 3;
  /* 다른 요소 위에 표시합니다. */
}
/*************************************************************************************************/

.top-right-container {
  position: absolute;
  top: 25%;
  right: 20px;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: #ffffff;
}

.icon {
  width: 300px; /* 원하는 크기로 조절하세요 */
  height: auto;
  opacity: 50%;
}

.title1, .title2, .copy {
  margin: 4px 0;
}

.title1 {
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-size: 200px;
  font-weight: 800;
}

.explore-btn {
  display: inline-block;
  margin-top: 1em;
  padding: 10px 24px;
  font-size: 16px;
  text-decoration: none;
  color: #000000;
  background: rgb(255, 191, 0); /* 반투명 배경 */
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.explore-btn:hover {
  background: rgba(255, 0, 115, 0.9); /* hover 시 진한 반투명 */
  transform: scale(1.05);
  color: #ffffff;
}



/* 반응형 조정 */
@media (max-width: 768px) {
  .top-right-container {
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    position: absolute;
    text-align: center;
    align-items: center;
  }

  .icon {
    width: 300px;
    opacity: 60%;
  }

  .title1 {
    font-size: 60px;
  }

  .title2 {
    font-size: 14px;
  }

  .copy {
    font-size: 14px;
  }
}

@media (min-width: 1920px) {
  
  .title1 {
    font-size: 280px;
  }

  .title2 {
    font-size: 50px;
    line-height: 1.0; /* 또는 px 단위로 조절 가능 */
  }

  .copy {
    font-size: 24px;
  }

  .icon {
    width: 400px; /* 원하는 크기로 조절하세요 */
    height: auto;
    opacity: 50%;
  }
}






















/***************************************************************************************************/

.container-wrapper {
  position: fixed; /* 스크롤에도 고정되도록 fixed */
  bottom: 30px;    /* 화면 아래에서 10px 위 */
  left: 50%;
  transform: translateX(-50%); /* 가운데 정렬 */  
  display: flex;
  justify-content: center;
  align-items: center;  
  padding: 10px;
  z-index: 3;
  width: 400px;
}

.container {
  width: 100%;
  max-width: 500px;
  min-width: 200px;
  text-align: center;
  z-index: 1;
}


.content {
  background: rgba(1, 100, 117, 0.3);
  color: #ffffff;
  width: 100%;
  
  padding: 2%;
  line-height: 1.4em;
  font-size: clamp(8px, 1.4vw, 18px);
  /* 반응형 글씨 */

  /* 글라스 효과 */
  backdrop-filter: blur(5px);
  /* 블러 효과 */
  -webkit-backdrop-filter: blur(5px);
  /* 사파리 대응 */
  border: 1px solid rgba(255, 255, 255, 0.5);
  /* 은은한 테두리 */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  /* 부드러운 그림자 */
}


/**********************************************************************************/

.bottom-banner {
  position: fixed;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: clamp(20px, 6vh, 30px);
  display: flex;
  justify-content: center;
  z-index: 10;
  pointer-events: none;
}

.rolling-wrapper {
  position: relative;
  width: 90%;
  height: 100%;
  overflow: hidden;
}

.rolling-track {
  display: flex;
  height: 100%;
  animation: scrollLeft 30s linear infinite;
}

.rolling-track img {
  max-height: 100%;
  height: auto;
  width: auto;
  flex-shrink: 0;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-5000px); /* 한 이미지 너비만큼 이동 */
  }
}

.fade-left,
.fade-right {
  position: absolute;
  top: 0;
  width: 5%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.fade-left {
  left: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5), transparent);
}

.fade-right {
  right: 0;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.5), transparent);
}






/***************************************************************************/
/***************************************************************************/


/* 비디오 백그라운드 */
.video-background {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  z-index: 0;
  /* 콘텐츠 뒤로 보내기 */
  overflow: hidden;
}

.video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100vw;
  min-height: 100vh;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

/***************************************************************************/
/***************************************************************************/



