@charset "UTF-8";

/* --- 1. 기본 설정 및 폰트 --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700&display=swap');
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.8/dist/web/static/pretendard.css');

:root {
    --accent-gold: #D4AF37;
    --glass-bg: rgba(0, 0, 0, 0.6);
    --glass-border: rgba(212, 175, 55, 0.4);
    --text-main: #FFFFFF;
    --font-en: 'Montserrat', sans-serif;
    --font-kr: 'Pretendard', sans-serif;
}

/* [배경 위치 미세 조정: 황금 비율] */
body {
    margin: 0; padding: 0;
    line-height: 1.7;
    overflow-x: hidden;
    
    background-image: url('https://media.eoding.com/media/travelagent/1229/imagecontent/북촌길.jpg') !important;
    background-attachment: fixed !important;
    
    background-position: 0% 50% !important;
    
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

/* 배경 오버레이 */
body::after {
    content: ''; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1; pointer-events: none;
}

/* [하단 푸터 보호] 래퍼 */
.private-tour-wrap {
    font-family: var(--font-kr);
    color: var(--text-main);
    position: relative;
    width: 100%;
    z-index: 1;
}


/* --- 이하 스타일은 동일 --- */

.private-tour-wrap a { text-decoration: none; color: inherit; transition: 0.3s; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; box-sizing: border-box; }
.gold-txt { color: var(--accent-gold); }
.section-padding { padding: 140px 0; }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { 
    font-family: var(--font-en); font-size: 2.5rem; color: white; 
    margin-bottom: 15px; text-transform: uppercase; letter-spacing: 2px; line-height: 1.2;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
.reveal { animation: fadeUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards; opacity: 0; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }


/* Hero */
.hero {
    min-height: 90vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
}
.sub-label {
    font-family: var(--font-en); color: var(--accent-gold);
    letter-spacing: 5px; text-transform: uppercase; font-size: 0.9rem;
    display: block; margin-bottom: 20px; font-weight: 600;
}
.hero h1 {
    font-family: var(--font-en); font-size: 4.5rem; font-weight: 300; margin-bottom: 30px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.6); line-height: 1.2;
}

/* ▼▼▼ [수정된 부분] Beauty of Korea 검정색 적용 ▼▼▼ */
.hero h1 span { 
    font-weight: 700; 
    display: block;
    color: #000000; /* 검정색으로 변경 */
    text-shadow: none; /* 검정색이 선명하게 보이도록 기존 그림자 제거 */
}
/* ▲▲▲ ----------------------------------------- ▲▲▲ */

.hero-desc {
    font-size: 1.4rem; font-weight: 400; color: white; margin-bottom: 50px; line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}
.hero-desc strong { color: var(--accent-gold); font-weight: 600; }


/* Flip Cards */
.emphasized-subtitle {
    font-size: 1.3rem; color: white; font-weight: 500;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.grid-3 {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
}

.flip-card {
    background-color: transparent;
    height: 340px;
    perspective: 1000px;
    cursor: pointer;
}
.flip-card-inner {
    position: relative; width: 100%; height: 100%; text-align: center;
    transition: transform 0.8s cubic-bezier(0.4, 0.2, 0.2, 1);
    transform-style: preserve-3d;
}
.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute; width: 100%; height: 100%;
    -webkit-backface-visibility: hidden; backface-visibility: hidden;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    padding: 40px 30px;
    background: var(--glass-bg);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    box-sizing: border-box;
}

.flip-card-front { color: white; }
.card-icon { font-size: 3rem; color: var(--accent-gold); margin-bottom: 25px; }
.card-title { font-family: var(--font-en); font-size: 1.5rem; color: white; margin: 0; }

.flip-card-back {
    background: rgba(15, 15, 15, 0.9);
    color: white; transform: rotateY(180deg);
    border-color: var(--accent-gold);
}
.card-desc { color: #ddd; font-size: 1.05rem; line-height: 1.6; word-break: keep-all; }
.small-text { font-size: 0.95rem; }


/* Process */
.process-flow-wrapper {
    display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
    gap: 15px 10px;
    padding: 50px 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-radius: 12px; border: 1px solid var(--glass-border);
}

.flow-box {
    background: rgba(255,255,255,0.05);
    border: 2px solid var(--accent-gold);
    border-radius: 50px;
    padding: 0 30px;
    text-align: center; color: white; font-weight: 500; font-size: 1rem;
    min-width: 120px; height: 60px;
    display: flex; align-items: center; justify-content: center;
    transition: 0.3s; word-break: keep-all;
}
.flow-box:hover {
    background: var(--accent-gold); color: #111;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}
.flow-arrow {
    color: var(--accent-gold); font-size: 1.2rem; margin: 0 5px;
}


/* CTA */
.cta-box {
    max-width: 800px; margin: 0 auto; text-align: center;
    padding: 80px 40px;
    background: var(--glass-bg); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border); border-radius: 8px;
}
.cta-box h2 {
    font-family: var(--font-en); font-size: 2.2rem; color: white; margin-bottom: 20px;
}
.cta-box p {
    color: #ccc; font-size: 1.1rem; margin-bottom: 40px; line-height: 1.6;
}

.btn-gold {
    display: inline-block; padding: 18px 50px;
    border: 1px solid var(--accent-gold); color: var(--accent-gold);
    font-family: var(--font-en); text-transform: uppercase; letter-spacing: 2px;
    font-weight: 600; cursor: pointer; transition: 0.4s;
    background: transparent;
}
.btn-gold:hover {
    background: var(--accent-gold); color: white;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}


/* Mobile */
@media (max-width: 1024px) {
    .hero h1 { font-size: 3rem; }
    .hero-desc { font-size: 1.1rem; }
    .grid-3 { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .flip-card { height: 280px; }
    .process-flow-wrapper { padding: 30px 15px; }
    .flow-box { font-size: 0.9rem; padding: 0 20px; height: 55px; }
    .flow-arrow { display: block; width: 100%; text-align: center; transform: rotate(90deg); margin: 10px 0; }
}