* { margin:0; padding:0; box-sizing:border-box; }
body { font-family: 'Noto Sans KR', sans-serif; }

.phone-mb {
    display: none;
}

/* RESPONSIVE */
@media(max-width:768px){
    .phone-mb {
        display: block;
        position: fixed;
        right: 20px;
        bottom: 20px;
        z-index: 99;
        background: #0b1e3c;
        padding: 10px 20px;
        border-radius: 50px;
        color: #fff;
        text-align: center;
        font-size: 18px;
        font-weight: 700;
    }
    
    .phone-mb span {
        display: block;
        margin: 0 0 4px;
        font-size: 14px;
    }
}

/* ===== HEADER ===== */
.header {
  position:fixed;
  top:0; left:0;
  width:100%;
  z-index:1000;
  transition:.3s;
}
.header-inner {
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:20px 40px;
}

/* DEFAULT (투명) */
.header {
  background:transparent;
}
.header a { color:#fff; }

/* LOGO */
.logo img { height:35px; }
.logo-color { display:none; }

/* MENU */
.menu {
  display:flex;
  gap:40px;
}
.menu > li {
  position:relative;
}
.menu > li > a {
  font-weight:600;
}

/* SUBMENU */
.submenu {
  position:absolute;
  top:100%;
  left:0;
  background:#fff;
  min-width:160px;
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:.3s;
}
.submenu a {
  display:block;
  padding:12px 16px;
  color:#111;
  font-size:14px;
}
.menu > li:hover .submenu {
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

/* RIGHT */
.right {
  display:flex;
  align-items:center;
  gap:20px;
}
.header a.phone {
    padding: 10px 20px 7px 20px;
    border-radius: 20px;
    background: #fff;
    color: #111;
    font-size: 20px;
  font-weight:600;
}

/* HOVER & SCROLL ACTIVE */
.header:hover,
.header.active {
  background:#fff;
    border-bottom: 1px solid #ddd;
}
.header:hover a,
.header.active a {
  color:#111;
}
.header.active a.phone {
  color:#fff;
    background: #0b1e3c;
}
.header:hover .logo-white,
.header.active .logo-white {
  display:none;
}
.header:hover .logo-color,
.header.active .logo-color {
  display:block;
}

/* HAMBURGER */
.hamburger {
  display:none;
  flex-direction:column;
  gap:6px;
  background:none;
  border:none;
}
.hamburger span {
  width:26px;
  height:3px;
  background:#fff;
  transition:.3s;
}
.header.active .hamburger span,
.header:hover .hamburger span {
  background:#111;
}

/* X ANIMATION */
.hamburger.active span:nth-child(1){
  transform:rotate(45deg) translate(5px,5px);
}
.hamburger.active span:nth-child(2){
  opacity:0;
}
.hamburger.active span:nth-child(3){
  transform:rotate(-45deg) translate(7.5px,-7.5px);
}

/* MOBILE MENU */
.mobile-menu {
  position:fixed;
  top:70px;
  left:0;
  width:100%;
  height:calc(100vh - 70px);
  background:#fff;
  padding:30px;
  display:none;
  overflow:auto;
    z-index: 99;
}

.mobile-menu > ul > li {
  padding:20px 0;
}

.mobile-menu > ul > li ~ li {
    border-top: 1px solid #eee;
}

.m-depth {
  width:100%;
  text-align:left;
  font-size:18px;
  background:none;
  border:none;
}
.m-sub {
  display:none;
  margin-top:20px;
}
.m-sub a {
  display:block;
  padding:10px 0;
  color:#555;
}


/* RESPONSIVE */
@media(max-width:768px){
    .logo img { height:30px; }
  .nav, .phone { display:none; }
  .hamburger { display:flex; }
}

/* ===== MAIN VISUAL ===== */
/*
.main-visual {
  position:relative;
  width:100%;
  height:100vh;
  overflow:hidden;
}
*/

/* SLIDE */
/*
.visual-slide {
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:opacity 1.2s ease-in-out;
}

.visual-slide::after {
  content:'';
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.35);
}

.visual-slide.active {
  opacity:1;
  z-index:1;
}
*/

.main-visual {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.main-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    pointer-events: none; /* 마우스/터치 완전 차단 */
    z-index: 8;
}

/* ===== TEXT (PRUGIO STYLE) ===== */
.visual-text {
  position:absolute;
  top:180px;
  left:50%;
  transform:translateX(-50%);
  text-align:center;
  color:#fff;
    text-shadow: 0 0 14px rgba(000,000,000,.4);
  z-index: 9;
}

.sub-title {
  font-size:24px;
    font-weight:700;
  letter-spacing:4px;
  margin-bottom:14px;
}

.main-title {
  font-size:60px;
  font-weight:700;
  margin-bottom:26px;
}

.visual-text .line {
  display:block;
  width:60px;
  height:1px;
  background:#fff;
  margin:0 auto 24px;
}

.main-wrap-inner {
    width: 1200px;
    margin: 175px auto 100px;
}

.main-wrap-inner .title p {
    
}

.main-wrap-inner .title h2 {
    margin: 0 0 80px;
    text-align: center;
    font-size: 40px;
    font-weight: 700;
}

.main-wrap-inner .img-wrap img {
    width: 100%;
}

.main-wrap-inner .img-wrap img ~ img {
    margin-top: 50px;
}

.desc {
  font-size:20px;
  letter-spacing:1px;
    line-height: 1.4;
}

.img-video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0 0 50px;
}

/* ===== MOBILE ===== */
@media(max-width:768px){
  .visual-text {
    top:150px;
    width:90%;
  }
  .main-title {
    font-size:34px;
  }
  .desc {
    font-size:15px;
  }
    
    .main-wrap-inner {
        width: calc(100% - 40px);
        margin: 120px auto 50px;
        padding: 0 20px;
    }
    
    .main-wrap-inner .title h2 {
        font-size: 30px;
        margin: 0 0 50px;
    }
}

/* TEXT ANIMATION */
/*
.visual-text > * {
  opacity:0;
  transform:translateY(-20px);
  transition:all 1s ease;
}

.visual-slide.active .visual-text > * {
  opacity:1;
  transform:translateY(0);
}
*/

/* 타이밍 차이 */
/*
.visual-slide.active .sub-title {
  transition-delay: .2s;
}
.visual-slide.active .main-title {
  transition-delay: .4s;
}
.visual-slide.active .line {
  transition-delay: .6s;
}
.visual-slide.active .desc {
  transition-delay: .8s;
}
*/


/* MOBILE ARROW */
.m-depth {
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:16px;
  background:none;
  border:none;
}

.m-depth .arrow {
  width:8px;
  height:8px;
  border-right:2px solid #333;
  border-bottom:2px solid #333;
  transform:rotate(45deg); /* ↓ */
  transition:.3s;
}

/* 열렸을 때 */
.m-depth.active .arrow {
  transform:rotate(-135deg); /* ↑ */
}


.floorplan {
  padding:120px 20px;
  text-align:center;
}

.fp-inner {
  max-width:1200px;
  margin:0 auto;
}

.fp-title p {
  font-size:20px;
    font-weight:600;
  color:#666;
}

.fp-title h2 {
  font-size:40px;
    font-weight:700;
  margin:10px 0 50px;
}

/* tabs */
.fp-tabs {
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:10px;
  margin-bottom:40px;
}

.fp-tabs li {
  border:1px solid #ddd;
  padding:14px 0;
  cursor:pointer;
  font-size:14px;
  transition:.3s;
}

.fp-tabs li.active {
  background:#0b1e3c;
  color:#fff;
  border-color:#0b1e3c;
}

/* image area */
.fp-view {
}

.fp-content {
  display:none;
}

.fp-content.active {
  display:block;
}

.fp-content img {
  max-width:100%;
}

/* responsive */
@media(max-width:1024px){
  .fp-tabs { grid-template-columns:repeat(3,1fr); }
}

@media(max-width:600px){
  .fp-tabs { grid-template-columns:repeat(2,1fr); }
}



.brand-text {
    position: relative;
    width: 100%;
    height: calc(100vh - 75px);
}

.brand-bg1 {
    background: url(../images/main_bg3.jpg) no-repeat 0 0 fixed;
    background-size: cover;
}

.brand-bg2 {
    background: url(../images/main_bg4.jpg) no-repeat 0 0 fixed;
}

.brand-bg3 {
    background: url(../images/main_bg5.jpg) no-repeat 0 0 fixed;
}


.brand-fixed h2 {
    color: #fff;
    font-size: 60px;
    font-weight: 700;
}

.eyebrow {
    margin: 0 0 20px;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
}

.bt-text {
    color: #fff;
    font-size: 20px;
    line-height: 1.5;
}

.brand-fixed .line {
  display:block;
  width:60px;
  height:1px;
  background:#fff;
  margin: 24px 0;
}

.brand-inner {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
}

/* mobile */
@media(max-width:768px){
    .brand-fixed .line {
      width:40px;
    }
    .fp-title p {
      font-size:18px;
    }

    .fp-title h2 {
      font-size:30px;
      margin:10px 0 50px;
    }
        .brand-fixed h2 {
        font-size: 30px;
    }

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

    .bt-text {
        font-size: 16px;
    }
  .brand-inner {
        padding: 0 20px;
    }
}




.location {
  padding:120px 20px;
}

.loc-inner {
  max-width:1200px;
  margin:0 auto;
  display:flex;
  gap:50px;
  align-items:center;
}

.loc-text {
  flex:1;
}

.loc-map {
  flex:1;
}

.loc-map img {
  width:100%;
}

@media(max-width:768px){
  .loc-inner {
    flex-direction:column;
  }
}




.reserve {
}

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

.reserve-title {
  font-size:32px;
  text-align:center;
  margin-bottom:10px;
}

.reserve-desc {
  text-align:center;
  color:#666;
  margin-bottom:50px;
}

/* form */
.form-grid {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
}

.form-item label {
  display:block;
  font-size:14px;
  margin-bottom:8px;
}

.form-item input {
  width:100%;
  padding:14px 12px;
  border:none;
  border-bottom:1px solid #ddd;
  font-size:15px;
  outline:none;
  transition:.3s;
}

.form-item input:focus {
  border-bottom-color:#0b1e3c;
}

/* submit */
.submit-btn {
  margin:60px auto 0;
  display:block;
  width:300px;
  height:56px;
  border:none;
  background:#0b1e3c;
  color:#fff;
  font-size:16px;
  cursor:pointer;
}

/* mobile */
@media(max-width:768px){
  .form-grid {
    grid-template-columns:1fr;
  }
}








.footer {
  background:#333;
  color:#aaa;
  padding:60px 20px;
}

.footer-inner {
  max-width:1200px;
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:40px;
}

.footer-logo img {
  width:120px;
}

.footer-info p {
  font-size:13px;
  line-height:1.7;
}

.footer-call a {
  font-size:22px;
  color:#fff;
  font-weight:700;
}

/* mobile */
@media(max-width:768px){
  .footer-inner {
    flex-direction:column;
    text-align:center;
    align-items:center;
  }
}



