@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css");

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Pretendard", sans-serif;
    color: #ffffff;
    background-color: #f5f1eb;
}

a {
    color: inherit;
    text-decoration: none;
}

/* 상단 메뉴 */

.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;

    width: 100%;
    height: 88px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 60px;

    background:rgba(255, 255, 255, .08);
    backdrop-filter:blur(18px);

    z-index:999;


}

.logo {
    font-size: 24px;
    letter-spacing: 8px;
    font-weight:300;
}

.navigation {
    display: flex;
    gap: 38px;
}

.navigation a {
    color:white;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
}

.navigation a:hover {
    opacity: 0.55;
}

.header-button {
    border:1px solid white;

    border-radius:40px;

    padding:13px 26px;

    transition:.3s;
}

.header-button:hover {
    color: #2f4638;
    background-color: #ffffff;
}

/* 메인 화면 */

.hero {
    position: relative;
    min-height: 100vh;

    display: flex;
    align-items: center;

    padding: 150px 8vw 100px;

    background-image: url("../images/hero.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(24, 27, 24, 0.58) 0%,
            rgba(24, 27, 24, 0.28) 55%,
            rgba(24, 27, 24, 0.12) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.hero-label {
    margin-bottom: 28px;

    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.24em;

    opacity: 0.85;
}

.hero h1 {
    font-size: clamp(46px, 5vw,64px);
    line-height: 1.22;
    font-weight: 300;
    letter-spacing: -0.04em;
}

.hero-description {
    margin-top: 30px;

    font-size: 17px;
    line-height: 1.8;
    font-weight: 300;

    opacity: 0.9;
}

.hero-button {
    display: inline-block;

    margin-top: 42px;
    padding: 17px 29px;

    color: #26362d;
    background-color: #ffffff;
    border-radius: 100px;

    font-size: 14px;
    font-weight: 500;

    transition:
        transform 0.3s ease,
        background-color 0.3s ease;
}



.scroll-text {
    position: absolute;
    right: 5vw;
    bottom: 40px;
    z-index: 2;

    font-size: 10px;
    letter-spacing: 0.3em;
    writing-mode: vertical-rl;

    opacity: 0.75;
}

/* 모바일 */

@media (max-width: 800px) {

    .header {
        height: 75px;
        padding: 0 22px;
    }

    .navigation {
        display: none;
    }

    .logo {
        font-size: 19px;
    }

    .header-button {
        padding: 10px 17px;
        font-size: 12px;
    }

    .hero {
        min-height: 100svh;
        padding: 130px 25px 80px;
        background-position: 62% center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(25, 27, 24, 0.3) 0%,
                rgba(25, 27, 24, 0.62) 100%
            );
    }

    .hero-label {
        margin-bottom: 20px;
        font-size: 11px;
    }

    .hero h1 {
        font-size: 43px;
        line-height: 1.28;
    }

    .hero-description {
        margin-top: 24px;
        font-size: 15px;
    }

    .hero-button {
        margin-top: 33px;
        padding: 15px 23px;
    }

    .scroll-text {
        display: none;
    }
}
/* 첫 화면 등장 애니메이션 */

.hero-content > * {
    opacity: 0;
    transform: translateY(24px);
    animation: heroFadeUp 1s ease forwards;
}

.hero-label {
    animation-delay: 0.15s;
}

.hero h1 {
    animation-delay: 0.35s;
}

.hero-description {
    animation-delay: 0.55s;
}

.hero-button {
    animation-delay: 0.75s;
}

.logo,
.navigation,
.header-button {
    opacity: 0;
    animation: headerFade 1s ease forwards;
    animation-delay: 0.1s;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes headerFade {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* 브랜드 소개 */

.about {
    min-height: 760px;
    padding: 150px 8vw;

    display: flex;
    flex-direction: column;
    justify-content: center;

    color: #283129;
    background-color: #f3efe8;
}

.section-label {
    margin-bottom: 32px;

    color: #788075;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.24em;
}

.about h2 {
    margin-bottom: 45px;

    font-size: clamp(42px, 5vw, 72px);
    font-weight: 300;
    line-height: 1.25;
    letter-spacing: -0.04em;
}

.about-text {
    max-width: 650px;

    color: #596057;
    font-size: 18px;
    font-weight: 300;
    line-height: 2;
}

/* 모바일 소개 영역 */

@media (max-width: 800px) {
    .about {
        min-height: auto;
        padding: 110px 25px;
    }

    .section-label {
        margin-bottom: 24px;
        font-size: 10px;
    }

    .about h2 {
        margin-bottom: 32px;
        font-size: 42px;
    }

    .about-text {
        font-size: 16px;
        line-height: 1.9;
    }
}
/* 스크롤 메뉴 */

.header{
    transition:.35s ease;
}

.header.active{

    background:#f7f5f1;

    box-shadow:0 8px 30px rgba(0,0,0,.06);

}

.header.active .logo,
.header.active .navigation a{

    color:#2b2b2b;

}

.header.active .header-button{

    color:#2b2b2b;

    border-color:#2b2b2b;

}
/* Programs */

.programs{

    padding:140px 8vw;

    background:#faf8f5;

    color:#2d2d2d;

}

.program-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:70px;

}

.program-card{

    background:white;

    padding:45px;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.05);

    transition:.35s;

}

.program-card:hover{

    transform:translateY(-8px);

}

.program-card span{

    color:#9b9b9b;

    letter-spacing:2px;

    font-size:13px;

}

.program-card h3{

    margin:18px 0;

    font-size:28px;

    font-weight:300;

}

.program-card p{

    line-height:1.8;

    color:#666;

}
/* Programs mobile */

@media (max-width: 900px) {
    .program-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 45px;
    }

    .programs {
        padding: 110px 25px;
    }

    .programs h2 {
        font-size: 42px;
        font-weight: 300;
    }

    .program-card {
        padding: 32px 28px;
        border-radius: 16px;
    }

    .program-card h3 {
        font-size: 25px;
    }

    .program-card p {
        font-size: 15px;
    }
}
/* Rooms */

