/**
 * 金翔鸽舍 - 专业信鸽网站样式
 * 风格：黑蓝白主色，水润通透，五行补水
 * 参考：hpw-js.com
 */

:root {
    --color-black: #0a0a0a;
    --color-dark: #0d1b2a;
    --color-navy: #1b263b;
    --color-blue: #415a77;
    --color-light-blue: #778da9;
    --color-white: #e0e1dd;
    --color-pure-white: #ffffff;
    --color-water: #4a90e2;
    --color-water-light: #6ab7ff;
    --color-glass: rgba(255, 255, 255, 0.05);
    --color-glass-border: rgba(255, 255, 255, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft YaHei', sans-serif;
    background: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
    min-height: 100vh;
}

/* 水润背景效果 */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(74, 144, 226, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(74, 144, 226, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 顶部导航 */
.header {
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid var(--color-glass-border);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo h1 {
    font-size: 1.8em;
    color: var(--color-water);
    font-weight: 300;
    letter-spacing: 4px;
}

.logo span {
    font-size: 0.7em;
    color: var(--color-light-blue);
    letter-spacing: 2px;
    margin-left: 10px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 0.95em;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-water);
    transition: width 0.3s;
}

.nav a:hover,
.nav a.active {
    color: var(--color-water-light);
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

/* 主视觉区 */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(180deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.8) 100%),
        url('https://jinxiangge6624-1254186538.cos.ap-beijing.myqcloud.com/images/hero-bg.jpg') center/cover;
}

.hero-content {
    text-align: center;
    z-index: 1;
    padding: 40px;
}

.hero-content h2 {
    font-size: 3.5em;
    font-weight: 300;
    color: var(--color-pure-white);
    margin-bottom: 20px;
    letter-spacing: 8px;
    text-shadow: 0 0 40px rgba(74, 144, 226, 0.5);
}

.hero-content p {
    font-size: 1.2em;
    color: var(--color-light-blue);
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 3em;
    color: var(--color-water);
    font-weight: 300;
    text-shadow: 0 0 20px rgba(74, 144, 226, 0.5);
}

.stat-label {
    font-size: 0.9em;
    color: var(--color-light-blue);
    letter-spacing: 2px;
}

/* 内容区块 */
.section {
    padding: 100px 0;
}

.section-dark {
    background: rgba(13, 27, 42, 0.5);
}

.section-title {
    font-size: 2.2em;
    font-weight: 300;
    color: var(--color-pure-white);
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 4px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--color-water);
    margin: 20px auto 0;
}

/* 鸽子卡片 */
.pigeon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.pigeon-card {
    background: var(--color-glass);
    border: 1px solid var(--color-glass-border);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.4s ease;
    text-decoration: none;
    color: inherit;
}

.pigeon-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-water);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(74, 144, 226, 0.2);
}

.pigeon-img {
    height: 250px;
    background: linear-gradient(135deg, var(--color-navy), var(--color-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pigeon-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.pigeon-card:hover .pigeon-img img {
    transform: scale(1.05);
}

.pigeon-info {
    padding: 25px;
}

.pigeon-info h3 {
    font-size: 1.3em;
    color: var(--color-water-light);
    margin-bottom: 8px;
    font-weight: 400;
}

.pigeon-ring {
    font-size: 0.9em;
    color: var(--color-light-blue);
    font-family: monospace;
    margin-bottom: 8px;
}

.pigeon-breed {
    font-size: 0.85em;
    color: var(--color-white);
    opacity: 0.8;
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75em;
    margin-top: 15px;
    font-weight: 500;
}

.status-现役 { background: rgba(76, 175, 80, 0.2); color: #4CAF50; }
.status-已故 { background: rgba(158, 158, 158, 0.2); color: #9e9e9e; }
.status-赛绩鸽 { background: rgba(33, 150, 243, 0.2); color: #2196F3; }
.status-源头种鸽 { background: rgba(255, 152, 0, 0.2); color: #FF9800; }

/* 表格 */
.record-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-glass);
    border-radius: 10px;
    overflow: hidden;
}

.record-table th {
    background: rgba(74, 144, 226, 0.2);
    color: var(--color-water-light);
    padding: 18px;
    text-align: left;
    font-weight: 500;
    letter-spacing: 1px;
}

.record-table td {
    padding: 15px 18px;
    border-bottom: 1px solid var(--color-glass-border);
    color: var(--color-white);
}

.record-table tr:hover td {
    background: rgba(74, 144, 226, 0.05);
}

/* 按钮 */
.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.95em;
    letter-spacing: 2px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: transparent;
    color: var(--color-water);
    border: 1px solid var(--color-water);
}

.btn-primary:hover {
    background: var(--color-water);
    color: var(--color-black);
    box-shadow: 0 0 30px rgba(74, 144, 226, 0.5);
}

.text-center {
    text-align: center;
}

/* 页脚 */
.footer {
    background: rgba(10, 10, 10, 0.98);
    border-top: 1px solid var(--color-glass-border);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-info h3 {
    font-size: 1.5em;
    color: var(--color-water);
    margin-bottom: 20px;
    font-weight: 300;
}

.footer-info p {
    color: var(--color-light-blue);
    margin: 8px 0;
    font-size: 0.9em;
}

.footer-nav {
    display: flex;
    gap: 30px;
}

.footer-nav a {
    color: var(--color-light-blue);
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--color-water);
}

.footer-copy {
    text-align: center;
    padding