@charset "UTF-8";
/* 브랜드스토리 페이지 전용 스타일 */

/* 브랜드스토리 페이지 전체 컨테이너 */
.brandstory-page {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
}

/* 인트로 화면 스타일 */
.brandstory-intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #6b4a2e;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.brandstory-intro.intro-hidden {
    opacity: 0;
    visibility: hidden;
}

/* 인트로 메인 컨테이너 */
.intro-main-container {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 15vh;
}

/* 인트로 로고 */
.intro-logo {
    opacity: 0;
    animation: logoAppear 2s ease-out 1s forwards;
    position: relative;
    margin-bottom: 2rem;
}

.intro-logo img {
    width: 120px;
    height: auto;
}

/* 인트로 텍스트 컨테이너 */
.intro-text-container {
    position: relative;
    width: 100%;
    margin-bottom: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 2rem;
}

/* 인트로 태그라인 */
.intro-tagline {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 400;
    font-family: 'Noto Serif KR', serif;
    opacity: 0;
    white-space: nowrap;
    overflow: hidden;
}

/* 인트로 서브타이틀 */
.intro-subtitle {
    font-size: 2.1rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 500;
    font-family: 'Noto Serif KR', serif;
    opacity: 0;
    white-space: nowrap;
    overflow: hidden;
}

/* 인트로 브랜드명 */
.intro-brand {
    font-size: 3rem;
    color: white;
    font-weight: 700;
    font-family: 'Noto Serif KR', serif;
    opacity: 0;
    white-space: nowrap;
    overflow: hidden;
}

/* 인트로 스크롤 인디케이터 */
.intro-scroll-indicator {
    color: #d4a574;
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollIndicatorAppear 1s ease-out 10s forwards;
    opacity: 0;
    pointer-events: auto;
    cursor: pointer;
    flex-shrink: 0;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.intro-scroll-indicator i {
    font-size: 1.5rem;
    color: #d4a574;
    animation: scrollBounce 2s infinite;
}

.intro-scroll-indicator div {
    text-align: center;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #d4a574;
}

/* PC 버전 콘텐츠 */
.brandstory-pc-content {
    position: relative;
    z-index: 1;
}

/* 모바일에서 PC 콘텐츠 숨기기 */
@media (max-width: 768px) {
    .brandstory-pc-content {
        display: none !important;
    }
    
    .brandstory-floating-menu {
        display: none !important;
    }
}

/* 애니메이션 키프레임 */
@keyframes logoAppear {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollIndicatorAppear {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes introFlash {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
} 