/**
  Theme Name: Rhye Child
  Theme URI: https://artemsemkin.com/rhye/wp/
  Description: This is a child theme of Rhye, used for codebase customizations.
  Author: <a href="https://artemsemkin.com">Artem Semkin</a>
  Author URI: https://artemsemkin.com
  Template: rhye
  Version: 3.9.1
*/

@font-face {
  font-family: '87MMILSANG-Oblique';
  src: url('/wp-content/fonts/87MMILSANG-Oblique.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

/* 자식테마 style.css 혹은 커스텀 CSS에 추가 */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&display=swap');


.slider__counter_current,
.slider__counter_total {
  font-family: 'Cinzel', serif !important;
}

.my-xl2-heading-class {
  font-family: 'Cinzel', serif; /* 혹은 Kirki에서 지정한 폰트 */
  /* font-size: 56px; */
  font-size: 3.5rem;
  line-height: 1.2;
}

body.elementor-popup-modal-open {
  overflow: auto !important;
}

.page-id-8272 .split-text__word  {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 3rem;
  /* font-size: 48px; */
  font-weight: 700;
}

.page-id-2117 .split-text__word  {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 3rem;
  /* font-size: 48px; */
  font-weight: 700;
}

.page-id-8297 .split-text__word  {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 3rem;
  /* font-size: 48px; */
  font-weight: 700;
}

/* 기본(라이트·투명 배경) */
.logo__img-primary   { opacity:1; transition:opacity .25s ease; }
.logo__img-secondary { opacity:0; transition:opacity .25s ease; }

/* 헤더가 sticky(스크롤) 또는 어두운 섹션 위에 올라가면 */
.js-header-sticky .logo__img-primary,
.header--dark       .logo__img-primary   { opacity:0; }
.js-header-sticky .logo__img-secondary,
.header--dark       .logo__img-secondary { opacity:1; }



/* slider.min.css 커스텀내용 */
/* (1)62번째 줄 */
.slider__heading {
  display: inline-block;
  /* margin-top: -39px; */
  margin-top: -2.438rem;
  margin-bottom: 0;
}

/* (2)225번째줄 */
.slider_reveal .slider-fullscreen-projects__images .slider__images-slide-inner {
  opacity: 0;
  transition: all 0.3s ease;
  transform: scale(1.5);
}

/* (3)485번째줄~571번째줄 */
.slider__dot {
  position: relative;
  width: 60px;/* 이게 점드 사이 거리, 수정 */
  height: 35px;/* 이게 점드 사이 거리, 수정 */
  margin: 0 6px;
  cursor: pointer;
  outline: 0;
  display: inline-block;
  border-radius: 100%;
  vertical-align: middle;
  z-index: 50;
}
.slider__dot svg {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: auto;
  width: 35px; /* 이게 바깥 원 크기, 수정 */
  height: 35px; /* 이게 바깥 원 크기, 수정 */
  border-radius: 100%;
  stroke-width: 2px;
  z-index: 50;
  transition: width 0.3s ease, height 0.3s ease;
}
.slider__dot svg path {
  fill: transparent;
  stroke: transparent;
  stroke-width: 3; /* 이게 실제 선두께, 수정 */
}
.slider__dot.swiper-pagination-bullet-active svg {
  width: 10px; /* 활성 상태에서 더 키움 */
  height: 10px;
}
.slider__dot.swiper-pagination-bullet-active svg path {
  fill: #fff;
  stroke: #fff;
  stroke-width: 4; 
}
.slider__dot:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  display: block;
  width: 8px; /* 이게 안쪽 점 크기, 수정 */
  height: 8px; /* 이게 안쪽 점 크기, 수정 */
  border-radius: 100%;
  background-color: #dddddd !important; /* 이게 실제 적용색상, 수정 */
  transition: all 0.3s ease;
  animation: blink 5s infinite ease-in-out; /* 깜빡이는 애니메이션 추가 */
}
.slider__dot.swiper-pagination-bullet-active:after {
  background-color: #fff !important; /* 활성 상태 흰색 유지 */
  width: 12px;
  height: 12px;
  animation: none; /* 활성 상태에서는 깜빡임 제거 */
}
.slider__dot svg .circle {
  stroke: #b0ff7f !important; /* 이게 실제 선색상, 수정 */
}
@media screen and (max-width: 767px) {
  .slider__dot {
      width: 30px;
      height: 30px;
      margin: 0 4px;
  }
  .slider__dot svg {
      width: 25px; /* 반응형에서 크기 조정 */
      height: 25px;
  }
  .slider__dot:after {
      width: 6px;
      height: 6px;
  }
  .slider__dot.swiper-pagination-bullet-active svg {
      width: 35px; /* 반응형에서 활성 상태 크기 조정 */
      height: 35px;
  }
  .slider__dot.swiper-pagination-bullet-active:after {
      width: 8px;
      height: 8px;
  }
}

/* (4)659번째줄~670번째줄 (추가된 내용) */
/* 깜빡이는 애니메이션 정의 */
@keyframes blink {
  0% {
    opacity: 0.5; /* 최소 불투명도 */
  }
  50% {
    opacity: 1; /* 최대 불투명도 */
  }
  100% {
    opacity: 0.5; /* 다시 최소 불투명도 */
  }
}

/* 국기 투명하게 */
#trp-floater-ls {
  opacity: 0.3;
}
#trp-floater-ls.trp-color-dark {
  background: rgba( 0, 0, 0, 0.1 );
}

