@charset "UTF-8";
@font-face {
  font-family: "GmarketSansMedium";
  src: url("https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
html > body {
  font-family: "GmarketSansMedium";
}

/* 🔵 공통 애니메이션 (fade-up) */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* 커스텀 */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20000;
}
.top-bar .logo {
  display: inline-block;
}
.top-bar img {
  display: block;
  width: 125px;
  height: auto;
  max-height: 20%;
}

/* =========================
   TOP BAR SCROLL BACKGROUND
========================= */
.top-bar {
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease, -webkit-backdrop-filter 0.35s ease;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease, -webkit-backdrop-filter 0.35s ease;
}

.top-bar.scrolled {
  background: rgba(0, 0, 0, 0.65);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

/* ▶ PC 기본: 모바일 로고 숨김 */
.logo-mobile {
  display: none !important;
}

.logo-pc {
  margin-top: -20px;
  margin-left: clamp(0px, 3%, 0px);
  display: block !important;
  min-width: 100px;
}

/* ▶ 모바일 화면에서 로고 스위칭 */
@media (max-width: 768px) {
  /* PC 로고 숨기기 */
  .logo-pc {
    display: none !important;
  }
  /* 모바일 로고 표시 */
  .logo-mobile {
    display: inline-block !important;
    width: 80px !important;
    height: 80px !important;
    margin-top: -20px !important;
  }
  /* logo 내부 다른 이미지 스타일 안정화 */
  .logo img {
    width: 100%;
    height: auto;
  }
}
.top-bar__inner {
  padding-top: 40px;
  padding-inline: 3.5%;
  width: auto;
  display: flex;
  justify-content: space-between;
}

.top-bar__menu-1 .menu {
  /* ===========================
     TOP BAR - GLOW EFFECT
  =========================== */
}
.top-bar__menu-1 .menu-item {
  padding-inline: 20px;
}
.top-bar__menu-1 .menu-item:hover > .menu-item-text {
  color: #fff;
}
.top-bar__menu-1 .menu-item.menu-hover > a > a::after, .top-bar__menu-1 .menu-item:hover:not(:last-child) > a > a::after, .top-bar__menu-1 .menu-item:hover > a::after {
  color: #fff;
  opacity: 0.5;
}
.top-bar__menu-1 .menu-item.menu-hover > a .sub-menu-box, .top-bar__menu-1 .menu-item:hover:not(:last-child) > a .sub-menu-box, .top-bar__menu-1 .menu-item:hover .sub-menu-box {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 10px, 0);
}
.top-bar__menu-1 .menu-item-text {
  color: #b3b3b3;
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  padding: 20px 5px;
  transition: color 0.3s, opacity 0.3s;
}
.top-bar__menu-1 .menu .top-bar__menu a {
  transition: all 0.25s ease;
}
.top-bar__menu-1 .menu .top-bar__menu a:hover,
.top-bar__menu-1 .menu .top-bar__menu a.active {
  color: #fff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.8), 0 0 16px rgba(255, 255, 255, 0.6);
}
.top-bar__menu-1 .sub-menu-box {
  position: absolute;
  width: 200px;
  background-color: #212121;
  color: #a9a9a9;
  right: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 99999;
  border-radius: 3px;
  transform: translate3d(0, 20px, 0);
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.top-bar__menu-1 .sub-menu-box .sub-menu {
  padding-block: 20px;
}
.top-bar__menu-1 .sub-menu-box .sub-menu .sub-menu-text {
  display: block;
  padding: 10px 25px 10px 20px;
  font-size: 14px;
  color: #a9a9a9;
  font-weight: bold;
}

/* =============================
   🔵 GlowSeoul 스타일 모바일 메뉴
   Fade-in + Slide-down 애니메이션
============================= */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
  z-index: 500;
}
.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* 메뉴 전체 블록 */
.mobile-menu-content {
  position: relative;
  text-align: center;
  color: #fff;
  /* ↓ 등장 애니메이션 초기 상태 */
  transform: translateY(-40px);
  opacity: 0;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.55s ease;
  /* active일 때 자연스럽게 내려옴 */
}
.active .mobile-menu-content {
  transform: translateY(0);
  opacity: 1;
}

/* 닫기 버튼 (X) */
.mobile-close-btn {
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 36px;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.3s;
}
.mobile-close-btn:hover {
  opacity: 0.6;
}

/* 메뉴 리스트 */
.mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 40px;
}
.mobile-menu-list li {
  margin: 22px 0;
}
.mobile-menu-list li a {
  color: #fff;
  font-size: 30px;
  font-weight: 300;
  display: inline-block;
  transition: opacity 0.3s ease;
}
.mobile-menu-list li a:hover {
  opacity: 0.6;
}

