/* =====================================================
   Griffin Federal Republic - Index Page Style
   ===================================================== */

/* ========== 首页 Header（总统府主视觉） ========== */

header h1{
color:white;
}
header{
height:420px;

/* 与 article 风格统一 */
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;

color:white;
position:relative;
padding:0 20px;
}

/* 标题 */

header h1{
font-size:55px;
letter-spacing:6px;

/* 紧凑化  */
margin:18px 20px 10px;

text-shadow:0 5px 25px rgba(0,0,0,.5);
}

/* 副标题 */

header p{
font-size:20px;
margin:6px 0;
text-shadow:0 3px 15px rgba(0,0,0,.5);
}

/* ========== hero badge ========== */

.hero-badge{
padding:12px 35px;
border-radius:40px;

background:rgba(255,255,255,.15);
border:1px solid rgba(255,255,255,.35);

backdrop-filter:blur(15px);
}

/* ========== 社交区域 ========== */

.social{
margin-top:35px;
}

/* ========== 首页内容布局 ========== */

.container{
max-width:1100px;
margin:auto;
padding:50px 20px;

/* 首页为单列结构 */
display:block;
}

/* 首页卡片间距优化 */

.card{
margin-bottom:35px;
}

/* ========== 首页按钮区域 ========== */

.card .button{
margin-top:15px;
}

/* ========== 首页微动画增强（轻量） ========== */

.card{
animation:gf-homeFade .8s ease;
}

@keyframes gf-homeFade{
from{
opacity:0;
transform:translateY(40px);
}
to{
opacity:1;
}
}