/* ============================================================
   Define a CSS variable to control the opacity of multiple shadows
   ============================================================ */
.theme-light {
  --shadow-color-a: rgba(0, 0, 0, 0.15);
  --shadow-color-b: rgba(0, 0, 0, 0.3);
  --shadow-color-c: rgba(255, 255, 255, 0.1);
}

.theme-dark {
  --shadow-color-a: rgba(0, 0, 0, 0.15);
  --shadow-color-b: rgba(0, 0, 0, 0.3);
  --shadow-color-c: rgba(255, 255, 255, 0.1);
}

/* ============================================================
   Global Style Rules
   ============================================================ */

html, body .home{
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
}

img {
  user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* ✅ 관리자 툴바가 있을 때 오프셋 적용 */
body.admin-bar #site-header {
  top: 32px;
}

@media screen and (max-width: 600px) {
    #wpadminbar {
        position: relative;
    }
}

.scroll-down {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 1rem;
  text-transform: lowercase;
  color: #fff;
  opacity: 0.5;
  z-index: 10;
  pointer-events: auto;
}

.scroll-down .arrow {
  width: 18px;
  height: 18px;
  margin: 10px auto 0;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  opacity: 0.5;
  transform: rotate(-45deg);
  animation: bounceArrow 1.5s infinite ease-in-out;
}

@keyframes bounceArrow {
  0%, 100% {
    transform: translateY(0) rotate(-45deg);
  }
  50% {
    transform: translateY(10px) rotate(-45deg);
  }
}

/* ============================================================
   Header/Menu Styles
   ============================================================ */
/* sticky header */
#site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;
  padding: 1rem 0;
  /*box-shadow: 0 2px 10px rgba(0,0,0,0.1);*/
  transition: background-color 0.3s ease/*, box-shadow 0.3s ease*/;
}

/* 헤더 전체 */
.main-header {
  height: 70px; /* ✅ 로고 50px + 여백 10px 위아래 */
  padding: 10px 0;
  width: 100%;
  background-color: rgba(128, 216, 255, 0.9);
  backdrop-filter: blur(10px);
  z-index: 100;
}

.page-id-15 .main-header {
  background-color: transparent;
  backdrop-filter: none;
}

.main-header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center; /* ✅ 수직 가운데 정렬 */
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.single-header {
  height: 70px; /* ✅ 로고 50px + 여백 10px 위아래 */
  padding: 10px 0;
  width: 100%;
  background-color: rgba(128, 216, 255, 0.9);
  backdrop-filter: blur(10px);
  z-index: 100;
}

.single-header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center; /* ✅ 수직 가운데 정렬 */
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.site-title {
  flex: 0 0 auto;
  margin-right: auto;
  z-index: 1000;
}

.site-title img {
  height: 50px;
  width: auto;
}

/* 공통 메뉴 래퍼 */
.main-menu {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 18px 0;
  justify-content: flex-end;
  align-items: center;
}

/* 메뉴 항목 */
.main-menu > li {
  position: relative;
}

/* 링크 기본 스타일 */
.main-menu > li > a {
  display: block;
  padding: 0 20px;
  color: #333;
  text-decoration: none;
  font-weight: 300;
  white-space: nowrap;
  background-color: transparent;
  border-radius: 0;
}

/* hover 시 색상 유지 */
.main-menu > li > a:hover {
  background-color: transparent;
  color: #333;
}

/* ▼ 서브메뉴 표시 아이콘 */
.menu-item-has-children > a::after {
  font-family: "Font Awesome 6 Free";
  content: "\f078"; /* fa-chevron-down */
  font-weight: 900;
  float: right;
  font-size: 0.9rem;
  margin-left: 10px;
  opacity: 1;
  transition: transform 0.3s ease;
}

/* 부모 hover 시 아이콘 회전 */
.menu-item-has-children:hover > a::after {
  transform: rotate(180deg);
}

.page-id-15 .menu-item-has-children > a::after {
  display: none;
}

/* 부모 hover 시 아이콘 회전 */
.page-id-15 .menu-item-has-children:hover > a::after {
  display: none;
}

/* 서브메뉴 항목 */
.sub-menu li a {
  display: block;
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  font-weight: 300;
  white-space: nowrap;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.sub-menu li a:hover {
  background-color: rgba(128, 216, 255, 0.9);
  color: #fff;
  font-weight: 500;
}

/* =========================================================
   기본 햄버거 버튼
========================================================= */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  display: block;
  transition: all 0.3s ease;
}

/* 햄버거 active 상태 */
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* =========================================================
   메뉴 오버레이
========================================================= */
.menu-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 90%; /* 기본값: 모바일 90%, JS에서 메인+데스크탑 시 40%로 변경 */
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  color: #fff;
  z-index: 1000;
  padding: 20px;
  overflow-y: auto;
  opacity: 0;
  transition: right 0.4s ease, opacity 0.4s ease, width 0.3s ease;
}

.menu-overlay.active {
  right: 0;
  opacity: 1;
}

/* 닫기 버튼 */
.menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
}