.video-banner__inner {
  aspect-ratio: 2.33333;
}
.video-banner__inner .main-video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 0px;
     object-position: center 0px;
}

.elementor-section {
  background-color: #000;
  padding-block: clamp(40px, 4vw, 75px);
}
.elementor-section .elementor-section-container {
  padding-left: 1rem;
  max-width: 1600px;
  margin: 0 auto;
}

.section-1__head .head-sub-title {
  font-size: 26px;
  font-weight: bold;
  color: #b9b9b9;
}
.section-1__head .head-main-title {
  font-size: 111px;
  font-weight: bold;
  color: #fff;
}

/* 기본: PC/태블릿에서는 br 숨김 */
.mobile-br {
  display: none;
}

/* 모바일에서는 br 보이기 */
@media (max-width: 768px) {
  .mobile-br {
    display: inline;
    text-align: left;
  }
}
.section-1__body {
  margin-top: 25px;
}
.section-1__body .des-text {
  font-size: 20px;
  font-weight: bold;
  color: #9c9c9c;
}

.section-1__right-content {
  position: relative;
}
.section-1__right-content .btn-link {
  position: absolute;
  top: 50px;
  right: 100px;
}
.section-1__right-content .btn-link a {
  color: #fff;
  font-weight: bold;
  position: relative;
}
.section-1__right-content .btn-link a::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 1px;
  background-color: #fff;
  top: 30%;
  left: calc(100% + 10px);
  transform: translateY(-50%);
}

/* 🔵 문의하기 버튼 가로쓰기 강제 */
.section-1__right-content .btn-link a {
  writing-mode: horizontal-tb !important;
  white-space: nowrap;
}

.section-2 {
  background-color: #000;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-block: clamp(80px, 6vw, 140px);
  padding-bottom: 50px;
  padding-top: 50px;
  /* 모바일 (max-width: 768px 이하) */
}
.section-2 .section-2__container {
  align-items: center !important;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
  align-items: center;
  gap: 80px;
}
.section-2 .section-2__left {
  text-align: left;
  overflow: hidden;
  flex: 1;
}
.section-2 .section-2__left .section-2__title {
  font-size: 34px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 25px;
}
.section-2 .section-2__left .section-2__text {
  font-size: 16px;
  color: #b7b7b7;
  line-height: 1.65;
  font-weight: 500;
  justify-content: left;
}
.section-2 .section-2__right {
  margin-top: -750px;
  margin-right: -50px;
}
@media (max-width: 768px) {
  .section-2 .section-2__left {
    text-align: left;
    justify-content: left;
    margin: 0 auto;
    margin-bottom: 12px;
  }
}
.section-2 .section-2__right {
  flex: 1;
  display: flex;
  justify-content: right;
}
.section-2 .section-2__right img {
  padding: 0;
  width: 100%;
  max-width: 480px;
  border-radius: 12px;
  display: block;
}
@media (max-width: 768px) {
  .section-2 .section-2__container {
    min-height: 850px;
  }
  .section-2 .section-2__text-wrapper {
    max-height: 300px; /* 원하는 높이로 조절 */
    overflow: hidden; /* 넘치는 텍스트 숨김 */
  }
}
@media (max-width: 1024px) {
  .section-2 .section-2__right img {
    transform: rotate(90deg);
    margin-top: 600px;
  }
}
@media (max-width: 768px) {
  .section-2 .section-2__right img {
    transform: rotate(90deg);
    margin-top: 600px;
  }
}

