@charset "utf-8";

@font-face {
    font-family: 'BMDOHYEON';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_one@1.0/BMDOHYEON.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}



@font-face {
    font-family: 'NEXON Lv1 Gothic OTF';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_20-04@2.1/NEXON Lv1 Gothic OTF.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


@font-face {
    font-family: 'CookieRun-Regular';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/CookieRun-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'KCCMurukmuruk';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2302@1.0/KCCMurukmuruk.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}




* {    /*공통 사항*/
    font-family: 'NanumSquareNeo';
    box-sizing: border-box; margin: 0;
}

ul { list-style: none; padding: 0; }    /*리스트 공통*/
a { text-decoration: none; }             /*링크 공통*/


body {
  margin: 0;
  font-family: var(--font-main);
  background-color: #000;
  color: var(--text-light);
}


 /*크롬, 사파리 계열 브라우저, MS Edge*/
  body::-webkit-scrollbar { width: 15px }
  body::-webkit-scrollbar-track {  background: linear-gradient(135deg, #fff3b0, #ffe780); border-radius: 10px; }
  body::-webkit-scrollbar-thumb { background: linear-gradient(135deg, #8e44ad, #c084fc); border-radius: 10px; border: 2px solid #f1f1f1; }
  body::-webkit-scrollbar-thumb:hover { background: linear-gradient(135deg, #6c3483, #9b59b6); }
  body::-webkit-scrollbar-button:start:decrement,
  body::-webkit-scrollbar-button:end:increment {
  width: 0;
  height: 0;
  display: none;}   


#naviBox {      /*내비게이션 전체 박스*/
    width: 100%; height: 60px; background: #000;
    position: fixed; top: 0;  left: 0; z-index: 9;
}
 
#navi {     /*안쪽 1200 내비게이션 영역*/
    width: 100%; max-width: 1200px; margin: auto;
    display: flex;  justify-content: space-between; align-items: center !important;
}

#logoBox {  width: 40%; }
#logo { height: 50px; margin-top: 5px; }

#menu {     /*메뉴 박스 ul*/
    width: 80%; display: flex;
    justify-content: end;
}

.main {     /*메인메뉴 리스트*/
    position: relative;
}

.mainLink {     /*메인메뉴 링크*/
    display: inline-block; font-family: 'CookieRun-Regular'; font-size: 1.2rem;
    line-height: normal; padding: 0 4rem;
    color: #fff;  transition: 0.3s;
}
.main:hover > .mainLink {    /*메인메뉴 리스트에 닿을 때, 링크 스타일*/
    background: #e7ff62; color: #000;
}

.hamburger {    /*햄버거메뉴(펼침메뉴)*/
    width:50px; height:50px;  padding: 0;
    cursor:pointer; display:none; 
}

/*햄버거메뉴의 크기와 색상*/
.hamburger-box { scale: .7 }
.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before,
.hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner::before, .hamburger.is-active .hamburger-inner::after {
    background: #fff;
}


/* 섹션, 문자, 버튼 공통 스타일 */
section {     /*섹션 영역*/
    padding: 0 1vw; text-align: center;
}

.sectionTitle {      /*섹션 타이틀*/
    font-size: 2rem;  margin-bottom: 2.5rem;
    font-family: 'Paperlogy-7Bold';
    font-weight: normal;
    position: relative; padding-left: 40px;
}






@keyframes rotate-scale-up {
  0% {
    transform: scale(1) rotateZ(0);
  }
  50% {
    transform: scale(1.5) rotateZ(180deg);
  }
  100% {
    transform: scale(1) rotateZ(360deg);
  }
}

.rotate-scale-up {
	animation: rotate-scale-up 0.65s linear both;
}

@keyframes scale-up-center {
  0% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}

.scale-up-center {
	animation: scale-up-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}


@keyframes wobble-hor-bottom {
  0%,
  100% {
    transform: translateX(0%);
    transform-origin: 50% 50%;
  }
  15% {
    transform: translateX(-30px) rotate(-6deg);
  }
  30% {
    transform: translateX(15px) rotate(6deg);
  }
  45% {
    transform: translateX(-15px) rotate(-3.6deg);
  }
  60% {
    transform: translateX(9px) rotate(2.4deg);
  }
  75% {
    transform: translateX(-6px) rotate(-1.2deg);
  }
}

.wobble-hor-bottom {
	animation: wobble-hor-bottom 0.8s both;
}


/*contact ----------------------------------------------------------------------------------------------------*/
.contact-section {
  padding: 100px 24px;
  font-family: 'BMDOHYEON';
  background: #111;
  color: #eee;
  margin: 0 auto;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* 상단 제목 */
.contact-section h4 {
  font-size: 24px; font-family: 'NEXON Lv1 Gothic OTF';
  font-weight: 700;
  text-transform: lowercase;
  color: #ccc;
  margin-bottom: 36px;
  text-align: center;
  opacity: 0;
  animation: slideInFade 1s ease forwards;
  animation-delay: 0.1s;
  letter-spacing: 2px;
}

/* 같이, 가치 있게. */
.subtitle {
  font-size: 2rem; font-family: 'KCCMurukmuruk';
  font-weight: normal;
  color: #ffddff;
  margin: 0 0 24px;
  opacity: 0;
  animation: slideInRight 1s ease forwards;
  animation-delay: 0.6s;
  line-height: 1.3;
}

/* Get in Touch with Seoha */
.eng-title {
  font-size: 3rem;
  font-weight: normal;
  color: #ffd1ff; font-family: 'KCCMurukmuruk';
  margin-bottom: 64px;
  opacity: 0;
  animation: slideInRight 1s ease forwards;
  animation-delay: 1.1s;
}

/* 연락처 영역 */
.contact-info {
  font-size: 20px; 
  color: #ddd; 
  opacity: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 20%;
  animation: contactBounce 2.5s ease-in-out infinite;
}

/* 아이콘 스타일 */
.contact-info p {
  margin: 10px 0;
  display: flex;
  align-items: center; font-family: 'KCCMurukmuruk';
  gap: 10px;
  font-weight: 400;
}

.contact-info p:first-child::before {
  content: "\2709"; /* 편지 아이콘 */
  font-size: 22px;
  color: #ffb6ff;
}

.contact-info p:last-child::before {
  content: "\260E"; /* 전화 아이콘 */
  font-size: 22px;
  color: #ffb6ff;
}

/* 애니메이션 - 아래에서 올라오면서 투명도 증가 */
@keyframes slideInFade {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 새 애니메이션 - 왼쪽에서 오른쪽으로 날아오기 */
@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 연락처 영역 리듬감있는 반복 애니메이션 */
@keyframes contactBounce {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.85;
  }
  50% {
    transform: translateY(-10px);
    opacity: 1;
  }
}

/*footer ----------------------------------------------------------------------------------------------------*/
footer {
    background: linear-gradient(135deg, #a18cd1, #fbc2eb); /* 보라-핑크 */
    color: #222; /* 텍스트는 어두운 색으로 */
    padding: 20px 20px;
    text-align: center;
    position: relative;
  }
  footer .scrollTop {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #222;
    font-size: 24px;
    font-weight: bold;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 24px;
    line-height: 40px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease;
  }
  footer .scrollTop:hover {
    background: #222;
    color: #fff;
  }
  footer h2 {font-family: 'CookieRun-Regular';
    font-size: 28px; padding-bottom: 1rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
  }

  footer p, a,
footer small {font-family: 'BMDOHYEON';
  margin-bottom: .5rem;
  color: #eee; font-weight: normal;
  font-size: 12px;
  opacity: 0.9;
}


/* 850px 이하 화면용 스타일 */

@media screen and ( max-width:850px ) {
    #footerList {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}



/* 1000px 이하 화면에서 내비게이션 스타일 바꾸기 */
@media screen and (max-width:1000px) {
    .hamburger { display: block; }     /*햄버거 버튼 보이기*/
    #menu {    /*메뉴 - 모바일 스타일 변경*/
        position: absolute; top: 50px; right: 0;
        background: #0008; width: 200px; height: calc(100vh - 50px);
        display: none;
    }
    .main:hover > .mainLink { background: #e7ff62; }
    .mainLink { padding: 0 1.5rem;}
}


@media screen and (max-width: 1024px) {
  .contact-section {
    padding: 80px 20px;
    min-height: 550px;
  }
  .contact-section h4 {
    font-size: 22px;
    margin-bottom: 30px;
  }
  .subtitle {
    font-size: 36px;
    margin-bottom: 20px;
  }
  .eng-title {
    font-size: 24px;
    margin-bottom: 50px;
  }
  .contact-info {
    font-size: 18px;
    margin-left: 15%;
  }
  .contact-info p:first-child::before,
  .contact-info p:last-child::before {
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  .contact-section {
    padding: 60px 16px;
    min-height: 500px;
  }
  .contact-section h4 {
    font-size: 20px;
    margin-bottom: 24px;
  }
  .subtitle {
    font-size: 30px;
    margin-bottom: 16px;
  }
  .eng-title {
    font-size: 20px;
    margin-bottom: 40px;
  }
  .contact-info {
    font-size: 17px;
    margin-left: 0; /* 가운데 정렬 위해 왼쪽 마진 제거 */
    align-items: center; /* 중앙 정렬 */
  }
  .contact-info p {
    justify-content: center; /* 내용도 가운데 */
  }
  .contact-info p:first-child::before,
  .contact-info p:last-child::before {
    font-size: 18px;
  }
}

@media screen and (max-width: 480px) {
  .contact-section {
    padding: 50px 12px;
    min-height: 450px;
  }
  .contact-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .subtitle {
    font-size: 26px;
    margin-bottom: 14px;
  }
  .eng-title {
    font-size: 18px;
    margin-bottom: 32px;
  }
  .contact-info {
    font-size: 16px;
  }
  .contact-info p:first-child::before,
  .contact-info p:last-child::before {
    font-size: 16px;
  }
}