@charset "utf-8";

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Noto Sans KR', '맑은 고딕', Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #121212;
  overflow-x: hidden;
}

ol, ul { list-style: none; }
a, a:visited, a:active, a:hover { text-decoration: none; }
img { vertical-align: top; max-width: 100%; }
.cf::after { display: block; content: ""; clear: both; }

/* ======= HEADER ======= */
#header {
  width: 100%;
  position: relative;
}

.headerin {
  width: 100%;
  height: 867px;
  position: relative;
}

/* YouTube 배경 래퍼 */
.yt-wrap {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  overflow: hidden;
  z-index: 0;
  background: #000;
}

.yt-wrap iframe,
.yt-wrap #ytPlayer {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 177.78vh;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.30);
  z-index: 1;
}

/* 영상 컨트롤 버튼 */
.video-controls {
  position: absolute;
  bottom: 36px;
  right: 40px;
  z-index: 20;
  display: flex;
  gap: 12px;
}

.vc-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.8);
  background: rgba(0,0,0,0.45);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.vc-btn:hover {
  background: rgba(255,255,255,0.2);
  border-color: #fff;
  transform: scale(1.1);
}

/* Fixed header bar */
.hbg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 185px;
  background: #fff;
  opacity: 0.7;
  z-index: 100;
  transition: height 0.3s, opacity 0.3s;
}

.hbg2 {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 6px;
  background: #85af4b;
  z-index: 200;
}

.header_menu {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  width: 1100px;
}

.header_menu.scrolled .hbg {
  height: 72px;
  opacity: 0.95;
}

/* GNB Navigation */
.gnb {
  width: 1100px;
  margin: 0 auto;
  position: relative;
}

.gnb > h1 {
  text-align: center;
  position: absolute;
  top: 2px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
}

.gnb > h1 img {
  height: 80px;
  width: auto;
}

.gnb > ul {
  position: absolute;
  top: 0;
  left: 0;
}

.d1 {
  float: left;
  padding-top: 90px;
  width: 119px;
  margin-left: 30px;
  text-align: center;
}