/* =========================================================
   모바일/햄버거 메뉴 리스트
========================================================= */
.menu-overlay ul.sub-menu {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

.menu-list {
  list-style: none;
  padding: 60px 0 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.menu-list a {
  color: #fff;
  font-size: 1.2rem;
  text-decoration: none;
  text-align: left;
  width: 100%;
  cursor: pointer;
}

/* =========================================================
   데스크탑 전용 메뉴 (hover 효과)
========================================================= */
@media (min-width: 1024px) {
  body:not(.force-hamburger) .sub-menu {
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    border-top: 15px solid transparent;
    background-color: rgba(0, 0, 0, 0.9);
    background-clip: padding-box;
    padding: 15px 0;
    min-width: 190px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  body:not(.force-hamburger) .sub-menu::before {
    content: "\f077";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.9);
    padding: 2px 6px 0 6px;
    border-radius: 4px;
    color: #007aae;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  body:not(.force-hamburger) .menu-item-has-children:hover .sub-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  body:not(.force-hamburger) .menu-item-has-children:hover .sub-menu::before {
    opacity: 1;
  }
}

/* =========================================================
   반응형 (모바일, 태블릿)
========================================================= */
@media (max-width: 1024px) {
  .hamburger {
    display: flex;
    width: 30px;
    height: 25px;
  }

  .main-menu {
    display: none !important;
  }

  .sub-menu {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding-left: 20px;
    margin-top: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.3s ease;
  }

  .menu-item-has-children.open .sub-menu {
    max-height: 500px;
    opacity: 1;
    margin-top: 10px;
  }

  /* ⬇️ 펼침 아이콘 회전 (chevron) */
  .menu-item-has-children > a .submenu-chevron {
    margin-left: 10px;
    font-size: 0.9em;
    transition: transform 0.3s ease;
  }
  .menu-item-has-children.open > a .submenu-chevron {
    transform: rotate(180deg);
  }

  .menu-overlay .menu-list > li > a {
    color: #fff;
    background: none;
    -webkit-tap-highlight-color: transparent;
    transition: color 0.3s ease;
  }

  .menu-overlay .menu-item-has-children.open > a {
    color: #00aaff;
    background: none;
  }

  .menu-overlay .menu-list > li > a:active,
  .menu-overlay .menu-list > li > a:hover,
  .menu-overlay .menu-list > li > a:focus {
    color: inherit;
    background: none;
  }

  /* ▼ 서브메뉴 표시 아이콘 */
  .menu-item-has-children > a::after {
    display: none;
  }
}

/* =========================================================
   JS 강제 적용 (body.force-hamburger)
========================================================= */
body.force-hamburger .hamburger {
  display: flex !important;
}
body.force-hamburger .main-menu {
  display: none !important;
}

/* ---------------------------------------------------------
   force-hamburger 상태(모바일/태블릿 또는 메인페이지 강제)
   그리고 특히 데스크탑+force-hamburger 상황에서도
   서브메뉴가 기본으로 보이지 않도록 전역으로 처리
   --------------------------------------------------------- */
body.force-hamburger .sub-menu {
  display: none !important;      /* 기본 숨김 */
  max-height: 0 !important;      /* 애니메이션용 높이 초기화 */
  opacity: 0 !important;
  overflow: hidden !important;
  transition: max-height 0.32s ease, opacity 0.28s ease;
}

/* open 클래스가 붙었을 때만 보이게 */
body.force-hamburger .menu-item-has-children.open > .sub-menu {
  display: block !important;
  max-height: 800px !important; /* 충분히 큰 값 */
  opacity: 1 !important;
}

/* chevron 스타일 (선택) */
body.force-hamburger .menu-item-has-children > a .submenu-chevron {
  margin-left: 10px;
  transition: transform 0.28s ease;
}
body.force-hamburger .menu-item-has-children.open > a .submenu-chevron {
  transform: rotate(180deg);
}

/* =========================================================
   메뉴 hover 애니메이션 (데스크탑 only)
========================================================= */
.mk-menu-effect a {
  display: inline-block;
  position: relative;
  overflow: hidden;
  padding: 10px 20px;
  line-height: 1em;
  color: inherit;
  text-decoration: none;
  font-weight: 300;
}

.mk-menu-effect a span.effect-text {
  display: inline-block;
  position: relative;
  transition: transform 0.3s ease;
}

.mk-menu-effect a span.effect-text::before {
  content: attr(data-hover);
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  font-weight: 700;
  transition: transform 0.3s ease;
}

@media (min-width: 1024px) {
  body:not(.force-hamburger) .mk-menu-effect a:hover span.effect-text {
    transform: translateY(-91%);
  }
  body:not(.force-hamburger) .mk-menu-effect a:hover span.effect-text::before {
    transform: translateY(-19%);
  }
}

/* =========================================================
   모바일/강제 햄버거 상태에서는 hover 제거
========================================================= */
@media (max-width: 1023px) {
  .mk-menu-effect a:hover span.effect-text,
  .mk-menu-effect a:hover span.effect-text::before {
    transform: none;
  }
}

body.force-hamburger .mk-menu-effect a:hover span.effect-text,
body.force-hamburger .mk-menu-effect a:hover span.effect-text::before {
  transform: none !important;
}

/* ============================================================
   Main-page Style
   ============================================================ */

/* Main-page wp 타이틀 숨기기 */
.page-id-15 .entry-title {
  display: none;
}

/* 섹션 타이틀 컨테이너 */
.title {
  position: absolute;
  bottom: 40px;
  left: 40px;
  font-size: 1.5rem !important;
  font-weight: bold;
  color: #fff;
  transform: rotateX(90deg);
  transform-origin: top center;
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
}

/* 공통 섹션 스타일 */
section {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: sans-serif;
  font-size: 2rem;
  color: #fff;
  transition: background 0.3s ease;
}

/* ================== Section 1 Specific Styles =================== */
#section-1 {
  color: #111;
}

/* 3d Text */
#three-hero-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* ================== Section 2 Specific Styles =================== */
#section-2 {
}

