* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #2a2a2a;
    --secondary-dark: #3a3a3a;
    --accent-gold: #d4af37;
    --accent-light: #e8e8e8;
    --gray-text: #b0b0b0;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--primary-dark);
    color: var(--accent-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 导航栏 */
.navbar {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.95), rgba(26, 31, 58, 0.95));
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--accent-light);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 80%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-gold);
}

/* Banner区域 */
.banner {
    padding: 10px 0;
    background: linear-gradient(90deg, #787878 0%, rgba(0, 0, 0, 1) 100%);
    /* background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%); */
    position: relative;
    overflow: hidden;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.banner-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.banner-text {
    animation: slideInLeft 0.8s ease-out;
    
    padding: 3rem;
    border-radius: 10px;
}

.banner-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent-light), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.banner-text > p:first-of-type {
    font-size: 1.3rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.banner-text .subtitle {
    font-size: 1rem;
    color: var(--gray-text);
    margin-bottom: 2rem;
    line-height: 1.8;
    max-width: 500px;
}

.cta-button {
    background: linear-gradient(135deg, var(--accent-gold), #e8d97a);
    color: var(--primary-dark);
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.cta-button:active {
    transform: translateY(-1px);
}

.banner-image {
    position: relative;
    animation: slideInRight 0.8s ease-out;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: var(--transition);
    max-height: 700px;
}

.banner-image:hover img {
    transform: scale(1.05);
}

/* 图片列表区域 */
.gallery-section {
    padding: 80px 0;
    position: relative;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--accent-light);
    position: relative;
    z-index: 2;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    margin: 1rem auto 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    position: relative;
    z-index: 2;
}

.gallery-item-link {
    text-decoration: none;
    display: block;
}

.gallery-item {
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.6), rgba(10, 14, 39, 0.6));
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.1);
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.gallery-item:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

.gallery-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: linear-gradient(135deg, var(--secondary-dark), var(--primary-dark));
    position: relative;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    display: block;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1) rotate(1deg);
    filter: brightness(1.1);
}

.gallery-info {
    padding: 0.5rem;
    text-align: center;
    /* background: linear-gradient(135deg, rgba(26, 31, 58, 0.8), rgba(10, 14, 39, 0.8)); */
}

.gallery-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--accent-gold);
    font-weight: 600;
}

.gallery-info p {
    font-size: 0.9rem;
    color: var(--gray-text);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--secondary-dark), var(--primary-dark));
    padding: 40px 0;
    text-align: center;
    color: var(--gray-text);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    margin-top: 80px;
}

/* 动画 */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 页面标题区域 */
.page-header {
    background: linear-gradient(135deg, var(--secondary-dark), var(--primary-dark));
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--accent-light);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--accent-gold);
    position: relative;
    z-index: 2;
}

/* 筛选区域 */
.filter-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.5), rgba(10, 14, 39, 0.5));
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.filter-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.8), rgba(10, 14, 39, 0.8));
    color: var(--accent-light);
    border: 2px solid rgba(212, 175, 55, 0.3);
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    font-size: 1rem;
}

.filter-btn:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-3px);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--accent-gold), #e8d97a);
    color: var(--primary-dark);
    border-color: var(--accent-gold);
}

/* 详细作品展示 */
.detailed-gallery {
    padding: 80px 0;
}

.gallery-grid-large {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.gallery-card {
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.6), rgba(10, 14, 39, 0.6));
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
    cursor: pointer;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.gallery-card:hover {
    transform: translateY(-15px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}

.card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    display: block;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 14, 39, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-card:hover .card-overlay {
    opacity: 1;
}

.gallery-card:hover .card-image img {
    transform: scale(1.1);
}

.view-btn {
    background: linear-gradient(135deg, var(--accent-gold), #e8d97a);
    color: var(--primary-dark);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.view-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.card-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-content h3 {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 0.8rem;
}

.card-content .artist {
    font-size: 0.95rem;
    color: var(--gray-text);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.card-content .description {
    font-size: 0.95rem;
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 1rem;
}

.card-meta span {
    font-size: 0.95rem;
    font-weight: 600;
}

.card-meta .year {
    color: var(--accent-gold);
}

.card-meta .price {
    color: var(--accent-light);
    font-size: 1.1rem;
}

/* 联系我们区域 */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-dark), var(--primary-dark));
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--accent-light);
    margin-bottom: 1rem;
}

.contact-section > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray-text);
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 3rem;
}

