/* 기본 스타일 초기화 및 폰트 설정 */
:root {
    --hanji-bg: #f8f5f0; /* 따뜻하고 차분한 한지 느낌의 배경색 */
    --main-text: #3d3d3d; /* 너무 진하지 않은 부드러운 텍스트 색상 */
    --accent-color: #8c6a4d; /* 차분한 전통 갈색 톤 */
    --highlight-color: #d9534f; /* 부드러운 전통 붉은색 포인트 */
    
    --font-main: 'Gowun Batang', serif; /* 전통적인 느낌의 메인 폰트 */
    --font-sub: 'Noto Sans KR', sans-serif; /* 가독성을 위한 서브 폰트 */
}

/* 부드러운 스크롤 */
html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-sub);
    background-color: var(--hanji-bg);
    color: var(--main-text);
    line-height: 1.7;
    font-size: 16px;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 헤더 및 네비게이션 스타일 */
header {
    background-color: rgba(255, 255, 255, 0.8); /* 배경이 살짝 비치는 효과 */
    backdrop-filter: blur(5px); /* 배경 블러 처리 */
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-main);
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 0;
}

nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

nav li {
    margin-left: 25px;
}

nav a {
    text-decoration: none;
    color: var(--main-text);
    font-weight: 400;
    font-size: 15px;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--highlight-color);
}

/* 메인 섹션 공통 스타일 */
section {
    padding: 60px 0;
    overflow: hidden; /* 애니메이션을 위해 */
}

h2, h3 {
    font-family: var(--font-main);
    font-weight: 700;
    color: #222;
    text-align: center;
    margin-bottom: 40px;
}

h2 {
    font-size: 42px;
    line-height: 1.4;
}

h3 {
    font-size: 32px;
}

/* 다이나믹: 스크롤 시 페이드인 효과 */
.content-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.content-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 홈(히어로) 섹션 */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 0;
}

.hero .highlight {
    color: var(--highlight-color);
    font-weight: 700;
}

.hero .subtitle {
    font-size: 20px;
    font-family: var(--font-sub);
    font-weight: 300;
    color: #555;
    margin-top: 20px;
}

/* 다이나믹: 타이핑 효과 스타일 */
.typing-target {
    font-weight: 700;
    color: var(--accent-color);
}

.cursor {
    display: inline-block;
    color: var(--accent-color);
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* 소개 섹션 */
#about p {
    font-size: 17px;
    text-align: center;
    max-width: 700px;
    margin: 20px auto;
}

/* 특징 섹션 */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    background-color: #fff;
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.feature-item strong {
    font-family: var(--font-main);
    font-size: 20px;
    color: var(--accent-color);
    display: block;
    margin-bottom: 10px;
}

/* 오픈 예정 섹션 */
.launch-section {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.5); /* 배경과 살짝 구분 */
}

.launch-date {
    font-size: 22px;
    font-family: var(--font-main);
    font-weight: 700;
    color: var(--highlight-color);
    margin: 30px 0;
}

.subscribe-form p {
    font-size: 16px;
    margin-bottom: 15px;
}

.subscribe-form input[type="email"] {
    padding: 12px 15px;
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: var(--font-sub);
    font-size: 15px;
}

.subscribe-form button {
    padding: 12px 25px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-left: 10px;
}

.subscribe-form button:hover {
    background-color: #6d533c; /* 호버 시 조금 더 어둡게 */
}

/* 푸터 */
footer {
    text-align: center;
    padding: 30px 0;
    margin-top: 40px;
    border-top: 1px solid #eee;
    font-size: 14px;
    color: #888;
}