.cta-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.cta-cloud {
  position: absolute;
  width: 800px;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.cta-cloud-left-1 { top: 45%; left: 7%; z-index: 5; opacity:0.5; }
.cta-cloud-left-2 { top: 50%; left: 12%; z-index: 6; opacity:0.3; }
.cta-cloud-right-1 { top: 45%; right: 8%; z-index: 5; opacity:0.5; }
.cta-cloud-right-2 { top: 55%; right: 13%; z-index: 6; opacity:0.3;}

.dove-wrapper {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: auto;
}

.dove {
  position: absolute;

  display: block;
  object-fit: contain;
}

.dove-back {
  width: 700px;
  height: auto;
  z-index: 3;
  top: 0;
  left: -10px;
  filter: blur(1.5px);
  transform: rotate(-10deg);
}

.dove-front {
  width: 1000px;
  height: auto;
  z-index: 4;
  top: 30px;
  left: 20px;
}

.cta-text-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1000px;
  padding: 0 20px;
  opacity: 0;
}

.cta-line-wrapper {
  overflow: hidden;
  height: 2.5em; /* 또는 line-height에 맞게 조정 */
  margin-bottom: 1.5rem;
}

.cta-line {
  transform: translateY(100%);
  opacity: 0;
  font-size: 5rem;
  text-align: center;
  font-weight: 700;
  line-height: 1.0;
  text-transform: uppercase;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.cta-image-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.cta-overlay-text {
  position: absolute;
  color: white;
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  top: 70%;
  left: 50%;
  z-index: 10;
  transform: translate(-50%, -50%);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* 모바일 (<768px) - 호버 애니메이션 없음 */
@media (max-width: 767px) {
.cta-cloud-left-1 { display: none; }
.cta-cloud-left-2 { display: none; }
.cta-cloud-right-1 { display: none; }
.cta-cloud-right-2 { display: none; }

.dove-wrapper {
  width: 100%;
  height: 100vh;
  border: 1px solid red;
}

.cta-line-wrapper {
  height: 1.8em; /* 또는 line-height에 맞게 조정 */
  margin-bottom: 1.0rem;
}

.cta-line {
  font-size: 2.5rem;
  line-height: 2.0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.cta-image {
  height: 100vh;
  background-position: center center;
  object-fit: cover;
}

.cta-overlay-text {
  font-size: 2.5rem;
  font-weight: bold;
  top: 70%;
  left: 50%;
}
}

/* ================== Section 3 Specific Styles =================== */
#section-3 {
  position: relative;
}

/*.card {
  position: absolute;
  left: 0;
  top: 0;
  background-position: center;
  background-size: cover;
  box-shadow: 6px 6px 10px 2px rgba(0, 0, 0, 0.6);
}

#btn {
  position: absolute;
  top: 690px;
  left: 16px;
  z-index: 99;
}

.card-content {
  position: absolute;
  left: 10px;
  top: -10px;
  color: #FFFFFFDD;
  padding-left: 16px;
}

.content-place {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 500;
}

.content-title-1 {
  font-weight: 600;
  font-size: 20px;
  font-family: "Arial Narrow", sans-serif;
}

.content-title-2 {
  font-weight: 400;
  font-size: 14px;
  font-family: "Arial Narrow", sans-serif;
}

.details {
  z-index: 22;
  position: absolute;
  top: 240px;
  left: 60px;
  overflow: hidden; /* 래퍼가 인디케이터를 가리도록 설정 */
/*}
.details .place-box {
  height: 46px;
  overflow: hidden;
}
.details .place-box .text {
  padding-top: 14px;
  font-size: 20px;
}

.details .title-1 {
  font-weight: 600;
  font-size: 40px;
  font-family: "Arial Narrow", sans-serif;
}

.details .title-2 {
  font-weight: 500;
  font-size: 30px;
  font-family: "Arial Narrow", sans-serif;
}
.details .title-box-1,
.details .title-box-2 {
  margin-top: 2px;
  height: 100px;
  overflow: hidden;
}
.details > .desc {
  font-size: 18px;
  margin-top: 10px;
  width: 500px;
}
.details > .cta {
  width: 500px;
  margin-top: 24px;
  display: flex;
  align-items: center;
}

.indicator {
  position: relative;
  width: 500px;
  height: 2px;
  margin-top: 10px;
  background-color: rgba(255,255,255,0.5);
  z-index: 60;
}

.section3-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.2);
  z-index: 20;
  pointer-events: none;
}

.cover {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: #80d8ff;
  z-index: 100;
}*/

    .vertical-section {
      position: relative;
      overflow: hidden;
    }

    .thumbnail-list {
      position: absolute;
      top: 10rem;
      left: 1rem;

      z-index: 10;
    }

    .thumb {
      width: 60px;
      height: 40px;
      background-size: cover;
      background-position: center;
      border: 2px solid white;
      cursor: pointer;
      transition: all 0.8s ease;
      position: absolute;
      top: var(--top);
      left: 1rem;
      z-index: 2;
      opacity: 0;
      transform: scale(0.8);
    }
/* ✅ 오버레이 추가 */
.thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 2;
  pointer-events: none;
}

/* ✅ 오버레이는 active 상태에서만 보이게 */
.thumb.active::before {
  opacity: 1;
}
    .thumb.active {
      width: 100vw;
      height: 100vh;
      top: 0;
      left: 0;
      z-index: 1;
      opacity: 0;
      transform: scale(1);
    }

    .thumb .text {
      position: absolute;
	  max-width: 600px;
      bottom: 20%;
      left: 10%;
      color: white;
      z-index: 10;
    }

    .thumb .text h4,
    .thumb .text h5,
    .thumb .text span {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .thumb.active .text h4 {
      font-size: 3rem;
      line-height: 1.5; /* H4 안의 텍스트 줄 간격 */
      margin-bottom: 10px; /* H4 아래 여백 */
      margin-top: 0;
      opacity: 1;
      transform: translateY(0);
      transition-delay: 0.4s;
    }

    .thumb.active .text h5 {
      font-size: 2.5rem;
      line-height: 1.5; /* H5 안의 텍스트 줄 간격 */
      margin-bottom: 15px; /* H5 아래 여백 */
      margin-top: 0;
      opacity: 1;
      transform: translateY(0);
      transition-delay: 0.8s;
    }

    .thumb.active .text span {
      opacity: 1;
      font-size: 1.2rem;
      line-height: 2; /* Span 안의 텍스트 줄 간격 */
      display: block;
      transform: translateY(0);
      transition-delay: 1.2s;
    }

  .carousel-controls {
    opacity: 0;
    pointer-events: none;
    transition: opacity 1.5s ease;
  }

  .carousel-controls.visible {
    opacity: 1;
    pointer-events: auto;
  }

    .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: none;
      color: white;
      border: none;
      font-size: 2rem;
      padding: 0.5rem 1rem;
      cursor: pointer;
      opacity: 0.3;
      z-index: 20;
  transition: color 0.3s ease;
    }

    .carousel-btn.prev { left: 1rem; }
    .carousel-btn.next { right: 1rem; }

.carousel-pause-btn {
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translateX(-50%);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 0.6rem 1rem;
  z-index: 30;
  opacity: 0.3;
  transition: color 0.3s ease;
}

.carousel-btn:hover, 
.carousel-pause-btn:hover {
  background: rgba(0,0,0,0.3) !important;
  color: #80d8ff; /* MK 스타일 포인트 컬러 */
  opacity: 1;
}

.carousel-btn:focus,
.carousel-pause-btn:focus {
  background-color: #80d8ff !important;
  color: #fff;
  text-decoration: no;
}
/* 모바일 (<768px) */
@media (max-width: 767px) {
    .thumb.active .text h4 {
      font-size: 2rem;
      line-height: 1.5; /* H4 안의 텍스트 줄 간격 */
      margin-bottom: 10px; /* H4 아래 여백 */
      margin-top: 0;
    }

    .thumb.active .text h5 {
      font-size: 1.6rem;
      line-height: 1.5; /* H5 안의 텍스트 줄 간격 */
      margin-bottom: 15px; /* H5 아래 여백 */
      margin-top: 0;
    }

    .thumb.active .text span {
      font-size: 1rem;
      line-height: 2; /* Span 안의 텍스트 줄 간격 */
    }
}
/* ================== Section 4 Specific Styles =================== */
#section-4 {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

#rainyCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  background: transparent;
}