/* -------------------------
   햄버거 메뉴
---------------------------- */
.hamburger {
  flex: 0 0 auto;
  width: 32px !important;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 9999;
  position: absolute;
  top: 40px;
  right: 40px;
}
.hamburger span {
  width: 32px;
  display: block;
  height: 3px;
  background: #b7b7b7;
  border-radius: 3px;
  transition: 0.3s ease;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

@media (min-width: 768px) {
  .hamburger {
    display: none !important;
  }
}
.hamburger.active span {
  background-color: #fff !important;
}

/* -------------------------
   모바일 메뉴
---------------------------- */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: black;
  padding-top: 120px;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.45s ease-out;
  z-index: 9990;
  text-align: center;
  /* 순차 애니메이션 (GlowSeoul 느낌) */
}
.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 24px;
}
.mobile-nav ul li {
  margin: 20px 0;
  opacity: 0;
  transform: translateY(-10px);
  transition: 0.4s ease-out;
}
.mobile-nav ul li a {
  color: #fff;
  text-decoration: none;
}
.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
}
.mobile-nav.open ul li {
  opacity: 1;
  transform: translateY(0);
}
.mobile-nav.open ul li:nth-child(1) {
  transition-delay: 0.15s;
}
.mobile-nav.open ul li:nth-child(2) {
  transition-delay: 0.25s;
}
.mobile-nav.open ul li:nth-child(3) {
  transition-delay: 0.35s;
}
.mobile-nav.open ul li:nth-child(4) {
  transition-delay: 0.45s;
}
.mobile-nav.open ul li:nth-child(5) {
  transition-delay: 0.55s;
}
.mobile-nav.open ul li:nth-child(6) {
  transition-delay: 0.65s;
}
.mobile-nav.open ul li:nth-child(7) {
  transition-delay: 0.75s;
}

