/* Photographers Page Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif;
    background: #000;
    color: #fff;
    line-height: 1.6;
}

a {
    color: #fff;
    text-decoration: none;
}

a:hover {
    color: #c0a96e;
}

/* 导航栏 */
.navbar {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #c0a96e;
}

.navbar .nav-links {
    display: flex;
    gap: 2rem;
}

/* 主容器 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem 2rem;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #fff, #c0a96e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    color: #888;
    font-size: 1.1rem;
}

/* 摄影师网格 */
.photographer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.photographer-card {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    border: 1px solid #333;
}

.photographer-card:hover {
    transform: translateY(-10px);
    border-color: #c0a96e;
    box-shadow: 0 10px 30px rgba(192, 169, 110, 0.2);
}

.photographer-card .avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #333;
    margin: 0 auto 1.5rem;
    object-fit: cover;
    border: 3px solid #c0a96e;
}

.photographer-card .avatar-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c0a96e, #8B7355);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: bold;
    color: #000;
}

.photographer-card .name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.photographer-card .username {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 1rem;
}

.photographer-card .bio {
    color: #ccc;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    min-height: 3rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.photographer-card .stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
}

.photographer-card .stat-item {
    text-align: center;
}

.photographer-card .stat-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #c0a96e;
}

.photographer-card .stat-label {
    font-size: 0.85rem;
    color: #888;
    margin-top: 0.25rem;
}

/* 分页 */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    padding: 0.5rem 1rem;
    background: #1a1a1a;
    border-radius: 4px;
    color: #fff;
    transition: all 0.3s;
}

.pagination a:hover {
    background: #c0a96e;
    color: #000;
}

.pagination .active {
    background: #c0a96e;
    color: #000;
}

/* 空状态 */
.empty-state {
    text-align: center;
    padding: 6rem 2rem;
    color: #666;
}

.empty-state h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* 页脚 */
.footer {
    background: #0a0a0a;
    padding: 2rem;
    text-align: center;
    color: #666;
    margin-top: 4rem;
}

/* 响应式 */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
    }

    .container {
        padding: 6rem 1rem 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .photographer-grid {
        grid-template-columns: 1fr;
    }
}