#rainyImage {
  position: absolute;
  top: -9999px;
  left: -9999px;
  visibility: hidden;
  filter: blur(2px) brightness(2);
}

.section4-columns {
  display: flex;
  height: 100vh;
  width: 100%;
}

.section4-left,
.section4-right {
  flex: 1;
  position: relative;
  overflow: hidden;
}

/* 좌측 컬럼: 세로 중앙 정렬 */
.section4-left {
  display: flex;
  flex-direction: column;
  justify-content: center; /* 수직 중앙 정렬 */
  align-items: center;      /* 수평 중앙 정렬 */
  padding: 40px;
  box-sizing: border-box;
  background-color: transparent;
  overflow: hidden;
}

/* 우측: 맵 영역 */
.section4-right {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: transparent;
}

.map {
  position: relative;
  width: 960px;
  height: 1080px;
  background: url('/wp-content/uploads/2025/11/map-new.jpg') bottom left / cover no-repeat;
  margin: 0 auto;  
  overflow: hidden;

  z-index: 0;  
}

/* 메탈릭 느낌을 위한 오버레이 레이어 */
.map::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba( 0, 0, 0, 0.5);
  pointer-events: none;
  z-index: 1;
  box-shadow: 
}

.marker {
  position: absolute;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 3;
}

.marker i {
  font-size: 40px;
  color: #fb3504;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  transform: translate(-50%, -100%);
  text-shadow:
    0 0 0 #fff,
    2px 0 0 #fff,
    -2px 0 0 #fff,
    0 2px 0 #fff,
    0 -2px 0 #fff;
}

/* 마커1만 블루 계열로 변경 */
.marker--1 i {
  color: #80d8ff;
  z-index: 3;
}

/* 마커 위치 — bottom/left 기준으로 픽셀 고정 */
.marker--1 { left: 275px; bottom: 560px; }
.marker--2 { left: 220px; bottom: 395px; }
.marker--3 { left: 210px; bottom: 230px; }
.marker--4 { left: 140px; bottom: 120px; }

/* 레이어 컨테이너 */
.layer-container {
  display: flex;
  flex-direction: column;
  justify-content: center;   /* 수직 중앙 정렬 */
  align-items: center;       /* 수평 중앙 정렬 */
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  padding: 40px;
  box-sizing: border-box;
}

