:root {
    --bg: #F7F8F2;
    --text: #000000;
    --accent: #FC3502;
}

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


body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    min-height: 100vh;
}

.landing-page {
    background-image: url(../images/background-image.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 60px;
    overflow: hidden;
}

.map-page {
    background-color: #ffffff;
    
    background-image: url(../images/Hi.png); 
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    background-attachment: fixed;
    

    min-height: 300vh;
    display: block;
    padding: 0;
}


.map-page .nav-item {
    color: #FF3300;
}


.hero-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 40px;
}

.top-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.main-title {
    font-size: 15vw; 
    
    font-weight: 900;
    -webkit-text-stroke: 2px black; 
    
    letter-spacing: -0.10em; 
    
    line-height: 0.5; 
    
    margin-top: 0;
    padding-top: 20px; 

    text-align: center;
    text-transform: uppercase;
}

.middle-section {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.middle-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -20px;
}

.name, .code {
    font-size: 5vw;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.description {
    font-size: 3vw;
    font-weight: 900;
    line-height: 0.8;
    letter-spacing: -0.1em;
    max-width: 70%;
    margin-bottom: 40px;
}

.arrow-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
}

.line {
    height: 6px;
    background-color: var(--accent-red);
    flex-grow: 0.6;
}

.arrow-wrapper {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding: 20px 0;
}

.custom-arrow {
    width: 50%;
    max-width: 600px;
    height: auto;
}

.custom-arrow:hover {
    transform: translateX(10px);
    transition: transform 0.3s ease;
}



/*main*/

.top-bar {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    
    padding: 15px 40px;
    border-bottom: 1.5px solid #ff3e00;
    
    font-family: "Helvetica Neue", Helvetica, sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.05em;
    background-color: #F7F8F2;
}

.nav-item {
    color: #ff3e00;
}

.main-link { flex: 1; }
.location-info { flex: 2; text-align: center; }
.time-display { flex: 1; text-align: right; }

.main-link a {
    text-decoration: none;
    transition: opacity 0.2s;
}
.main-link a:hover {
    opacity: 0.6;
}








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

body {
    background-color: #e0e0e0; /* 浅灰色背景 */
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #333;
    line-height: 1.4;
}

/* 顶部状态栏 */
.status-bar {
    display: flex;
    justify-content: space-between;
    padding: 5px 20px;
    font-size: 10px;
    border-bottom: 1px solid #d0d0d0;
    background: #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

/* 容器布局：模拟页面中的不对称白条背景 */
.container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff; /* 中间的白色垂直区域 */
    min-height: 100vh;
    padding-bottom: 100px;
}

/* 顶部插画 */
.hero-graphic {
    padding: 40px 20px;
    text-align: center;
}

.main-illustration {
    max-width: 90%;
    height: auto;
}

/* 内容流 */
.content-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 人物卡片 */
.profile-card {
    width: 100%;
    max-width: 400px;
    margin-bottom: 60px;
    padding: 0 20px;
}

.image-wrapper {
    width: 100%;
    margin-bottom: 15px;
}

.image-wrapper img {
    width: 100%;
    display: block;
    filter: grayscale(0%); /* 如果需要黑白效果可改为 100% */
}

/* 文字样式：重点还原橙红色调 */
.name {
    color: #ff3b00; /* 标志性的橙红色 */
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.major {
    font-weight: normal;
}

.qa-section {
    margin-bottom: 12px;
}

.question {
    color: #ff3b00;
    font-size: 0.75rem;
    font-weight: bold;
    margin-bottom: 4px;
}

.answer {
    color: #ff3b00;
    font-size: 0.75rem;
    line-height: 1.3;
    opacity: 0.9;
}

/* 响应式调整 */
@media (max-width: 480px) {
    .container {
        width: 100%;
    }
}