/* app/static/css/home.css */

/* 首页专属背景：清空外层内边距、精准吃满剩余高度 */
.hero.home-bg {
    padding: 0 !important;
    margin: 0;
    flex: 1 1 auto;
    min-height: 0;
    background: url('../picture/background.webp') no-repeat center center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
}

/* 首页中央内容块视觉重心上提 */
.home-hero-center {
    transform: translateY(-5vh);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-bg .hero-text h1 {
    color: #ffffff;
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.home-bg .hero-text p {
    color: #f0f0f0;
}