/* 텍스트 그룹: 수직 정렬 */
.layer-text-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px; /* 텍스트 레이어 간 간격 */
  width: 100%;
  max-width: 600px;
}

/* 각 텍스트 레이어 */
.layer-text {
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.9);
  /*border-radius: 10px;*/
  font-size: 16px;
  color: #222;
background: hsla(0, 0%, 100%, 1);
background: radial-gradient(circle, hsla(0, 0%, 100%, 0.5) 0%, hsla(198, 100%, 75%, 0.7) 100%);
background: -moz-radial-gradient(circle, hsla(0, 0%, 100%, 0.5) 0%, hsla(198, 100%, 75%, 0.7) 100%);
background: -webkit-radial-gradient(circle, hsla(0, 0%, 100%, 0.5) 0%, hsla(198, 100%, 75%, 0.7) 100%);
filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#FFFFFF", endColorstr="#80D8FF", GradientType=1 );
  box-shadow:
    0 12px 25px -10px var(--shadow-color-a),
    0 5px 10px -2px var(--shadow-color-b),
    0 -1px 2px -1px var(--shadow-color-c);
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
  width: 100%;
  max-width: 500px;
}

/* 기본: 데스크탑 */
.text--desktop {
  display: block;
}
.text--compact {
  display: none;
}

.transition-cube-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(6, 1fr);
  pointer-events: none;
}

.transition-cube-layer .cube {
  background-color: #80d8ff; /* 또는 섹션5 이미지와 어울리는 색상 */
  opacity: 0;
}

/* 📱 모바일 (최대 768px) */
@media (max-width: 768px) {
  .section4-columns {
    flex-direction: column;
    height: 100vh;
  }

  .section4-left {
    flex: 0 0 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }

  .layer-text-group {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .marker-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    padding: 10px;
    width: 90%;
    text-align: center;
  }

  .section4-right {
    flex: 0 0 70vh;
    display: flex;
    justify-content: center;
    align-items: flex-end; /* ✅ 하단 기준 정렬 */
    overflow-y: auto;   /* ✅ 세로 스크롤 허용 */
    overflow-x: hidden;
  }

  .map {
    width: 960px;
    height: 1080px;
    position: relative;
    background: url('/wp-content/uploads/2025/11/map-new.jpg') bottom left / cover no-repeat;
    overflow: hidden;
  }

  .layer-text {
background: hsla(0, 0%, 100%, 1);
background: radial-gradient(circle, hsla(0, 0%, 100%, 1) 0%, hsla(173, 38%, 59%, 1) 100%);
background: -moz-radial-gradient(circle, hsla(0, 0%, 100%, 1) 0%, hsla(173, 38%, 59%, 1) 100%);
background: -webkit-radial-gradient(circle, hsla(0, 0%, 100%, 1) 0%, hsla(173, 38%, 59%, 1) 100%);
filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#FFFFFF", endColorstr="#6DBEB5", GradientType=1 );
  }
  /* 텍스트 버전 전환 */
  .text--desktop {
    display: none;
  }
  .text--compact {
    display: block;
  }
}

/* 📱 태블릿 (768px ~ 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .section4-columns {
    flex-direction: row;
    height: 100vh;
  }

  .section4-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
  }

  .section4-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }

  .layer-text-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-width: 600px;
    width: 100%;
  }

  .marker-text {
    position: relative;
    transform: none;
    opacity: 0;
    font-size: 15px;
    padding: 12px 16px;
    width: 100%;
    max-width: 500px;
    text-align: center;
  }

  .map {
    width: 960px;
    height: 1080px;
    position: relative;
    background: url('/wp-content/uploads/2025/11/map-new.jpg') bottom left / cover no-repeat;
    overflow: hidden;
  }

  /* 텍스트 버전 전환 */
  .text--desktop {
    display: none;
  }
  .text--compact {
    display: block;
  }
}

/* ================== Section 5 Specific Styles =================== */
#section-5 {
  display: block;
  width: 100vw;
  position: relative;
  isolation: isolate;
  z-index: 5;
  overflow: hidden;
}

#section-5 .parallax-section {
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

#section-5 .parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-size: cover;
  background-position: center;
  z-index: 5;
  will-change: transform; /* ✅ 성능 향상 */
}

#section-5 .content {
  position: absolute;
  width: 100%;
  padding: 6rem 2rem;
  text-align: center;
  color: white;
  opacity: 0;
  transform: translate(-50%, -50%) translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  top: 50%;
  left: 50%;
  z-index: 6;
background-image: linear-gradient(
  to bottom,
  rgba(0, 0, 0, 0) 0%,
  rgba(0, 0, 0, 0.02) 3%,
  rgba(0, 0, 0, 0.1) 6%,
  rgba(0, 0, 0, 0.3) 10%,
  rgba(0, 0, 0, 0.3) 90%,
  rgba(0, 0, 0, 0.1) 93%,
  rgba(0, 0, 0, 0.02) 96%,
  rgba(0, 0, 0, 0) 100%
);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

#section-5 .content.visible {
  opacity: 1;
  transform: translate(-50%, -50%) translateY(0);
}

#section-5 h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

#section-5 p {
  font-size: 1.2rem;
  line-height: 1.6;
}

.section-5-cloud {
  position: absolute;
}

.section-5-cloud-1 { width: 600px; top: 5%; left: 7%; z-index: 5; opacity:0.5; }
.section-5-cloud-2 { width: 800px; top: 45%; left: 35%; z-index: 6; opacity:0.6; }
.section-5-cloud-3 { width: 500px; top: 25%; right: 8%; z-index: 5; opacity:0.5; }

