/* 기본 설정 */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    line-height: 1.6;
}

/* 네비게이션 바 */
nav {
    display: flex;
    justify-content: space-between;
    padding: 1rem 5%;
    background: #333;
    color: white;
}
/* 메인 히어로 섹션 스타일 */
.hero-section {
    position: relative;
    padding: 150px 20px 100px;
    background-color: #0a0a0a; /* 깊은 검정색 */
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

.main-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
    word-break: keep-all; /* 모바일에서 단어 잘림 방지 */
}

.sub-text {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cccccc;
    word-break: keep-all;
}

.en-text {
    font-style: italic;
    color: #888888;
    font-size: 0.95rem;
    max-width: 800px;
    margin: 0 auto 50px;
}

.en-text span {
    display: block;
    margin-top: 10px;
    font-weight: 300;
}

/* 온체인 해시 스탬프 */
.hash-stamp {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.05);
    font-family: 'Courier New', monospace;
    color: #007bff; /* 포인트 컬러 */
}

/* 모바일 대응 */
@media (max-width: 768px) {
    .main-title { font-size: 1.8rem; }
    .sub-text { font-size: 1rem; }
    .hero-section { padding-top: 100px; }
}

/* 햄버거 아이콘 */
.menu-toggle {
    cursor: pointer;
    display: block; /* 모바일에서 보이게 설정 */
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: white;
    transition: all 0.3s ease-in-out;
}

/* 메뉴 리스트 (모바일 기본: 숨김) */
.nav-menu {
    position: fixed;
    left: -100%; /* 왼쪽 화면 밖으로 밀어냄 */
    top: 60px;
    flex-direction: column;
    background-color: #1a1a1a;
    width: 70%; /* 메뉴 바 너비 */
    height: 100vh;
    text-align: left;
    transition: 0.3s;
    list-style: none;
    padding: 20px;
}

/* 메뉴 활성화 시 위치 */
.nav-menu.active {
    left: 0;
}

.nav-menu li { margin: 25px 0; }
.nav-menu a { color: white; text-decoration: none; font-size: 1.2rem; }

/* PC 버전에서는 일반 메뉴로 보이게 설정 */
@media (min-width: 769px) {
    .menu-toggle { display: none; }
    .nav-menu {
        position: static;
        display: flex;
        flex-direction: row;
        height: auto;
        width: auto;
        left: 0;
        background: transparent;
        padding: 0;
    }
    .nav-menu li { margin: 0 0 0 20px; }
}
.hero {
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #f4f4f4;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    color: #222;
}

button {
    padding: 10px 20px;
    background: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}