.d1 > p {
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.d1 > p a {
  color: #252525;
  font-size: 15px;
  font-weight: 400;
}

.d1 > p a:hover {
  color: #ca1e2c;
}

.d1 .kor {
  display: none;
  padding-bottom: 5px;
  border-bottom: 1px solid #000;
  font-size: 12px;
}

.d1:hover .kor {
  display: block;
}

.insta {
  position: absolute;
  top: 88px;
  right: 60px;
}

.insta img { width: 28px; height: auto; }

.log_btn {
  position: absolute;
  top: 85px;
  right: 25px;
}

.log_btn img { height: 24px; width: auto; }

/* Scrolled state */
.scrolled .gnb > h1 img { height: 40px; }
.scrolled .d1 { padding-top: 18px; }
.scrolled .insta { top: 12px; }
.scrolled .log_btn { top: 8px; }

/* Mobile menu toggle */
.mobile-menu-btn {
  display: none;
  position: fixed;
  top: 15px; right: 20px;
  z-index: 300;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-btn span {
  display: block;
  width: 28px;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: 0.3s;
}

/* ======= MAIN CONTAINER ======= */
#mcontainer {
  width: 100%;
  height: auto;
}

/* ======= INTRO TITLE ======= */
.mainProdT {
  width: 1100px;
  margin: 0 auto;
  margin-top: 170px;
  padding: 0 20px;
}

.mainProdT p {
  text-align: center;
  color: #525050;
}

.mainProdT p:nth-child(1) {
  font-size: 60px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 80px;
}

.mainProdT p:nth-child(2) {
  font-size: 30px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 50px;
}

.mainProdT p:nth-child(3) {
  font-size: 16px;
  color: #a1a1a1;
}

/* ======= MAIN PRODUCT (ABOUT) ======= */
.mainProd {
  width: 1100px;
  margin: 0 auto;
  margin-top: 80px;
}

.mainProd ul { margin-bottom: 1px; overflow: hidden; }

.mainProd li {
  position: relative;
  float: left;
  width: 49%;
  height: 549px;
  margin-bottom: 0;
}

.mainProd .n2 {
  border: 1px solid #e1e1e1;
  border-left: none;
}

.mainProd .photo { width: 100%; height: 100%; }
.mainProd .photo img { width: 100%; height: 100%; object-fit: cover; }

.mainProd .text {
  position: absolute;
  top: 142px; left: 0;
  text-align: center;
  color: #a1a1a1;
  width: 100%;
  font-size: 16px;
}

.mainProd .text_p1 { font-size: 16px; }

.mainProd .text_p2 {
  font-size: 32px;
  margin: 15px 0 25px;
  font-weight: 600;
  color: #525050;
}

.mainProd .text_p3 {
  font-size: 14px;
  margin: 5px 0 35px;
  line-height: 27px;
}

.mainProd .text_p4 {
  display: inline-block;
  width: 160px;
  height: 54px;
  border: 1px solid #e1e1e1;
  line-height: 54px;
  margin-top: 20px;
  transition: border-color 0.2s;
}

.mainProd .text_p4:hover { border-color: #333; }

.mainProd .text_p4 a {
  display: block;
  font-size: 13px;
  color: #a1a1a1;
}

.proline {
  position: absolute;
  bottom: 0; left: 0;
  width: 10%; height: 4px;
  background: #ca1e2c;
}

/* ======= 이벤트 예약 가족 ======= */
.maincus {
  width: 100%;
  height: auto;
  margin-top: 255px;
}

.maincus ul { overflow: hidden; }

.maincus ul li {
  width: 33.33333%;
  height: 352px;
  float: left;
  border: 1px solid #e1e1e1;
  box-sizing: border-box;
  position: relative;
  text-align: center;
  border-bottom: 0;
  background-size: cover;
  background-position: center;
}

.maincus .c1 { background-image: url('../img/c1.jpg'); }
.maincus .c2 { background-image: url('../img/c2.jpg'); }
.maincus .c3 { background-image: url('../img/c3.jpg'); }

.maincus .c1 .c1_p {
  padding: 80px;
  color: #ca1e2c;
}

.c1_p2 {
  font-size: 18px;
  margin: 10px 0 20px;
}

.c1_p2 a { color: #ca1e2c; }

.c1_line {
  width: 50px;
  height: 1px;
  margin: 0 auto 30px;
  background: #fff;
}

.c1_p3 { font-size: 16px; color: #fff; }

.cus-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 54px;
  border: 1px solid #000;
  line-height: 54px;
  background: rgba(255,255,255,0.3);
  transition: border-width 0.15s;
}

.cus-btn a {
  display: block;
  font-size: 16px;
  color: #525050;
  letter-spacing: 2px;
}

.cus-btn:hover {
  border: 3px solid #333;
  height: 50px;
  line-height: 50px;
}

/* ======= GALLERY TITLE ======= */
.mgalleryT2 {
  width: 1100px;
  margin: 170px auto 0;
}

.mgalleryT2 p {
  text-align: center;
  color: #525050;
  font-size: 35px;
  font-weight: 100;
  line-height: 70px;
  letter-spacing: 3px;
}

.mgalleryT2_line {
  width: 270px;
  height: 1px;
  margin: 0 auto 30px;
  background: #525050;
}

/* ======= WOMAN STYLE ======= */
.mgalleryW {
  width: 1100px;
  margin: 60px auto 0;
  color: #707070;
}

.mgalleryW_t1 {
  font-size: 30px;
  margin-bottom: 30px;
  font-weight: 100;
}

.mgalleryW ul { overflow: hidden; }

.mgalleryW ul li {
  width: 356px;
  height: 582px;
  float: left;
  font-size: 16px;
}

.mgalleryW ul li:nth-child(2) { margin: 0 16px; }

.mgalleryW_i1 {
  width: 356px;
  height: 354px;
  overflow: hidden;
}

.mgalleryW_i1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.mgalleryW_i1:hover img { transform: scale(1.05); }

.mgalleryW_p1 { font-size: 22px; margin-top: 20px; }
.mgalleryW_p2 { line-height: 70px; border-bottom: 1px solid #e1e1e1; color: #a1a1a1; }
.mgalleryW_p3 { line-height: 70px; color: #a1a1a1; }

.mgalleryW_p4 {
  width: 160px;
  height: 46px;
  background: #282828;
  text-align: center;
  line-height: 46px;
  font-weight: 100;
  transition: background 0.2s;
}

.mgalleryW_p4:hover { background: #ca1e2c; }
.mgalleryW_p4 a { display: block; color: #fff; font-size: 16px; }

/* ======= MAN STYLE ======= */
.mgalleryM {
  width: 1100px;
  margin: 80px auto 0;
  color: #707070;
}

.mgalleryM_t1 {
  font-size: 30px;
  margin-bottom: 30px;
  font-weight: 100;
}

.mgalleryM ul { overflow: hidden; }

.mgalleryM ul li {
  width: 356px;
  height: 582px;
  float: left;
  font-size: 16px;
}

.mgalleryM ul li:nth-child(2) { margin: 0 16px; }

.mgalleryM_i1 {
  width: 356px;
  height: 354px;
  overflow: hidden;
}

.mgalleryM_i1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.mgalleryM_i1:hover img { transform: scale(1.05); }

/* ======= SPACE GALLERY (SLIDER) ======= */
.mspace {
  width: 100%;
  padding: 80px 0 60px;
  background: #fff;
  margin-top: 100px;
}

.mspacein {
  width: 1100px;
  margin: 0 auto;
  position: relative;
}

.mspacein p {
  text-align: center;
}

.scp1 {
  font-size: 30px;
  margin-bottom: 15px;
  font-weight: 300;
  text-transform: uppercase;
  color: #333;
}

.scp2 {
  font-size: 16px;
  margin-bottom: 30px;
  font-weight: 300;
  color: #333;
}

/* Slider */
.space-slider-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.space-slider {
  display: flex;
  transition: transform 0.5s ease;
}

.space-slide {
  min-width: 33.333%;
  padding: 2px;
}

.space-slide img {
  width: 100%;
  height: 243px;
  object-fit: cover;
  display: block;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 120px;
  background: #000;
  border: none;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn img { width: 100%; height: auto; }

.slider-btn-prev {
  left: -60px;
  background: url('../img/m_bprew.png') no-repeat center / contain;
  background-color: transparent;
}

.slider-btn-next {
  right: -60px;
  background: url('../img/m_bnext.png') no-repeat center / contain;
  background-color: transparent;
}

/* ======= FOOTER ======= */
.mfooter {
  width: 100%;
  height: 340px;
  background: url('../img/fbg1.jpg') no-repeat center / cover;
}

.mfooterin {
  position: relative;
  width: 1100px;
  height: 100%;
  margin: 0 auto;
}

.mw_box { width: 100%; }

.mw_text {
  text-align: center;
  padding-top: 35px;
  color: #fff;
}

.mwt_p1 { line-height: 30px; }
.mwt_p1 img { height: 40px; width: auto; }

.mwt_p2 {
  font-size: 13px;
  text-transform: uppercase;
  margin-top: 25px;
  color: #fff;
  letter-spacing: 1px;
  font-weight: 300;
}

.mwt_p2 span { margin: 0 10px; }

.mwt_p3 {
  font-size: 11px;
  line-height: 15px;
  font-family: 'Times New Roman', Times, Arial, sans-serif;
  text-transform: uppercase;
  margin: 5px 0 30px;
  color: #fff;
  letter-spacing: 1.5px;
}

.mf_box {
  width: 731px;
  margin: 0 auto 20px;
  height: 54px;
  overflow: hidden;
}

.mf_p {
  width: 215px;
  height: 54px;
  border: 1px solid #fff;
  line-height: 54px;
  float: left;
  font-size: 18px;
  letter-spacing: 2px;
  font-weight: 100;
  text-align: center;
}

.mf_p2 { margin: 0 40px; font-size: 16px; letter-spacing: 1px; }
.mf_p a { color: #fff; }
.mf_p:hover { border: 2px solid #fff; }

/* Branch dropdown */
.lang {
  width: 215px;
  position: absolute;
  bottom: 35px;
  right: 0;
}

.lang .btn {
  display: block;
  padding: 16px 20px;
  height: 53px;
  border: 1px solid #fff;
  color: #fff;
  background: url('../img/btn_language_open.png') no-repeat 95% 50%;
  font-size: 15px;
  letter-spacing: 2px;
  font-weight: 100;
  cursor: pointer;
}

.lang .btn.on {
  background-image: url('../img/btn_language_close.png');
}

.lang .list {
  position: absolute;
  bottom: 53px;
  left: 0;
  width: 100%;
  height: 0;
  background: #132822;
  overflow: hidden;
  transition: height 0.3s;
}

.lang .list.open {
  height: 170px;
}

.lang .list ul {
  border: 1px solid #aaa;
  padding: 14px 0;
}

.lang .list li {
  display: block;
  padding: 8px 12px;
  color: #aaa;
}

.lang .list li a { color: #fff; font-size: 13px; }
.lang .list li a:hover { color: #85af4b; }

.goTop {
  position: absolute;
  top: -40px;
  right: 15px;
}

.goTop img { width: 40px; height: auto; }

/* ======= RESPONSIVE ======= */
@media (max-width: 1140px) {
  .header_menu { width: 100%; left: 0; transform: none; padding: 0 20px; }
  .gnb { width: 100%; }
  .mainProdT,
  .mainProd,
  .mgalleryW,
  .mgalleryM,
  .mgalleryT2,
  .mspacein,
  .mfooterin { width: 100%; padding: 0 20px; }
}

@media (max-width: 900px) {
  /* Header */
  .hbg { height: 70px; }
  .hbg2 { display: none; }
  .header_menu { top: 10px; width: 100%; left: 0; transform: none; }
  .gnb > ul { display: none; position: fixed; top: 70px; left: 0; width: 100%; background: #fff; z-index: 999; padding: 10px 0; }
  .gnb > ul.open { display: block; }
  .d1 { float: none; width: 100%; margin: 0; padding: 12px 20px; border-bottom: 1px solid #eee; }
  .d1 .kor { display: block; border: none; }
  .d1 > p a { font-size: 14px; }
  .gnb > h1 { left: 20px; transform: none; top: 5px; }
  .gnb > h1 img { height: 40px; }
  .insta, .log_btn { display: none; }
  .mobile-menu-btn { display: flex; }

  /* Hero */
  .headerin { height: 400px; }
  .bn_t { top: 55%; }
  .bn_t img { width: 180px; }

  /* Intro */
  .mainProdT { margin-top: 60px; }
  .mainProdT p:nth-child(1) { font-size: 36px; line-height: 50px; }
  .mainProdT p:nth-child(2) { font-size: 20px; }

  /* About */
  .mainProd { margin-top: 40px; }
  .mainProd li { width: 100%; float: none; height: auto; }
  .mainProd .photo img { height: 300px; object-fit: cover; }
  .mainProd .n2 { border: 1px solid #e1e1e1; border-top: none; height: 350px; }
  .mainProd .text { top: 60px; }
  .mainProd .text_p2 { font-size: 24px; }

  /* Banner section */
  .maincus { margin-top: 60px; }
  .maincus ul li { width: 100%; float: none; }

  /* Gallery */
  .mgalleryT2 { margin-top: 60px; }
  .mgalleryW, .mgalleryM { margin-top: 40px; }
  .mgalleryW ul li,
  .mgalleryM ul li { width: 100%; float: none; height: auto; margin: 0 0 30px; }
  .mgalleryW ul li:nth-child(2),
  .mgalleryM ul li:nth-child(2) { margin: 0 0 30px; }
  .mgalleryW_i1, .mgalleryM_i1 { width: 100%; }

  /* Space */
  .space-slide { min-width: 100%; }

  /* Footer */
  .mfooter { height: auto; padding: 40px 20px; }
  .mfooterin { width: 100%; }
  .mf_box { width: 100%; }
  .mf_p { width: 100%; float: none; margin: 5px 0; }
  .mf_p2 { margin: 5px 0; }
  .lang { position: static; width: 100%; margin-top: 20px; }
  .goTop { top: -60px; }
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s, transform 0.7s;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