/* 데스크탑 전용 (1025px 이상) */
@media screen and (min-width: 1025px) {
  #section-5 {
    height: calc(100vh * 5);
  }

  #section-5 .parallax-bg {
    height: 130%;
  }

  #section-5 .content {
    padding: 4rem 2rem;
    font-size: 1rem;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
  }

  #section-5 h2 {
    font-size: 3rem;
  }

  #section-5 p {
    font-size: 1.2rem;
  }
}


/* ================================
   태블릿 및 모바일 가로 (1024px 이하)
================================ */
@media screen and (max-width: 1024px) {
  #section-5 {
    height: auto;
  }

  #section-5 .parallax-bg {
    height: 100vh;
  }

  #section-5 .content {
    position: relative;
    transform: translateY(30px);
    top: auto;
    left: auto;
    padding: 3.5rem 1.5rem;
  }

  #section-5 .content.visible {
    transform: translateY(0);
  }

  #section-5 h2 {
    font-size: 2.4rem;
  }

  #section-5 p {
    font-size: 1rem;
  }

}


/* ================================
   모바일 세로 (768px 이하)
================================ */
@media screen and (max-width: 768px) {
  #section-5 .content {
    padding: 3rem 1.2rem;
    background: rgba(0, 0, 0, 0.6);
    background-image: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  #section-5 h2 {
    font-size: 2rem;
  }

  #section-5 p {
    font-size: 0.95rem;
  }
}

/* ================== Section 6 Specific Styles =================== */
#section-6 {
  position: relative;
  width: 100vw;
  height: 100vh;
  z-index: 10;
  overflow: hidden;
}

.section6-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #80d8ff; /* 덮는 색상 */
  z-index: 7; /* 섹션5보다 높고, 콘텐츠보다 낮게 */
  pointer-events: none;
  opacity: 1;
}

/* 공통 레이어 구조 */
.image-layer,
.text-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  z-index: 10;
}

/* 반쪽 구조 공통 */
.left-half,
.right-half {
  flex: 1;
  width: 50%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  will-change: transform;
}

/* 개별 백그라운드 위치 설정 */
.left-half {
  background-position: center right;
}

.right-half {
  background-position: center left;
}

/* 각 레이어 이미지 */
.layer1 .left-half  { background-image: url('/wp-content/uploads/2025/11/layer1-left-half.jpg'); }
.layer1 .right-half { background-image: url('/wp-content/uploads/2025/11/layer1-right-half.jpg'); }
.layer2 .left-half  { background-image: url('/wp-content/uploads/2025/11/layer2-left-half.jpg'); }
.layer2 .right-half { background-image: url('/wp-content/uploads/2025/11/layer2-right-half.jpg'); }
.layer3 .left-half  { background-image: url('/wp-content/uploads/2025/11/layer3-left-half.jpg'); }
.layer3 .right-half { background-image: url('/wp-content/uploads/2025/11/layer3-right-half.jpg'); }

/* 기본: 데스크탑/가로모드 보이기 */
.layer3 {
  display: flex;
}

.layer3-mobile {
  display: none;
}

.content-block-left,
.content-block-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  width: 80%;
  height:70%;
  max-width: 500px;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.6));
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(3px);
  box-shadow: 
        /* 1. 바닥에 드리우는 크고 흐릿한 그림자 (깊이감 담당) */
        0 12px 25px -10px var(--shadow-color-a), /* Y=12px로 아래 집중 */
        
        /* 2. 요소 바로 아래의 진한 그림자 (가장자리 입체감 담당) */
        0 5px 10px -2px var(--shadow-color-b), /* Y=5px로 아래쪽으로 살짝 이동 */
        
        /* 3. 위쪽에 아주 미세한 하이라이트/역광 (위쪽 그림자 억제) */
        0 -1px 2px -1px var(--shadow-color-c); /* Y=-1px로 위쪽으로 살짝 밀어 연하게 만듦 */
  border-radius: 5px;
  color: white;
  text-align: center;
}
.content-block-left h4,
.content-block-right h4 {
    font-size: 2rem;
  }

.content-block-left span,
.content-block-right span {
    font-size: 0.95rem;
  }

.content-block-left img,
.content-block-right img {
  width: 80%;
  height: auto;
  border-radius: 10px;
}

.content-block-left a,
.content-block-right a {
  color: white;
  text-decoration: underline;
  font-size: 0.95rem;
  font-weight: bold;
}

.content-block-left a:hover,
.content-block-right a:hover {
  color: #e0f7fa;
}

/* layer3 텍스트 블록 좌우 */
.layer3 .left-half {
  display: flex;
  align-items: center;
  justify-content: flex-end; /* 오른쪽 정렬 */
  overflow: hidden;
}

.layer3 .right-half {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* 왼쪽 정렬 */
  overflow: hidden;
}

/* 텍스트 스타일 */
.text-block-left,
.text-block-right {
  opacity: 0;
  transform: translateY(20px);
  font-size: 1.6rem;
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: transform;
}

.text-block-right a {
  color: #80d8ff; /* 원하는 색상으로 변경 가능 */
}

/* 여백 조정 */
.text-block-left {
  margin-right: 0.3rem;
}

.text-block-right {
  margin-left: 0.3rem;
}