/* 슬라이더 링크 내 텍스트 순서 뒤집기 */
.slider__text { order: 0; }    /* 본문을 첫 번째로 */
.slider__heading { order: 1; } /* 제목을 두 번째로 */
.slider__wrapper-button { order: 2; } /* 버튼을 세 번째로 (마지막) */

.social__icon.fab.fa-skype {
  background: url('https://mo1.kr/wp-content/uploads/2025/05/naverblogicon.png') no-repeat center;
  background-size: contain;
  width: 24px;
  height: 24px;
  text-indent: -9999px;
}

.social__icon.fab.fa-instagram {
  background: url('https://mo1.kr/wp-content/uploads/2025/05/instagramicon.png') no-repeat center;
  background-size: contain;
  width: 24px;
  height: 24px;
  text-indent: -9999px;
}

.social__icon.fab.fa-youtube {
  background: url('https://mo1.kr/wp-content/uploads/2025/05/youtubeicon.png') no-repeat center;
  background-size: contain;
  width: 24px;
  height: 24px;
  text-indent: -9999px;
}

.social__item {
  margin-right: 9px; /* 오른쪽 간격 추가 */
  margin-left: 9px;  /* 왼쪽 간격 추가 */
  display: inline-block; /* 인라인 블록으로 설정하여 간격이 제대로 적용되도록 */
}

#trp-floater-ls.trp-bottom-left {
  top: auto;
  bottom: 0;
  left: 5%;
}



/* 1) 컨테이너를 전폭‧전높이 또는 원하는 높이로 */
.javallax.full{
  position: relative;
  width: 100%;
  height: 80vh;           /* 예: 80% 뷰포트 높이 */
  overflow: hidden;

  /* 2) 백그라운드에 원본 사진 깔기 */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* 3) 원본·깊이맵 이미지는 보이지 않게 */
.javallax-original,
.javallax-depthmap{ visibility:hidden; width:0; height:0; }


/* 슬라이더 카운터 분모숫자 */
/* 슬라이더 총 카운트에도 동일 애니메이션 적용 - 불투명 색상 */
.slider__counter_total {
  position: absolute;
  bottom: 4px;
  right: 4px;
  font-size: 44px;
  text-align: right;
  line-height: 1;

  color: #dddddd !important;        /* 투명도 없는 불투명 색상 강제 적용 */
  transition: all 0.3s ease;
  animation: blink 5s infinite ease-in-out;
}

/* 혹시 상위 테마 규칙을 정확히 덮으려면 선택자도 맞춤 */
.arts-elementor-theme-light .slider__counter_total,
.slider[data-arts-theme-text=dark] .slider__counter_total {
  color: #dddddd !important;
}



/* 슬라이더 카운터 분자분모 사이 작대기 */
.slider__counter-divider {
  left: 22px;
    bottom: 8px;
}

/* 메인페이지이동 화살표 */
.arrow .circle {
    stroke: #b0ff7f !important;
    stroke-width: 0.6px;
}


/* 메인페이지이동 화살표 깜빡임 */
/* 깜빡임 애니메이션 키프레임 */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.arrow__pointer {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  right: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: #dddddd !important; /* 색상 맞춤 */
  transition: all 0.3s ease;            /* 동일 트랜지션 */
  animation: blink 5s infinite ease-in-out; /* 깜빡임 추가 */
  transform-origin: right center;
}

.arrow__triangle {
  display: inline-block;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #dddddd !important; /* 색상 맞춤 */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;             /* 동일 트랜지션 */
  animation: blink 5s infinite ease-in-out; /* 깜빡임 추가 */
}