@media (max-width: 768px) {
  .section-1__container {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
  }
  .section-1__right-content {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  .btn-link a {
    display: inline-block;
  }
}
@media (max-width: 768px) {
  /* 텍스트 좌우 여백 */
  .section-1__left-content {
    padding: 0 40px;
  }
  /* 🔵 모바일에서 Team ANT 폰트 크기 줄이기 */
  .section-1__head .head-main-title {
    font-size: 85px;
    line-height: 1.1;
  }
  /* 문의하기 버튼도 동일하게 중앙에 */
  .section-1__right-content {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .section-2__container {
    height: 400px;
    flex-direction: column;
    text-align: left;
    gap: 40px;
    padding: 0 50px;
  }
  .section-2__left {
    width: 100%;
    margin-bottom: 10px;
  }
  .section-2__right {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .section-2__right img {
    max-width: 100%;
    display: block;
  }
  .section-2__title {
    font-size: 26px;
  }
  .section-2__text {
    font-size: 14px;
    overflow: hidden;
  }
}
@media (max-width: 1024px) {
  .section-2__container {
    flex-direction: column;
    gap: 40px;
    align-items: stretch;
  }
  .section-2__text-wrapper {
    height: 300px; /* 보여질 영역 높이, 필요하면 조절 가능 */
    overflow: hidden; /* 넘치는 부분 가림 */
    position: relative;
    margin-top: 20px;
  }
  .section-2__left {
    width: 100%;
    order: 1;
    position: relative;
    z-index: 50px;
  }
  .section-2__right {
    width: 100%;
    position: relative;
    margin-top: 0;
    transform: none;
    order: 2;
    z-index: 10;
    display: flex;
    flex-shrink: 0;
  }
  .section-2__right img {
    max-width: 80%;
    display: block;
  }
}
/* =========================================================
   🔵 Section 2 타이틀 — Section 1과 동일한 스타일 적용
========================================================= */
.section-2 {
  padding-top: 75px;
}
.section-2 .section-2__sub-title {
  font-size: 26px;
  font-weight: bold;
  color: #b9b9b9;
  margin-bottom: 10px;
  padding-left: 20px;
}
.section-2 .section-2__main-title {
  font-size: 45px;
  font-weight: bold;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 25px;
}
.section-2 .section-2__text {
  font-size: 20px;
  font-weight: 500;
  color: #b7b7b7;
  line-height: 1.65;
  padding-left: 20px;
}

/* ---------------------------------------
   🔵 Section 1 — 모바일에서 문의하기 버튼 중앙 정렬
---------------------------------------- */
@media (max-width: 768px) {
  .section-1__right-content {
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
  }
  .section-1__right-content .btn-link {
    position: static; /* absolute 해제 */
    margin-top: 10px;
  }
  .section-1__right-content .btn-link a {
    display: inline-block;
  }
}
/* ---------------------------------------
   🔵 Section 1 — 모바일에서 버튼이 텍스트를 침범하지 않도록 강제 분리
---------------------------------------- */
@media (max-width: 768px) {
  .section-1__container {
    flex-direction: column; /* 가로 → 세로 배치 */
    align-items: center; /* 가운데 정렬 */
    text-align: center;
  }
  .section-1__right-content {
    width: 100%;
    margin-top: 20px; /* 텍스트와 공간 확보 */
    display: flex;
    justify-content: center;
  }
  .section-1__right-content .btn-link {
    position: static;
  }
}
/* ================================
   SECTION 2 — 입상 이력 스크롤 애니메이션
================================ */
.section-2__text-wrapper {
  height: 500px; /* 보여질 영역 높이, 필요하면 조절 가능 */
  overflow: hidden; /* 넘치는 부분 가림 */
  position: relative;
  margin-top: 20px;
}

.section-2__text {
  position: absolute;
  display: inline-block;
  animation: verticalScroll 15s linear infinite;
  /* 줄 간격 더 보기 좋게 */
  line-height: 1.8;
  font-size: 10px;
}

/* 위→아래로 흐르는 애니메이션 */
@keyframes verticalScroll {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
/* -----------------------------------
   SECTION 3
----------------------------------- */
.section-3 {
  width: 100%;
  padding: 100px 0;
  background-color: #0d0d0d;
  /* 메인 강조 카드 색상 */
}
.section-3 .section-3__inner {
  width: 85%;
  max-width: 1400px;
  margin: 0 auto;
}
.section-3 .section-3__title {
  font-size: 75px;
  font-weight: 800;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 40px;
  position: relative;
  color: #fff;
}
.section-3 .section-3-line {
  display: block;
  width: 0;
  height: 1px;
  background: #fff;
  margin: 15px auto 0;
  animation: expandLine 1.2s ease-out forwards;
  animation-delay: 0.4s;
}
.section-3 .section-3__cards {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}
.section-3 .card {
  flex: 1 1 300px;
  background: rgba(255, 255, 255, 0.062745098);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1450980392);
  transition: 0.3s ease;
}
.section-3 .card:hover {
  transform: translateY(-8px);
}
.section-3 .card .card__icon-text {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.section-3 .card .card__price {
  font-size: 38px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
}
.section-3 .card .card__label {
  font-size: 18px;
  color: #ff2f6a;
  font-weight: 600;
  margin-bottom: 25px;
}
.section-3 .card .card__list {
  list-style: none;
  padding: 0;
  margin-bottom: 35px;
}
.section-3 .card .card__list li {
  font-size: 16px;
  color: #ddd;
  margin-bottom: 10px;
}
.section-3 .card .card__btn {
  width: 100%;
  display: inline-block;
  padding: 14px 0;
  background: #ff2f6a;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
}
.section-3 .card .card__btn:hover {
  background: #ff4e82;
}
.section-3 .card--active {
  background: #ff2f6a;
  border: none;
}
.section-3 .card--active .card__price,
.section-3 .card--active .card__label,
.section-3 .card--active .card__list li {
  color: #fff;
}
.section-3 .card--active .card__btn {
  background: #fff;
  color: #ff2f6a;
}
.section-3 .card--active .card__btn:hover {
  background: #f0f0f0;
}

/* -----------------------------------
   RESPONSIVE
----------------------------------- */
@media (max-width: 768px) {
  .section-3 {
    padding: 100px 0;
  }
  .section-3 .fade-up {
    transition-delay: 0s !important;
  }
  .section-3 .section-3__title {
    font-size: 55px;
  }
  .section-3 .section-3-line {
    display: block;
    width: 0;
    height: 1px;
    background: #fff;
    margin: 15px auto 0;
    animation: expandLine 1.2s ease-out forwards;
    animation-delay: 0.4s;
  }
  .section-3 .card {
    width: 100%;
    max-width: 350px;
  }
}
@media (max-width: 768px) {
  .section-3 {
    padding: 20px 0 20px;
  }
}
/* =============================
   SECTION 4 — 리뷰 섹션
============================= */
.section-4 {
  overflow-x: hidden;
  width: 100%;
  text-align: center;
  background: #000;
  color: #fff;
  padding: 120px 20px;
  margin-top: -75px;
  /* 리뷰 슬라이더 */
}
.section-4 .section-4__inner {
  max-width: 1200px;
  text-align: center;
  margin: 0 auto;
}
.section-4 .section-4-title {
  position: relative;
  font-size: 75px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 60px;
  text-align: center;
  /* 중앙 → 양옆 확장 라인 */
}
.section-4 .section-4-title span {
  display: block;
  font-size: 30px;
  font-weight: 400;
  margin-top: 15px;
  color: #999;
}
.section-4 .section-4-title .section-4-line {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 25px;
  width: 0;
  height: 1px;
  background: #fff;
  animation: expandLine 1.2s ease-out forwards;
  animation-delay: 0.4s;
  opacity: 1 !important;
  transform: translateY(0) !important;
}
@keyframes expandLine {
  from {
    width: 0;
  }
  to {
    width: 400px;
  }
}
.section-4 .review-slider {
  width: 100%;
  overflow: visible;
  position: relative;
}
.section-4 .review-track {
  overflow: visible !important;
  display: flex;
  gap: 40px;
  animation: slide-left 15s linear infinite;
}
.section-4 .review-track img {
  height: 380px; /* 🔥 이미지 기본 크기 크게 */
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}
.section-4 .review-track img:hover {
  transform: scale(1.12); /* 확대 */
  overflow: visible;
  z-index: 10;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.5), 0 0 70px rgba(255, 255, 255, 0.3);
}
@media (max-width: 768px) {
  .section-4 .review-track img {
    height: 350px; /* 모바일에서 이미지 크기 조정 */
  }
}

/* 🔄 오른쪽 → 왼쪽 반복 */
@keyframes slide-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .review-slider,
  .review-track {
    overflow: visible !important;
  }
  .section-4 .review-track img {
    transform-origin: center center; /* 확대 기준 중앙 */
  }
}
/* ===============================
   SECTION 5 — Title + Underline
================================= */
#section-5 {
  margin-top: -100px;
}
#section-5 .section-5-title-box {
  text-align: center;
  margin-bottom: 25px;
}
#section-5 .section-5-title-box .section-5-title {
  font-size: 60px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  opacity: 0;
  animation: titleFadeUp 1.1s ease-out forwards;
}
#section-5 .section-5-title-box .section-5-underline {
  display: block;
  width: 0;
  height: 1px;
  background: #fff;
  margin: 10px auto 0;
  opacity: 0;
  animation: underlineGrow 1.2s ease-out forwards;
  animation-delay: 0.3s; /* 제목 뜬 뒤 실행 */
}