@media (max-width: 768px) and (orientation: portrait) {
  .image-layer {
    flex-direction: column;
  }

  .layer3 {
    display: none;
  }

  .layer3-mobile {
    display: block;
    text-align: center;
  }

  .layer3-mobile .left-half .text-block-left {
    display: block;
    width: 90%;
    font-size: 1.6rem;
    white-space: normal;
  }
  .layer3-mobile .right-half .text-block-right {
    display: block;
    width: 90%;
    font-size: 1.3rem;
  }

  .left-half,
  .right-half {
    width: 100%;
    height: 50%;
    background-size: cover;
    background-repeat: no-repeat;
  }

  /* 개별 백그라운드 위치 설정 */
  .left-half {
    background-position: center bottom;
  }

  .right-half {
    background-position: center top;
  }

  .content-block-left h4,
  .content-block-right h4 {
    font-size: 1.6rem;
  }

  .content-block-left span,
  .content-block-right span {
    display: none;
  }

  .content-block-left br,
  .content-block-right br {
    display: none;
  }

  .layer1 .left-half  { background-image: url('/wp-content/uploads/2025/11/layer1-top.jpg'); }
  .layer1 .right-half { background-image: url('/wp-content/uploads/2025/11/layer1-bottom.jpg'); }
  .layer2 .left-half  { background-image: url('/wp-content/uploads/2025/11/layer2-top.jpg'); }
  .layer2 .right-half { background-image: url('/wp-content/uploads/2025/11/layer2-bottom.jpg'); }
  .layer3-mobile .left-half  { background-image: url('/wp-content/uploads/2025/11/layer3-top.jpg'); }
  .layer3-mobile .right-half { background-image: url('/wp-content/uploads/2025/11/layer3-bottom.jpg'); }
}

/* ================== Section 7 Specific Styles =================== */


#section-7 {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

#section-7 canvas {
  display: block;
}

#webgl {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.card-container {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%) rotateZ(-10deg);
  perspective: 1000px;
  width: 500px;
  height: 230px;
  z-index: 2;
}

.card {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 1s ease;
}

.card.flipped {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
}

.card-front {
  background-color: transparent;
  color: transparent;
  pointer-events: none;
}

.card-back {
  background-color: rgba(255,255,255,0.95);
  color: #222;
  transform: rotateY(180deg);
  font-family: "Apple Chancery", "Snell Roundhand", "Lucida Handwriting", cursive;
  font-size: 1.6rem;
  padding: 20px;
  text-align: center;
  line-height: 1.6;
  word-break: keep-all;
}

.credit-box {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 0.35em;
  color: white;
  opacity: 0.6;
  font-family: sans-serif;
  z-index: 9999;
}

/* Responsive */
@media (max-width: 768px) {
  .card-container {
    width: 400px;
    height: 250px;
  }
  .card-back {
  font-size: 1.4rem;
  padding: 20px;
  }
}
/* ================== Cloud Motion Styles =================== */
.cloud {
  position: fixed;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: contain;
  width: 300px;
  height: 200px;
  opacity: 0.5;
  pointer-events: none;
}

#section-6 .cloud {
  z-index: 9;
}

.cloud-1 {
  background-image: url('/wp-content/uploads/2025/11/cloud01.webp');
}

.cloud-2 {
  background-image: url('/wp-content/uploads/2025/11/cloud02.webp');
}

.cloud-3 {
  transform: translateX(-50%);
  background-image: url('/wp-content/uploads/2025/11/cloud03.webp');
}

#rain-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.raindrop {
  background-color: rgba(0, 119, 204, 0.3);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10;
}

.snowflake {
  animation: fall linear infinite;
}

@keyframes fall {
  to {
    transform: translateY(100vh);
  }
}

/* ============================================================
   Single-page Style
   ============================================================ */

.page-banner {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
}

/* 이미지 */
.banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ✅ 타이틀용 반투명 오버레이 */
.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
  pointer-events: none;
}

.banner-title {
  position: absolute;
  bottom: 60px; /* ✅ 여백 살짝 위로 조정 */
  left: 25%;
  transform: translateX(0%);
  color: white;
  text-align: center;
  padding: 20px 40px;
  z-index: 10;
  pointer-events: none; /* ✅ 배너 클릭 방해 방지 */
}

.banner-title .entry-title {
  font-size: 6rem; /* ✅ 훨씬 크게 */
  font-weight: 400;
  margin: 0;
  line-height: 1.1;
  font-family: "Didot", "Didot LT STD", "Hoefler Text", "Garamond", "Times New Roman", serif;
  filter: drop-shadow(6px 6px 10px rgba(0, 0, 0, 0.25)); /* ✅ 깊이감 강조 */
  letter-spacing: 0.02em;
}

@media (max-width: 767px) {
  .banner-title {
  }

  .banner-title .entry-title {
    font-size: 2.5rem; /* ✅ 훨씬 크게 */
  }
}

.entry-title {
  visibility: hidden;
}

