/* 全局样式 */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background: #0d0d0d;
    color: #fff;
}

/* 导航栏样式 */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #3a3a3a;
    width: 100%;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5em;
    color: #f9004d;
}

.logo-icon {
    width: 130px;
    height: auto;
    vertical-align: middle;
}

.logo-icon-b {
    width: 80px;
    height: auto;
    vertical-align: middle;
}

.nav-links li {
    display: inline;
    margin: 0 15px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #f9004d;
}

/* 画廊样式 */
.gallery {
    padding: 40px;
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a, #333333);
}

.art-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.art-piece {
    width: 300px;
    height: 550px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease-in-out;
}

.art-piece img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.art-piece:hover {
    transform: scale(1.1);
}

/* 关于样式 */
.about {
    padding: 40px;
    text-align: center;
    background: #333;
}

.about h1 {
    margin-bottom: 20px;
    font-size: 2em;
    color: #f9004d;
}

.about p {
    font-size: 1.2em;
    line-height: 1.6;
}

/* 感谢样式 */
.thanks {
    padding: 40px;
    text-align: center;
    background: #333;
}

.thanks h1 {
    margin-bottom: 20px;
    font-size: 2em;
    color: #f9004d;
}

.thanks p {
    font-size: 1.2em;
    line-height: 1.6;
}


/* 联系样式 */
.contact {
    padding: 40px;
    text-align: center;
    background: #1a1a1a;
}

.contact form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.contact input,
.contact textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    outline: none;
    font-size: 1em;
}

.contact button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background: #f9004d;
    color: #fff;
    cursor: pointer;
    font-size: 1em;
}

.contact button:hover {
    background: #d7003c;
}

.text-link {
    display: inline-block;
    font-size: 1.5em;
    font-weight: bold;
    color: #f9004d;
    text-decoration: none;
    padding: 5px 10px;
    border: 2px solid #f9004d;
    border-radius: 5px;
    transition: background 0.3s, color 0.3s;
}

.text-link:hover {
    background: #f9004d;
    color: #fff;
}