/* Fade-up for Title */
@keyframes titleFadeUp {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Underline Animation */
@keyframes underlineGrow {
  0% {
    width: 0;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    width: 350px; /* PC 길이 */
    opacity: 1;
  }
}
/* ===============================
   Responsive (Mobile)
================================= */
@media (max-width: 768px) {
  #section-5 .section-5-title-box .section-5-title {
    font-size: 3rem;
  }
  /* 모바일에서 밑줄 길이만 조정 */
  @keyframes underlineGrow {
    0% {
      width: 0;
      opacity: 0;
    }
    100% {
      width: 180px; /* Mobile shorter */
      opacity: 1;
    }
  }
}
/* ============================
   SECTION 5 — Media Section
=============================== */
/* SECTION 5 전체를 중앙 정렬 */
.section-5 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center; /* 🔥 수평 중앙 정렬 */
  justify-content: center;
  text-align: center;
  padding-bottom: 100px;
}

.media-section {
  width: 100%;
  padding: 120px 20px;
  background: #000;
  color: #fff;
}

.media-grid {
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto; /* 🔥 확실한 중앙 정렬 */
}

.media-container {
  max-width: 1200px;
  margin: 0 auto;
}

.media-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 60px;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 900px;
}

.media-card {
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.media-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.08);
}