/* 애니메이션 레이어 컨테이너 */
.banner-layers {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* 오버레이 & 이미지 공통 */
.overlay,
.banner-image {
  position: absolute;
  top: 0;   /* JS에서만 offset 제어 */
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateY(100%); /* ✅ 초기 상태 */
}

.overlay.white {
  background-color: rgba(255, 255, 255, 1);
  z-index: 1;
}

.overlay.blue {
  background-color: rgba(128, 216, 255, 1);
  z-index: 2;
}

.banner-image {
  z-index: 3;
  overflow: hidden;
}


.page-content #pin-section,
.page-content section {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
  position: relative;
}
.page-id-228 .page-content,
.page-id-120 .page-content,
.page-id-282 .page-content,
.page-id-121 .page-content, 
.page-id-56 .page-content, 
.page-id-510 .page-content, 
.page-id-63 .page-content,
.page-id-361 .page-content {
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.6));
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(3px);
  border-radius: 3px;
  padding: 2rem;
  margin-top: 60px;
  box-shadow: 
        /* 1. 바닥에 드리우는 크고 흐릿한 그림자 (깊이감 담당) */
        0 12px 25px -10px var(--shadow-color-a), /* Y=12px로 아래 집중 */
        
        /* 2. 요소 바로 아래의 진한 그림자 (가장자리 입체감 담당) */
        0 5px 10px -2px var(--shadow-color-b), /* Y=5px로 아래쪽으로 살짝 이동 */
        
        /* 3. 위쪽에 아주 미세한 하이라이트/역광 (위쪽 그림자 억제) */
        0 -1px 2px -1px var(--shadow-color-c); /* Y=-1px로 위쪽으로 살짝 밀어 연하게 만듦 */
}

/* Rules Page 리스트 아이템 사이 간격 넓히기 */
.page-id-120 .wp-block-list li {
  margin-bottom: 1em; /* 기본보다 넓게 (16px 정도) */
}

/* Rules Page 마지막 li는 간격 제거 */
.page-id-120 .wp-block-list li:last-child {
  margin-bottom: 0;
}

/* Participation Page 리스트 블록 간격 */
.page-id-121 .wp-block-list li {
  margin-bottom: 1em; /* 16px 정도 */
  line-height: 1.6;   /* 줄 간격도 조금 넓혀줌 */
}

/* Participation Page 마지막 li는 여백 제거 */
.page-id-121 .wp-block-list li:last-child {
  margin-bottom: 0;
}

/* Contact Form Mail 전체 폼 스타일 */
.postcard-wrapper {
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

/* 전체 폼 스타일 */
.wpzoom-forms_form {
  /*background-color: white;*/
  padding: 30px;
  /*border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);*/
  font-family: 'Courier New', Courier, monospace;
  position: relative; /* 우표 이미지 고정용 */
}

/* 인풋 필드 스타일 */
.wpzoom-forms_form input[type="text"],
.wpzoom-forms_form input[type="email"],
.wpzoom-forms_form textarea {
  border: none;
  border-bottom: 2px solid #ccc;
  background-color: transparent;
  padding: 10px 0;
  width: 100%;
  box-sizing: border-box;
  font-size: 16px;
  color: #333;
}

/* Placeholder 스타일 */
.wpzoom-forms_form input::placeholder,
.wpzoom-forms_form textarea::placeholder {
  color: #cdcdcd;
  user-select: none;
  text-align: left;
  font-size: 14px;
}

/* 버튼 스타일 */
.wpzoom-forms_form .is-style-classic {
  background-color: transparent;
  border: none;
  font-size: 16px;
  color: #333;
  padding: 10px 20px;
  cursor: pointer;
  font-family: 'Courier New', Courier, monospace;
  transition: all 0.3s ease;
  box-shadow: none;
  border-radius: 0;
}

.wpzoom-forms_form .is-style-classic:hover {
  color: #fff;
  text-decoration: underline;
  background-color: #80d8ff;
}

/* 폼이 들어간 컬럼 */
.postcard-column {
  position: relative;
  /*overflow: hidden;  이미지가 삐져나간 부분 잘라냄 */
}

/* 우표 이미지 */
.stamp-image {
  position: absolute;
  top: -20px;
  right: -30px;
  width: 150px;
  height: auto;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 768px) {
  .stamp-image {
    display: none;
  }
}
/* ============================================================
   Footer Style
   ============================================================ */
/* Main Page 풋터 컬러 스타일 */
.page-id-6 .single-footer {
  color: #dcdcdc;
  padding: 100px 20px 20px 20px;
}

.page-id-6 .footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #dcdcdc;
  padding-top: 15px;
  font-size: 13px;
  color: #dcdcdc;
}

.page-id-6 .footer-left,
.page-id-6 .footer-right {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 20px;
  color: #dcdcdc;
}

/* Single Page 풋터 컬러 스타일 */
.single-footer {
  color: #5a7eab;
  padding: 100px 20px 20px 20px;
}

/* Footer Main: 2컬럼 */
.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0 20px;
}

/* Footer Column 공통 스타일 */
.footer-left,
.footer-right {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 20px;
}

/* 위젯 너비 */
.footer-left-widget,
.footer-right-widget {
  width: 100%;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #c6eeff;
  padding-top: 15px;
  font-size: 13px;
  color: #5a7eab;
}

.wp-block-search__button:hover {
  background-color: #fff !important;
  color: #80d8ff !important;
}

.wp-block-social-links .wp-social-link {
  background-color: #5a7eab !important;
  color: #fff !important;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.wp-block-social-links .wp-social-link:hover {
  background-color: #fff !important;
  color: #5a7eab !important;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-left,
  .footer-right {
    flex: 1 1 0;
  }
}

/* ============================================================
   Styles for mobile devices with min-width of 1024px
   ============================================================ */
/* ============================================================
   Styles for mobile devices with max-width of 1023px
   ============================================================ */
/* ============================================================
   Styles for mobile devices with max-width of 768px
   ============================================================ */
/* ============================================================
   Styles for landscape orientation with max-height of 450px (e.g. small landscape screens)
   ============================================================ */