.contact-info h3,
.contact-form h3 {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.contact-info p {
    font-size: 1rem;
    color: var(--accent-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.contact-info strong {
    color: var(--accent-gold);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    background: rgba(26, 31, 58, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--accent-light);
    padding: 1rem;
    border-radius: 8px;
    font-family: inherit;
    transition: var(--transition);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--gray-text);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(26, 31, 58, 0.8);
}

.submit-btn {
    background: linear-gradient(135deg, var(--accent-gold), #e8d97a);
    color: var(--primary-dark);
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

/* 响应式设计 - 平板 */
@media (max-width: 1024px) {
    .banner-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 0;
    }

    .banner-text h1 {
        font-size: 2.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .gallery-grid-large {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .contact-content {
        gap: 40px;
    }
}

/* 响应式设计 - 平板竖屏 */
@media (max-width: 768px) {
    .banner {
        padding: 60px 0;
    }

    .banner-text h1 {
        font-size: 2rem;
    }

    .banner-text > p:first-of-type {
        font-size: 1.1rem;
    }

    .banner-text .subtitle {
        font-size: 0.95rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .gallery-info {
        padding: 1rem;
    }

    .gallery-info h3 {
        font-size: 1rem;
    }

    .gallery-info p {
        font-size: 0.85rem;
    }

    .nav-menu {
        gap: 1rem;
    }

    .nav-menu a {
        padding: 0.4rem 0.8rem;
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .page-header {
        padding: 60px 0;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .filter-section {
        padding: 40px 0;
    }

    .filter-controls {
        gap: 10px;
    }

    .filter-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }

    .gallery-grid-large {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .detailed-gallery {
        padding: 60px 0;
    }
}

/* 响应式设计 - 手机 */
@media (max-width: 480px) {
    .banner {
        padding: 40px 0;
    }

    .banner-text h1 {
        font-size: 1.8rem;
    }

    .banner-text > p:first-of-type {
        font-size: 1rem;
    }

    .banner-text .subtitle {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .gallery-info {
        padding: 0.8rem;
    }

    .gallery-info h3 {
        font-size: 0.95rem;
    }

    .gallery-info p {
        font-size: 0.8rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
    }

    .logo {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 40px;
    }

    .gallery-section {
        padding: 40px 0;
    }

    .page-header {
        padding: 40px 0;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }

    .page-header p {
        font-size: 0.95rem;
    }

    .filter-section {
        padding: 30px 0;
    }

    .filter-controls {
        gap: 8px;
    }

    .filter-btn {
        padding: 6px 15px;
        font-size: 0.85rem;
    }

    .gallery-grid-large {
        gap: 20px;
    }

    .card-content {
        padding: 1.5rem;
    }

    .card-content h3 {
        font-size: 1.2rem;
    }

    .card-content .artist {
        font-size: 0.85rem;
    }

    .card-content .description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .contact-section h2 {
        font-size: 1.8rem;
    }

    .contact-info h3,
    .contact-form h3 {
        font-size: 1.2rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 0.8rem;
    }

    .submit-btn {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .detailed-gallery {
        padding: 40px 0;
    }
}

/* 超小屏幕 */
@media (max-width: 320px) {
    .banner-text h1 {
        font-size: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* 作品详情页面样式 */
.artwork-detail {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
}

.detail-image-container {
    margin-bottom: 60px;
    border-radius: 15px;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

.detail-image-container img {
    width: 90%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    border-radius: 15px;
}


.detail-content {
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.5), rgba(10, 14, 39, 0.5));
    padding: 50px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.detail-content h2 {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.detail-content p {
    font-size: 1.1rem;
    color: var(--accent-light);
    line-height: 2;
    letter-spacing: 0.5px;
    text-align: justify;
}

.detail-actions {
    text-align: center;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.back-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-gold), #e8d97a);
    color: var(--primary-dark);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.back-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

/* 淡入上升动画 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 响应式设计 - 平板 */
@media (max-width: 1024px) {
    .detail-content {
        padding: 40px;
    }

    .detail-content h2 {
        font-size: 2rem;
    }

    .detail-image-container img {
        height: 400px;
    }
}

/* 响应式设计 - 平板竖屏 */
@media (max-width: 768px) {
    .artwork-detail {
        padding: 60px 0;
    }

    .detail-content {
        padding: 30px;
    }

    .detail-content h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .detail-content p {
        font-size: 1rem;
        line-height: 1.8;
    }

    .detail-image-container img {
        height: 300px;
    }
}

/* 响应式设计 - 手机 */
@media (max-width: 480px) {
    .artwork-detail {
        padding: 40px 0;
    }

    .detail-image-container {
        margin-bottom: 40px;
    }

    .detail-image-container img {
        height: 200px;
    }

    .detail-content {
        padding: 20px;
        margin-bottom: 30px;
    }

    .detail-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .detail-content p {
        font-size: 0.95rem;
        line-height: 1.7;
    }I enjoy hiking in deep mountains and exploring cities on foot. I have witnessed glaciers and oceans, and visited satellite launch bases. I love gazing at the starry sky while also observing the veins of a leaf or the structure of a snowflake. I take pleasure in capturing these wonderful moments with my camera, contemplating how a waterfall's descent transforms gravitational potential energy into kinetic energy, and realizing how the starlit sky showcases the magnificent performance of gravity and nuclear fusion.

    .back-button {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}
   .banner-image.detail-img img {
    max-height: 450px;
}