.media-thumb img {
  width: 100%;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.media-desc {
  padding: 16px;
  font-size: 16px;
  opacity: 0.9;
  text-align: center;
}

.media-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.media-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.8); /* ✨ 부드러운 화이트 글로우 */
}

/* 반응형 */
@media (max-width: 768px) {
  .media-grid {
    grid-template-columns: 1fr;
  }
  .media-thumb img {
    height: 250px;
  }
}
/* ----------------------------------------
   Footer
----------------------------------------- */
.site-footer {
  background: #0d0d0d;
  color: #fff;
  padding: 60px 40px 40px;
  margin-top: 0px;
}
.site-footer .footer-container {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .site-footer .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
}
.site-footer .footer-logo {
  width: 150px;
  margin-top: -30px;
  margin-bottom: 0px;
}
@media (max-width: 768px) {
  .site-footer .footer-logo {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}
.site-footer .footer-description {
  font-size: 8px;
  opacity: 0.8;
  line-height: 1.5;
}
.site-footer .footer-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 12px;
}
.site-footer ul {
  list-style: none;
  padding: 0;
}
.site-footer ul li {
  margin-bottom: 6px;
  font-size: 14px;
  opacity: 0.85;
}
.site-footer .footer-bottom {
  text-align: center;
  font-size: 14px;
  opacity: 0.6;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}
.site-footer .footer-sns {
  display: flex;
  gap: 18px;
  margin-bottom: 20px;
  justify-content: center;
}
.site-footer .footer-sns .sns-item {
  font-size: 26px;
  color: #b9b9b9;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.site-footer .footer-sns .sns-item:hover {
  opacity: 0.6;
  transform: translateY(-2px);
}
.site-footer .footer-sns .sns-item:hover svg {
  width: 28px;
  height: 28px;
  display: block;
}

/* ===========================
   ACTIVE MENU GLOW EFFECT
=========================== */
.menu-item-text.active {
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 31, 107, 0.7), 0 0 20px rgba(255, 31, 107, 0.5);
  font-weight: 700;
}

/* 기본 안전망 — 대부분의 경우 가로 스크롤을 숨김 */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

/* 박스 사이징 통일(여백으로 인한 오버플로우 방지) */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 이미지/비디오/iframe이 부모를 벗어나지 않게 */
img,
picture,
video,
iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

/* 100vw 관련 문제 방지: 너비 지정할 때는 100%를 우선 사용 */
.fullwidth,
.hero,
.section {
  width: 100%;
  max-width: 100%;
}