
@import url('https://fonts.googleapis.com/css2?family=Gowun+Batang&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Gowun Batang;
  
  color: white;
  text-decoration: none;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  
  background-color: #5f7691;
}

.inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 상단 메뉴 */
header {
  background-color: #293d53;
  color: white;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  
  max-width: 1040px;
  
}

.site-name {
  font-size: 1.5em;
  transition: transform 0.3s ease;
}
.site-name:hover {
    transform: scale(1.1);
}

.nav-menu a {
  color: white;
  margin-left: 40px;
  transition: transform 0.3s ease;
  display: inline-block;
}

.nav-menu a:hover {
    transform: scale(1.2);
}

/* 메인 이미지 섹션 */
main {
  padding: 50px 0;
  min-height: calc(100vh - 130px);
  background-color: #5f7691;
}
.content-section {
padding: 0 0;
}

.two-column {
display: flex;
justify-content: space-between;
gap: 40px;
flex-wrap: wrap; /* 모바일 대응 */
}

.box1{margin-top: 50px;display: block;}

.box2{margin-top: 100px;display: block;}


.left-column, .right-column {
flex: 1 1 45%;
}

/* 텍스트 스타일 */
.left-column p {
text-align: left;
line-height: 190%;
}

.left-column .small {
font-size: 0.8em;
padding-top: 20px;
}

.left-column .gray {
color: #cfcfcf;
font-size: 1em;
letter-spacing: 5px;
}

.left-column .large {
font-size: 4rem;
font-weight: bold;
padding-bottom: 20px;
}
.left-column .large span{
font-size: 2rem;
font-weight: bold;}

/* 이용규약 텍스트 스타일 */
     .touTitle{font-size: 1.2rem;color: #ffffff;}
     .touMain{font-size: 1rem;color: #fff;}



/* 버튼 스타일 */
.button {
display: block;
width: fit-content;
padding: 10px 20px;
margin-bottom: 10px;
border: 2px solid #fff;
color: white;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s;
}

.button:hover {
background-color: rgba(255, 255, 255, 0.4);
}

/* 이미지 */
.right-column img {
max-height: 800px;
max-width: 100%;
margin: 0 auto;
}

.round{border-radius: 100%;}


     /* 메인 이미지 섹션 */
     main {
      padding: 50px 0;
      min-height: calc(100vh - 130px);
      background-color: #5f7691;
    }

    .image-container {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 40px;
      flex-wrap: wrap;
    }
    .image-link {
        display: inline-block;
        overflow: hidden;
        border-radius: 10px;
        transition: transform 0.3s ease;
    }

    .image-link:hover {
      transform: scale(1.05);
    }

    .image-wrapper {
        position: relative;
        display: inline-block;
    }

    .image-wrapper img {
        display: block;
        height: 700px;
        object-fit: cover;
    }

    /* 텍스트 오버레이 */
    .image-text {
        position: absolute;
        top: 80%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        font-size: 1.6em;
        font-weight: bold;
        text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
        text-align: center;
        pointer-events: none; /* 클릭 방해 안 하도록 설정 */
    }

    .image-text-up
    {

        font-size: 0.7rem;
        font-weight: normal;
    }

    .image-text-down
    {

        font-size: 1rem;
        font-weight: normal;
    }
        .image-link:first-child img {
      padding-top: 70px;
          }

    /* 푸터 */

    .footer-inner {
      text-align: center;

      color: #b9b9b9;
      font-size: 0.8rem;
      padding: 20px 0;
    }


     
/* 반응형 대응 */
@media (max-width: 768px) {
  .two-column {
  flex-direction: column;
  }
  
  .left-column, .right-column {
  flex: 1 1 100%;
  }
  
  
  .box1{display: none;}
  }
  
  /* 푸터 */
  
  .footer-inner {
    text-align: center;
    
    color: #b9b9b9;
    font-size: 0.8rem;
    padding: 20px 0;
  }
  
  /* 반응형 스타일 */
  @media (max-width: 600px) {
    .header-inner {
      flex-direction: column;
      align-items: flex-start;
      padding-left: 20px;
      gap: 10px;
    }
  
    .nav-menu {
      display: flex;
      flex-direction: column;
      gap: 5px;
      width: 100vw;
    }
  
    .image-container {
      flex-direction: column;
      align-items: center;
    }
  
    .image-link img {
      max-width: 100%;
      height: auto;
    }
  
  
    .image-link:first-child img {
    padding-top: 0px;
        }
  
  }
  