.room-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    min-height: 760px;

    color: #2f352f;
    background-color: #f2eee7;
}

.room-private {
    grid-template-columns: 1.2fr 1fr;
    background-color: #454b43;
    color: #f7f3ed;
}

.room-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 110px 8vw;
}

.room-copy .section-label {
    margin-bottom: 28px;
}

.room-private .section-label {
    color: rgba(255, 255, 255, 0.58);
}

.room-copy h2 {
    margin-bottom: 38px;

    font-size: clamp(48px, 5vw, 76px);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.05em;
}

.room-description {
    color: #636960;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.95;
}

.room-private .room-description {
    color: rgba(255, 255, 255, 0.74);
}

.room-image {
    min-height: 760px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
    object-position: center;

    transition: transform 1.1s ease;
}

.room-section:hover .room-image img {
    transform: scale(1.025);
}


/* Rooms mobile */

@media (max-width: 800px) {

    .room-section,
    .room-private {
        display: flex;
        flex-direction: column;
        min-height: auto;
    }

    .room-group .room-image {
        order: 1;
    }

    .room-group .room-copy {
        order: 2;
    }

    .room-private .room-image {
        order: 1;
    }

    .room-private .room-copy {
        order: 2;
    }

    .room-image {
        min-height: 520px;
    }

    .room-copy {
        padding: 90px 25px 105px;
    }

    .room-copy h2 {
        margin-bottom: 28px;

        font-size: 44px;
        line-height: 1.2;
    }

    .room-description {
        font-size: 15px;
        line-height: 1.9;
    }
}
/* CONTACT */

.contact{

    display:grid;
    grid-template-columns:1fr 1fr;

    background:#f7f4ee;

}

.contact-left{

    padding:120px 8vw;

}

.contact-right{

    min-height:700px;

}

.contact-right iframe{

    width:100%;
    height:100%;

    border:0;

}

.contact h2{

    margin:25px 0 70px;

    font-size:clamp(46px,5vw,72px);

    font-weight:300;

    line-height:1.15;

}

.contact-info{

    display:flex;

    flex-direction:column;

    gap:45px;

}

.contact-item h4{

    margin-bottom:10px;

    font-size:13px;

    font-weight:600;

    letter-spacing:2px;

    color:#888;

    text-transform:uppercase;

}

.contact-item p{

    font-size:18px;

    line-height:1.9;

    color:#555;

}

@media(max-width:900px){

.contact{

grid-template-columns:1fr;

}

.contact-right{

height:420px;

}

.contact-left{

padding:80px 25px;

}

.contact h2{

font-size:42px;

}

}
/* timetable */

.timetable{

    padding:140px 8vw;

    background:#f7f4ee;

}

.timetable-title{

    text-align:center;

    margin-bottom:80px;

}

.timetable-title h2{

    margin:20px 0;

    font-size:clamp(42px,5vw,68px);

    font-weight:300;

}

.timetable-title p{

    color:#666;

    line-height:1.8;

}

.timetable-image{

    margin-bottom:90px;

}

.timetable-image h3{

    margin-bottom:30px;

    text-align:center;

    font-size:28px;

    font-weight:400;

}

.timetable-image img{

    width:100%;

    max-width:900px;

    display:block;

    margin:auto;

    border-radius:12px;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}
.footer {
    padding: 40px 20px;
    text-align: center;
    color: #777;
    font-size: 14px;
    border-top: 1px solid #eee;
}
.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    text-decoration: none;
}

.logo-en {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 6px;
}

.logo-ko {
    font-size: 20px;
    font-weight: 400;
    color: #d8d8d8;
    margin-top: 4px;
    letter-spacing: 2px;
}
@media (max-width: 768px) {

  body {
    font-size: 14px;
  }

  .hero {
    min-height: 100vh;
    padding: 100px 24px 60px;
  }

  .hero h1,
  .hero-title,
  .hero-content h1 {
    font-size: 42px;
    line-height: 1.05;
    letter-spacing: -1px;
  }

  .hero-kicker,
  .hero-label {
    font-size: 13px;
    line-height: 1.4;
  }

  .hero p,
  .hero-description {
    font-size: 15px;
    line-height: 1.7;
  }

  .nav-links {
    display: none;
  }

  .logo-en {
    font-size: 20px;
  }

  .logo-ko {
    font-size: 10px;
  }

  section {
    padding: 72px 20px;
  }

  section h2 {
    font-size: 30px;
    line-height: 1.2;
  }

  .program-card h3,
  .contact h3 {
    font-size: 22px;
  }

  .program-card p,
  .contact p,
  .about p {
    font-size: 15px;
    line-height: 1.7;
  }

  .footer {
    padding: 48px 20px;
    font-size: 13px;
  }

  img {
    max-width: 100%;
    height: auto;
  }
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
