/* ============================================
   首页样式 (Index Page Styles)
   ============================================ */

/* ==================== 1. 页面布局和背景 ==================== */

/* 页面主体样式 */
body.landing {
    background: linear-gradient(135deg, #fceeff 0%, #e6f0ff 100%) !important;
    font-family: "Microsoft YaHei", sans-serif;
}

/* ==================== 2. 导航栏样式 ==================== */

/* 导航栏容器 */
#header {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(255, 182, 193, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

/* Logo样式 */
#header h1 a {
    color: #ff9eb5;
    font-weight: bold;
}

/* 导航链接 - 初始状态改为粉色，提高可见性 */
#nav ul li a {
    color: #ff9eb5 !important;
    transition: color 0.3s;
}

/* 导航链接悬停效果 */
#nav ul li a:hover {
    color: #ff6b9d !important;
}

/* 登录按钮样式 */
.button.special {
    background: linear-gradient(45deg, #ff9eb5, #ffbfd3) !important;
    border-radius: 25px;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 158, 181, 0.4);
}

/* ==================== 3. Banner区域样式 ==================== */

/* Banner容器 */
#banner {
    background-color: transparent;
    background-image: url('../image/index/1.jpg');
    position: relative;
}

/* Banner遮罩 */
#banner::after {
    background: rgba(255, 255, 255, 0.3);
}

/* Banner内容 */
#banner .content {
    background: transparent !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    border: none !important;
    padding: 3em;
    text-align: center;
}

/* Banner标题 */
#banner h2 {
    color: #ff9eb5 !important;
    text-shadow: 2px 2px 0 #fff, 0 0 10px rgba(255, 158, 181, 0.5);
    font-size: 3em;
    margin-bottom: 0.5em;
}

/* Banner段落 */
#banner p {
    color: #fff !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    font-size: 1.2em;
    letter-spacing: 2px;
}

/* ==================== 4. 章节样式 ==================== */

/* 章节内容 */
.spotlight .content {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px);
    border: none !important;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    color: #555;
}

/* 章节标题 */
.spotlight h2 {
    color: #aecdff !important;
}

/* 章节段落 */
.spotlight p {
    color: #666;
}

/* ==================== 5. 卡片区域样式 ==================== */

/* 包装器样式 */
.wrapper.style1 {
    background: transparent;
}

/* 卡片样式 */
.box.alt {
    border: none;
}

/* 图标样式 */
.fa_icon .icon {
    color: #ff9eb5;
    border-color: #ff9eb5;
}

/* ==================== 6. 技能圆环样式 ==================== */

.spinner_01 {
    border-color: #ff9eb5;
    border-right-color: #aecdff;
    border-bottom-color: #aecdff;
}

.spinner_02 {
    border-color: #aecdff;
    border-right-color: #ff9eb5;
    border-bottom-color: #ff9eb5;
}

.spinner_03 {
    border-color: #e6f0ff;
    border-right-color: #ffbfd3;
    border-bottom-color: #ffbfd3;
}

/* ==================== 7. 其他元素样式 ==================== */

/* 爱好图片信息标题 */
.hobby_img_info h1 {
    color: #fff;
    text-shadow: 0 0 5px rgba(0,0,0,0.5);
}

/* 联系方式区域 */
#five {
    background: linear-gradient(45deg, #ff9eb5, #aecdff);
    color: white;
}

#five h2 {
    color: white !important;
}

#five p {
    color: white !important;
}

/* 页脚样式 */
#footer {
    background: #eef7ff;
    color: #888;
}

/* Banner 主按钮样式 */
#banner .actions .button {
    background: linear-gradient(45deg, #ff9eb5, #ffbfd3) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 6px 18px rgba(255, 158, 181, 0.35);
    transition: all 0.2s ease;
}

#banner .actions .button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(255, 158, 181, 0.45);
    filter: brightness(1.05);
}

#banner .actions .button:active {
    transform: translateY(-1px);
}

/* Spotlight 区域按钮样式 - 粉色渐变边框 */
.spotlight .button,
.spotlight .actions .button {
    background: transparent !important;
    color: #ff9eb5 !important;
    border: 2px solid #ff9eb5 !important;
    border-radius: 25px !important;
    padding: 12px 30px !important;
    font-weight: bold !important;
    box-shadow: 0 4px 15px rgba(255, 158, 181, 0.2) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
    display: inline-block !important;
    text-align: center !important;
    vertical-align: middle !important;
    line-height: 1.5 !important;
}

.spotlight .button::before,
.spotlight .actions .button::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(45deg, #ff9eb5, #ffbfd3) !important;
    transition: all 0.3s ease !important;
    z-index: -1 !important;
}

.spotlight .button:hover,
.spotlight .actions .button:hover {
    color: #fff !important;
    border-color: #ff9eb5 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(255, 158, 181, 0.4) !important;
}

.spotlight .button:hover::before,
.spotlight .actions .button:hover::before {
    left: 0 !important;
}

