/* 基础样式 */
:root {
  --primary-color: #1a1a1a;
  --secondary-color: #f5f5f5;
  --accent-color: #8bc8a8;
  --text-color: #333;
  --light-text: #f5f5f5;
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Montserrat', sans-serif;
}

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

html {
  scroll-behavior: smooth; /* 添加平滑滚动效果 */
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f5f5f5;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* 导航栏 */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 5%;
  position: fixed;
  width: 100%;
  z-index: 1000; /* 确保这个值小于音乐控制按钮的z-index */
  background-color: rgba(255, 255, 255, 0.95);
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  top: 0; /* 确保导航栏固定在顶部 */
}

.logo a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 2px;
  color: #333;
  transition: color 0.3s ease;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #333;
}

.language-switcher a {
  color: #333;
  opacity: 0.7;
}

.language-switcher a:hover {
  opacity: 1;
  color: var(--accent-color);
}

.language-switcher .divider {
  opacity: 0.5;
}

.logo a:hover {
  color: var(--accent-color);
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 2rem;
}

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #333;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent-color);
  font-weight: 500;
}

/* 扇子菜单按钮样式 */
.menu-toggle {
  display: none;
  cursor: pointer;
  position: relative;
  z-index: 1100;
}

.fan-menu-toggle {
  width: 40px; /* 进一步缩小合扇子图片的大小 */
  height: 40px; /* 进一步缩小合扇子图片的大小 */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible; /* 修改为visible，确保扇子图片不会被裁剪 */
  position: absolute; /* 使用绝对定位 */
  right: 20px; /* 固定在右侧 */
  top: 50%; /* 垂直居中 */
  transform: translateY(-50%); /* 垂直居中 */
  margin-right: 10px; /* 减少右边距 */
}

.fan-menu-icon {
  width: 100%;
  height: auto;
  transition: all 0.8s ease; /* 增加过渡时间，使动画更平滑 */
  transform-origin: bottom center;
  position: absolute; /* 使两个图片重叠 */
  top: 50%; /* 使用百分比定位，确保图片居中 */
  left: 50%;
  transform: translate(-50%, -50%); /* 使用transform居中图片 */
  max-width: 100%; /* 确保图片不会超出容器 */
  object-fit: contain; /* 保持图片比例 */
}

/* 确保两个扇子图片大小一致 */
.fan-menu-icon.open,
.fan-menu-icon.closed {
  width: 100%; /* 确保两个图片宽度一致 */
  height: auto; /* 保持图片比例 */
}

/* 默认显示关闭的扇子，隐藏打开的扇子 */
.fan-menu-icon.open {
  opacity: 0;
  transform: translate(-50%, -50%) scale(2.2) rotate(-90deg); /* 增大开扇子图片到原来的两倍 */
}

.fan-menu-icon.closed {
  opacity: 1;
  transform: translate(-50%, -50%) scale(0.8) rotate(90deg); /* 保持合扇子图片的当前尺寸 */
}

/* 菜单打开时显示打开的扇子，隐藏关闭的扇子 */
.fan-menu-toggle.active .fan-menu-icon.open {
  opacity: 1;
  transform: translate(-50%, -50%) scale(2.2) rotate(0deg); /* 增大开扇子图片到原来的两倍 */
  transition-delay: 0.4s; /* 添加延迟，先完成旋转再显示打开的扇子 */
}

.fan-menu-toggle.active .fan-menu-icon.closed {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8) rotate(180deg); /* 进一步缩小合扇子图片 */
  transition-duration: 0.5s; /* 缩短关闭扇子的过渡时间 */
}

/* 扇子菜单按钮悬停效果 */
.fan-menu-toggle:hover .fan-menu-icon.closed {
  transform: translate(-50%, -50%) rotate(15deg) scale(1.05);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* 扇子菜单按钮点击效果 */
.fan-menu-toggle:active .fan-menu-icon.closed {
  transform: translate(-50%, -50%) rotate(5deg) scale(0.95);
}

/* 打开状态下的悬停效果 */
.fan-menu-toggle.active:hover .fan-menu-icon.open {
  transform: translate(-50%, -50%) rotate(-15deg) scale(2.3); /* 调整悬停效果的缩放比例 */
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* 打开状态下的点击效果 */
.fan-menu-toggle.active:active .fan-menu-icon.open {
  transform: translate(-50%, -50%) rotate(-5deg) scale(2.1); /* 调整点击效果的缩放比例 */
}

/* 响应式导航 */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  
  /* 小屏幕上扇子菜单按钮的样式 */
  .fan-menu-toggle {
    width: 35px; /* 进一步减小小屏幕上的宽度 */
    height: 35px; /* 进一步减小小屏幕上的高度 */
    margin-right: 10px;
    position: absolute; /* 保持绝对定位 */
    right: 15px; /* 调整右侧位置 */
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.95);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: right 0.3s ease;
    z-index: 999;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links li {
    margin: 1.5rem 0;
  }
}

/* 调整导航栏在小屏幕上的样式，确保有足够空间容纳更大的扇子图标 */
@media (max-width: 768px) {
  .navbar {
    padding: 1rem 3%; /* 减少水平内边距，为扇子图标留出更多空间 */
  }
  
  .logo a {
    font-size: 1.4rem; /* 稍微减小logo字体大小，为扇子图标留出更多空间 */
  }
}

/* 在超小屏幕上进一步调整 */
@media (max-width: 480px) {
  .fan-menu-toggle {
    width: 30px; /* 在超小屏幕上进一步减小扇子图标 */
    height: 30px;
    right: 5px; /* 在超小屏幕上进一步调整位置 */
    margin-right: 10px; /* 进一步减少右边距 */
  }
  
  .logo a {
    font-size: 1.2rem; /* 进一步减小logo字体大小 */
  }
  
  /* 在超小屏幕上进一步调整扇子图片大小 */
  .fan-menu-icon {
    width: 85%; /* 进一步减小图片宽度 */
  }
}

/* 英雄区域 */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--primary-color);
  color: var(--light-text);
  padding: 0 5%;
  background-image: url('/images/hero-background.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 4rem;
  letter-spacing: 5px;
  margin-bottom: 1rem;
}

.subtitle {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 2rem;
}

/* 按钮样式 */
.btn-outline {
  display: inline-block;
  padding: 0.8rem 2rem;
  border: 1px solid currentColor;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.btn-outline:hover {
  background-color: var(--light-text);
  color: var(--primary-color);
}

/* 轮播图按钮样式 */
.btn-slide {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background-color: rgba(154, 140, 152, 0.2);
  backdrop-filter: blur(5px);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.btn-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(154, 140, 152, 0.3), transparent);
  transition: all 0.6s ease;
}

.btn-slide:hover {
  background-color: rgba(154, 140, 152, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-slide:hover::before {
  left: 100%;
}

.btn-solid {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: var(--primary-color);
  color: var(--light-text);
  border: none;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
}

.btn-solid:hover {
  background-color: var(--accent-color);
}

/* 作品预览 */
.preview {
  padding: 5rem 5%;
  text-align: center;
  background-color: white;
}

.preview h2 {
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.artwork {
  position: relative;
  overflow: hidden;
}

.artwork img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.artwork:hover img {
  transform: scale(1.05);
}

.artwork-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background: rgba(26, 26, 26, 0.7);
  color: var(--light-text);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.artwork:hover .artwork-info {
  transform: translateY(0);
}

/* 近期作品 */
.recent-work {
  position: relative;
  height: 500px;
  overflow: hidden;
  margin: 5rem 0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  object-fit: cover;
}

.video-background .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 26, 0.6); /* 半透明黑色遮罩 */
  z-index: 2;
}

.recent-work-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 0 2rem;
}

.recent-work-content h2 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: 5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.recent-work-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.recent-work-content .btn-outline {
  border-color: #fff;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(2px);
}

.recent-work-content .btn-outline:hover {
  background-color: #fff;
  color: #1a1a1a;
}

/* 宣传册 */
.brochure {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0;
  background-color: #f9f9f9;
  position: relative;
  overflow: hidden;
}

.brochure-image {
  flex: 1;
  height: 100%;
  overflow: hidden;
  position: relative;
  max-width: 25%;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  margin-left: 5%;
  transform-origin: left center;
  min-height: 400px;
}

.brochure-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
  transform-origin: left center;
  position: relative;
  z-index: 5;
  backface-visibility: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.brochure-inner-pages {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  transform-origin: left center;
  overflow: hidden;
  perspective: 1000px;
}

.page-spread {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%; /* 两倍宽度以容纳左右页面 */
  height: 100%;
  display: flex;
  transform-origin: left center;
  transition: transform 0.8s ease;
  z-index: 3;
  transform: translateX(-25%); /* 初始位置 */
}

.second-spread {
  z-index: 2;
  transform: translateX(-15%) scale(0.98); /* 稍微缩小并错开 */
  opacity: 0.9;
}

.page {
  flex: 1;
  height: 100%;
  overflow: hidden;
  position: relative;
  background-color: #fff;
}

.left-page {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.right-page {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.page img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brochure-image:hover {
  transform: translateY(-8px) rotateY(3deg) rotateX(2deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 15px rgba(0, 0, 0, 0.1);
}

.brochure-image:hover .brochure-cover {
  transform: rotateY(-60deg);
  box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
}

.brochure-image:hover .page-spread {
  transform: translateX(0%);
}

.brochure-image:hover .second-spread {
  transform: translateX(5%) scale(0.98);
  opacity: 0.7;
}

.brochure-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.brochure-image:hover img:not(.brochure-cover) {
  transform: scale(1.02);
}

.brochure-page-texture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    repeating-linear-gradient(
      to bottom,
      transparent,
      transparent 20px,
      rgba(0,0,0,0.01) 20px,
      rgba(0,0,0,0.01) 21px
    );
  opacity: 0.7;
  z-index: 2;
  pointer-events: none;
}

.brochure-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.1), transparent);
  z-index: 6;
  pointer-events: none;
}

.brochure-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: -10px;
  width: 10px;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.1), rgba(0,0,0,0.15));
  transform: rotateY(-25deg);
  transform-origin: right;
  z-index: 2;
  border-radius: 2px 0 0 2px;
}

.brochure-image::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(to left, rgba(255,255,255,0.05) 0%, transparent 5%),
    linear-gradient(to top, rgba(0,0,0,0.03) 0%, transparent 15%);
  z-index: 1;
  pointer-events: none;
}

.brochure-content {
  flex: 1;
  padding: 5rem;
  max-width: 800px;
  text-align: left;
  position: relative;
  z-index: 2;
  margin-left: 5%;
}

.brochure h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}

.brochure h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: #333;
}

.brochure blockquote {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: #555;
  position: relative;
  padding-left: 1.5rem;
  border-left: 2px solid #9a8c98;
}

.brochure .btn-outline {
  margin-top: 1rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.brochure .btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.1);
  transition: all 0.4s ease;
}

.brochure .btn-outline:hover::before {
  left: 100%;
}

/* 响应式调整 */
@media (max-width: 992px) {
  .brochure {
    flex-direction: column;
  }
  
  .brochure-image {
    width: 100%;
    height: auto;
    max-width: 40%;
    margin: 0 auto;
    margin-bottom: 2rem;
    min-height: 300px;
  }
  
  .brochure-image:hover .brochure-cover {
    transform: rotateY(-40deg);
  }
  
  .brochure-image:hover .page-spread {
    transform: translateX(-10%);
  }
  
  .brochure-content {
    padding: 3rem 2rem;
    text-align: center;
  }
  
  .brochure h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .brochure blockquote {
    padding-left: 0;
    border-left: none;
    padding-top: 1.5rem;
    border-top: 2px solid #9a8c98;
  }
}

/* 订阅 */
.subscribe {
  padding: 4rem 5%;
  text-align: center;
  background-color: white;
}

.subscribe-content h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}

.subscribe-form {
  display: flex;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto;
}

.subscribe-form input {
  flex: 1;
  padding: 0.8rem 1.5rem;
  border: 1px solid #ddd;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
}

.subscribe-form button {
  padding: 0.8rem 2rem;
  background-color: #333;
  color: white;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.subscribe-form button:hover {
  background-color: #9a8c98;
}

.hidden {
  display: none;
}

/* 页脚 */
footer {
  padding: 3rem 5%;
  background-color: var(--primary-color);
  color: var(--light-text);
  display: flex;
  justify-content: space-between;
}

.footer-content p {
  margin-bottom: 0.5rem;
}

.login-link a {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.login-link a:hover {
  color: var(--accent-color);
}

/* 响应式设计 */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  
  /* 小屏幕上扇子菜单按钮的样式 */
  .fan-menu-toggle {
    width: 35px;
    height: 35px;
    margin-right: 10px;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.95);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: right 0.3s ease;
    z-index: 999;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links li {
    margin: 1.5rem 0;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .subtitle {
    font-size: 1.2rem;
  }

  .subscribe-form {
    flex-direction: column;
  }

  .subscribe-form input {
    margin-bottom: 1rem;
  }

  /* 确保Contact页面在小屏幕上的标题不会挡住导航按钮 */
  .contact-title {
    padding-top: 2rem;
  }
}

/* 轮播图样式 */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.slider-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 2s ease, visibility 2s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

.slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: white;
  text-align: left;
  max-width: 600px;
  z-index: 2;
}

.slide-caption {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.5s ease 0.5s, transform 1.5s ease 0.5s;
}

.slide-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.5s ease 0.8s, transform 1.5s ease 0.8s;
}

.slide-content .subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 2rem;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.5s ease 1.1s, transform 1.5s ease 1.1s;
}

.slide-content .btn-outline {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.5s ease 1.4s, transform 1.5s ease 1.4s, background-color 0.3s ease, color 0.3s ease;
}

.slide.active .slide-caption,
.slide.active h1,
.slide.active .subtitle,
.slide.active .btn-outline {
  opacity: 1;
  transform: translateY(0);
}

/* 响应式调整 */
@media (max-width: 768px) {
  .slide-caption {
    font-size: 0.9rem;
  }
  
  .slide-content h1 {
    font-size: 3.5rem;
  }
  
  .slide-content .subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .slide-content {
    left: 5%;
  }
  
  .slide-caption {
    font-size: 0.8rem;
  }
  
  .slide-content h1 {
    font-size: 2.5rem;
  }
  
  .slide-content .subtitle {
    font-size: 0.9rem;
  }
  
  .btn-outline {
    padding: 0.5rem 1.5rem;
    font-size: 0.7rem;
  }
}

/* 图片集过滤器 */
.gallery-filter {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: none;
  border: 1px solid var(--primary-color);
  padding: 0.5rem 1.5rem;
  margin: 0 0.5rem 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
  background-color: var(--primary-color);
  color: white;
}

/* 图片集模态框 */
.gallery-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  overflow: auto;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 2001;
}

.modal-content {
  display: block;
  margin: auto;
  max-width: 80%;
  max-height: 80vh;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.modal-caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

.modal-prev, .modal-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.modal-prev {
  left: 20px;
}

.modal-next {
  right: 20px;
}

.modal-prev:hover, .modal-next:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* 视频部分 */
.video-section {
  padding: 5rem 0;
  background-color: #000;
}

.video-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

#artist-video {
  width: 100%;
  display: block;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  transition: opacity 0.5s ease;
}

.video-overlay h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.play-btn {
  background: none;
  border: none;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin-top: 2rem;
  transition: all 0.3s ease;
}

.play-btn:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.play-icon {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 0 15px 25px;
  border-color: transparent transparent transparent white;
  margin-left: 5px;
}

/* 当代艺术风格微调 */
.slide-content {
  position: relative;
}

/* 添加艺术感线条元素 */
.slide-content::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: white;
  opacity: 0.7;
}

/* 添加文字阴影效果增强可读性 */
.slide-content h1 {
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

/* 添加按钮悬停效果 */
.btn-outline {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-outline::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0.2);
  transition: height 0.3s ease;
  z-index: -1;
}

.btn-outline:hover::after {
  height: 100%;
}

/* 添加轻微动画效果 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 改进波纹效果部分 */
.psycho-art-section {
  position: relative;
  height: 400px;
  overflow: hidden;
  margin: 5rem 0;
  background: #000;
  color: #fff;
}

.psycho-art-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  background: linear-gradient(to bottom, #111, #000); /* 备用背景 */
}

/* 添加背景图片 */
.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/images/homebanner-slide1.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.85;
  filter: brightness(1) contrast(1.05);
  transition: transform 0.5s ease-out;
}

/* 添加浮动元素 */
.floating-element {
  position: absolute;
  border-radius: 50%;
  opacity: 0.25;
  filter: blur(20px);
  animation: float 20s infinite ease-in-out;
  mix-blend-mode: overlay;
}

.elem1 {
  width: 300px;
  height: 300px;
  background-color: rgba(255, 255, 255, 0.15);
  top: -100px;
  left: 10%;
  animation-delay: 0s;
  filter: blur(30px);
}

.elem2 {
  width: 200px;
  height: 200px;
  background-color: rgba(220, 220, 220, 0.12);
  bottom: -50px;
  right: 15%;
  animation-delay: -5s;
  filter: blur(25px);
}

.elem3 {
  width: 150px;
  height: 150px;
  background-color: rgba(200, 200, 200, 0.1);
  top: 30%;
  right: 30%;
  animation-delay: -2s;
  filter: blur(15px);
}

.elem4 {
  width: 250px;
  height: 250px;
  background-color: rgba(240, 240, 240, 0.13);
  bottom: 10%;
  left: 20%;
  animation-delay: -7s;
  filter: blur(20px);
}

.elem5 {
  width: 180px;
  height: 180px;
  background-color: rgba(230, 230, 230, 0.11);
  top: 60%;
  left: 40%;
  animation-delay: -3s;
  filter: blur(18px);
}

.elem6 {
  width: 120px;
  height: 120px;
  background-color: rgba(210, 210, 210, 0.09);
  top: 20%;
  left: 25%;
  animation-delay: -9s;
  filter: blur(12px);
}

@keyframes float {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) translateX(10px) rotate(2deg) scale(1.02);
  }
  50% {
    transform: translateY(8px) translateX(-8px) rotate(-3deg) scale(0.98);
  }
  75% {
    transform: translateY(-5px) translateX(5px) rotate(1deg) scale(1.01);
  }
  100% {
    transform: translateY(0) translateX(0) rotate(0deg);
  }
}

/* 添加脉动动画 */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.9;
  }
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
}

.wave-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 5rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.wave-content h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #fff;
  letter-spacing: 3px;
  animation: fadeInUp 1s ease-out;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.wave-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.3s forwards;
  opacity: 0;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.wave-content .btn-outline {
  animation: fadeInUp 1s ease-out 0.6s forwards;
  opacity: 0;
}

.btn-outline.light {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
}

.btn-outline.light:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

/* 全局音乐播放器样式 */
.music-player {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.music-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: rgba(26, 26, 26, 0.8);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 1500; /* 提高z-index，确保在导航栏上方 */
}

.music-toggle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(154, 140, 152, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 50%;
}

.music-toggle.active::before {
  opacity: 1;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.1);
    opacity: 0.3;
  }
  100% {
    transform: scale(0.95);
    opacity: 0.7;
  }
}

.music-toggle:hover {
  background-color: white;
  transform: scale(1.1);
}

.music-icon {
  color: white;
  font-size: 18px;
}

.music-toggle.active .music-icon {
  animation: rotate 3s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* 艺术化歌词样式 */
.artistic-lyrics {
  position: fixed;
  bottom: 80px;
  right: 20px;
  max-width: 300px;
  background-color: rgba(26, 26, 26, 0.8);
  color: white;
  padding: 15px;
  border-radius: 8px;
  font-family: var(--font-serif);
  font-style: italic;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transform: translateY(0);
  opacity: 1;
  transition: all 0.5s ease;
  pointer-events: none;
  z-index: 1500; /* 提高z-index，确保在导航栏上方 */
}

.artistic-lyrics.hidden {
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden; /* 完全隐藏元素，防止占用空间 */
}

.lyric-word {
  position: absolute;
  font-family: var(--font-serif);
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 1s ease, transform 1s ease;
  pointer-events: none;
  user-select: none;
  z-index: 1400; /* 提高z-index，但保持低于控制按钮 */
  mix-blend-mode: difference; /* 更改混合模式，使文字在不同背景上都清晰可见 */
}

.lyric-word.active {
  opacity: 0.9;
  transform: scale(1);
}

.lyric-word.fade-out {
  opacity: 0;
  transform: scale(1.2);
  transition: opacity 2s ease, transform 2s ease;
}

/* 歌词控制按钮 */
.lyrics-toggle-btn {
  position: fixed;
  bottom: 20px;
  right: 70px;
  width: 40px;
  height: 40px;
  background-color: rgba(26, 26, 26, 0.8);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 1500; /* 提高z-index，确保在导航栏上方 */
}

.lyrics-toggle-btn svg {
  width: 20px;
  height: 20px;
  color: #333;
  transition: transform 0.3s ease;
}

.lyrics-toggle-btn:hover {
  background-color: white;
  transform: scale(1.1);
}

.lyrics-toggle-btn.active {
  background-color: rgba(255, 255, 255, 0.9);
}

.lyrics-toggle-btn.active svg {
  color: #333;
  animation: rotate 3s linear infinite;
}

/* 使用与音乐图标相同的旋转动画 */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* 艺术作品集合页面样式 */
.collection-header {
  height: 50vh;
  min-height: 400px;
  background-color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  background-image: url('/images/collection-bg.jpg');
  background-size: cover;
  background-position: center;
}

.collection-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.collection-title {
  position: relative;
  z-index: 2;
}

.collection-title h1 {
  font-size: 4rem;
  letter-spacing: 5px;
  margin-bottom: 1rem;
}

.artworks-filter {
  padding: 2rem 0;
  background-color: #f9f9f9;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.5rem 1rem;
  background: transparent;
  border: 1px solid #333;
  border-radius: 30px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.filter-btn:hover, .filter-btn.active {
  background-color: #1a1a1a;
  color: white;
  border-color: #1a1a1a;
}

.artworks-grid {
  padding: 4rem 0;
}

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

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

/* 艺术作品项容器 */
.artwork-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #f0f0f0;
}

.artwork-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.artwork-item a {
  display: block;
  height: 100%;
  width: 100%;
  position: relative;
}

.artwork-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 信息覆盖层 */
.artwork-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.artwork-item:hover .artwork-info {
  opacity: 1;
}

.artwork-item h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 500;
}

.artwork-date {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

.view-more {
  text-align: center;
  margin-top: 2rem;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .artworks-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .artworks-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .filter-buttons {
    gap: 0.6rem;
    margin-bottom: 2rem;
  }
  
  .filter-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
  }
}

/* 恢复首页艺术作品覆盖层样式 */
.homepage-artwork-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.homepage-artwork-item:hover .homepage-artwork-overlay {
  opacity: 1;
  transform: translateY(0);
}

.homepage-artwork-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

/* 纯方形艺术作品网格 - 完全无白色区域 */
.artworks-section {
  padding: 4rem 0;
  max-width: 1200px;
  margin: 0 auto;
  width: 90%;
}

.collection-empty-message {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 0.95rem;
  color: #555;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 2.5rem;
  font-weight: 300;
  color: #333;
}

/* 过滤按钮样式 */
.filter-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.5rem 1rem;
  background: transparent;
  border: 1px solid #333;
  border-radius: 30px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.filter-btn.active {
  background-color: #333;
  color: white;
}

.filter-btn:hover:not(.active) {
  background-color: rgba(51, 51, 51, 0.1);
}

/* 纯方形艺术作品网格 */
.artworks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

/* 首页艺术作品展示 */
.homepage-artworks {
  padding: 6rem 0;
  background-color: var(--secondary-color);
}

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

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  font-family: var(--font-serif);
}

.homepage-artworks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.homepage-artwork-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  aspect-ratio: 3/4;
  cursor: pointer;
  background-color: #f0f0f0;
}

.homepage-artwork-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.homepage-artwork-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.homepage-artwork-item:hover .homepage-artwork-image {
  transform: scale(1.05);
}

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

.mt-5 {
  margin-top: 3rem;
}

.btn-outline {
  display: inline-block;
  padding: 0.8rem 2rem;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--light-text);
}

/* 艺术作品详情页 */
.artwork-detail-page {
  padding-top: 120px; /* 确保内容不被导航栏遮挡 */
  padding-bottom: 60px;
  background-color: #f9f9f9;
}

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

.artwork-header {
  text-align: center;
  margin-bottom: 40px;
}

.artwork-header h1 {
  font-size: 2.5rem;
  font-weight: 400;
  color: #333;
  margin-bottom: 10px;
}

.artwork-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 60px;
}

.artwork-image-container {
  position: relative;
  width: 100%;
  margin-bottom: 2rem;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background-color: #f0f0f0;
  min-height: 300px;
}

.artwork-image-container .artwork-image-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  overflow: hidden;
}

.artwork-image-container .artwork-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.artwork-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  max-width: 100%;
  max-height: 70vh;
}

/* 添加倒影效果 */
.artwork-image-container::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), transparent);
  filter: blur(5px);
  transform: scaleY(-1);
  opacity: 0.5;
}

.artwork-info-container {
  flex: 1;
  min-width: 300px;
}

.artwork-info-container h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #333;
}

.artwork-date {
  font-style: italic;
  color: #666;
  margin-bottom: 20px;
}

.artwork-description {
  margin-bottom: 30px;
  line-height: 1.8;
  white-space: pre-wrap;
}

.artwork-details {
  margin-bottom: 30px;
  padding: 20px;
  background-color: #f0f0f0;
  border-radius: 4px;
}

.artwork-details p {
  margin-bottom: 10px;
}

.inquire-price {
  font-style: italic;
  color: #9a8c98;
}

.artwork-detail-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.artwork-additional-info {
  margin-top: 60px;
  padding: 30px;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.artwork-additional-info h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  margin-top: 30px;
  color: #333;
}

.artwork-additional-info h3:first-child {
  margin-top: 0;
}

.artwork-additional-info p {
  line-height: 1.8;
  margin-bottom: 20px;
  white-space: pre-wrap;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .artwork-detail {
    flex-direction: column;
  }
  
  .artwork-image-container {
    max-width: 100%;
  }
  
  .artwork-header h1 {
    font-size: 2rem;
  }
  
  .artwork-info-container h2 {
    font-size: 1.5rem;
  }
}

/* 视频加载指示器 */
.video-loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.video-loading.show {
  opacity: 1;
  pointer-events: auto;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s ease-in-out infinite;
  margin-bottom: 1rem;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* 艺术作品详情页样式 */
.artwork-detail {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 5%;
}

.artwork-image-container {
  position: relative;
  width: 100%;
  margin-bottom: 2rem;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.artwork-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Collection页面的艺术作品网格 */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.collection-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  aspect-ratio: 1/1; /* 强制方形比例 */
  background-color: #f0f0f0; /* 背景色，防止图片加载时出现空白 */
}

.collection-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.collection-item a {
  display: block;
  height: 100%;
  width: 100%;
  position: relative;
}

.collection-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Brochure页面样式 */
.brochure-page {
  padding: 2rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.brochure-header {
  text-align: center;
  margin: 3rem 0 4rem;
}

.brochure-header h1 {
  font-size: 3rem;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

.brochure-gallery {
  display: flex;
  gap: 4rem;
  margin-bottom: 5rem;
}

.brochure-image-large {
  flex: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.brochure-image-large img {
  width: 100%;
  height: auto;
  display: block;
}

.brochure-details {
  flex: 1;
}

.brochure-details h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.brochure-details p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.brochure-info {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.info-item {
  flex: 1;
}

.info-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #666;
}

.brochure-details blockquote {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.6;
  margin: 2rem 0;
  padding-left: 1.5rem;
  border-left: 3px solid #333;
  color: #555;
}

.brochure-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.brochure-preview {
  margin-top: 5rem;
}

.brochure-preview h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.2rem;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.preview-grid.two-column {
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  max-width: 80%;
  margin: 0 auto 3rem;
}

.preview-item {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.preview-item:hover {
  transform: translateY(-5px);
}

.preview-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* 左侧页面特殊样式 */
.preview-grid.two-column .preview-item:first-child {
  border-right: none;
  box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.1);
}

/* 右侧页面特殊样式 */
.preview-grid.two-column .preview-item:last-child {
  border-left: none;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
}

/* 悬停效果 */
.preview-grid.two-column:hover .preview-item:first-child {
  transform: translateY(-5px) translateX(-2px);
}

.preview-grid.two-column:hover .preview-item:last-child {
  transform: translateY(-5px) translateX(2px);
}

/* 添加书脊效果 */
.preview-grid.two-column {
  position: relative;
}

.preview-grid.two-column::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 2px;
  background: linear-gradient(to bottom, 
    rgba(0,0,0,0.05), 
    rgba(0,0,0,0.1) 20%, 
    rgba(0,0,0,0.1) 80%, 
    rgba(0,0,0,0.05)
  );
  transform: translateX(-50%);
  z-index: 2;
}

/* 响应式调整 */
@media (max-width: 992px) {
  .brochure-gallery {
    flex-direction: column;
    gap: 2rem;
  }
  
  .brochure-info {
    flex-direction: column;
    gap: 1rem;
  }
  
  .brochure-actions {
    flex-direction: column;
  }
  
  .preview-grid.two-column {
    max-width: 95%;
  }
}

/* 添加页面标题样式 */
.brochure-preview h3 {
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 3rem;
  font-size: 1.2rem;
  color: #666;
  font-style: italic;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.video-play-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-play-btn .play-icon {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 0 15px 25px;
  border-color: transparent transparent transparent #ffffff;
  margin-left: 5px;
}

/* Fan Showcase Styles */
.fan-showcase {
  width: 100%;
  height: 75vh; /* 增加高度，为上方文字留出空间 */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  background: #ffffff;
  margin-top: 70px;
  margin-bottom: -100px; /* 调整负边距，确保遮挡扇子底部 */
}

.fan-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  padding-top: 100px; /* 向下移动扇子，确保上方文字完全可见 */
  transform: translateY(0); /* 移除向上的变换 */
}

.fan-image {
  max-height: 80vh;
  max-width: 80%;
  object-fit: contain;
  opacity: 0.9; /* 添加轻微透明度，符合美学需求 */
  filter: none; /* 移除所有滤镜效果 */
  transform-origin: bottom center;
  animation: fanFloat 15s ease-in-out infinite;
}

@keyframes fanFloat {
  0% {
    transform: rotate(-5deg) scale(1);
    filter: none;
  }
  25% {
    transform: rotate(0deg) scale(1.05) translateY(-1%);
    filter: none;
  }
  50% {
    transform: rotate(5deg) scale(1.1);
    filter: none;
  }
  75% {
    transform: rotate(0deg) scale(1.05) translateY(-1%);
    filter: none;
  }
  100% {
    transform: rotate(-5deg) scale(1);
    filter: none;
  }
}

/* Contact Page Styles */
.contact-section {
  padding: 6rem 2rem 6rem; /* 调整顶部内边距 */
  position: relative;
  z-index: 10; /* 增加z-index，确保它在扇子图片上方 */
  background-color: rgba(255, 255, 255, 0.85); /* 增加不透明度，更好地遮挡底部 */
  backdrop-filter: blur(5px);
  margin: -150px auto 3rem; /* 调整负边距，确保遮挡扇子底部 */
  max-width: 1200px;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15); /* 增强阴影效果 */
  border-top: 2px solid rgba(255, 255, 255, 0.7); /* 增强顶部边框 */
}

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

.page-title {
  margin-bottom: 2rem;
  text-align: center;
  font-size: 2.5rem;
  color: #333;
  position: relative;
}

.page-title:after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background-color: #9a8c98;
  margin: 0.5rem auto 0;
}

.contact-content {
  /* Existing styles */
}

/* 响应式调整 */
@media (max-width: 768px) {
  .fan-showcase {
    height: 60vh; /* 调整高度 */
    margin-bottom: -80px; /* 调整负边距 */
  }
  
  .fan-container {
    padding-top: 80px; /* 在小屏幕上向下移动扇子 */
    transform: translateY(0);
  }
  
  .fan-image {
    max-height: 90%;
    max-width: 90%;
  }
  
  .contact-section .page-title {
    font-size: 2rem;
  }
  
  .contact-section {
    padding-top: 5rem; /* 调整顶部内边距 */
    margin-top: -100px; /* 调整Contact部分的位置 */
  }
}

/* 简化的联系页面样式 */
.contact-details {
  margin: 2rem 0;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-label {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.contact-link {
  font-size: 1.2rem;
  color: var(--accent-color);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 2px solid var(--accent-color);
  border-radius: 6px;
  transition: all 0.3s ease;
  display: inline-block;
}

.contact-link:hover {
  background-color: var(--accent-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(139, 200, 168, 0.3);
}
  
  .menu-toggle {
    z-index: 1100;
  }
  
  /* 确保Contact页面在小屏幕上的标题不会挡住导航按钮 */
  .contact-title {
    padding-top: 2rem;
  }
}

/* 扇子菜单按钮悬停效果 */
.fan-menu-toggle:hover .fan-menu-icon.closed {
  transform: rotate(15deg) scale(1.05);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* 扇子菜单按钮点击效果 */
.fan-menu-toggle:active .fan-menu-icon.closed {
  transform: rotate(5deg) scale(0.95);
}

/* 打开状态下的悬停效果 */
.fan-menu-toggle.active:hover .fan-menu-icon.open {
  transform: rotate(-15deg) scale(1.05);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* 打开状态下的点击效果 */
.fan-menu-toggle.active:active .fan-menu-icon.open {
  transform: rotate(-5deg) scale(0.95);
} 

/* 添加通用的悬停效果，使鼠标悬停更加明显 */
.nav-links a,
.btn,
.btn-slide,
.btn-outline,
.btn-solid,
.filter-btn,
.subscribe-form button {
  cursor: pointer;
  transition: all 0.3s ease;
}

/* 增强悬停效果 */
.nav-links a:hover,
.btn:hover,
.btn-slide:hover,
.btn-outline:hover,
.btn-solid:hover,
.filter-btn:hover,
.subscribe-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* 为VERA GALLERY标志添加特定的悬停效果 */
.logo a {
  transition: all 0.3s ease;
}

.logo a:hover {
  transform: translateY(-2px); /* 保持轻微上移效果 */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.08); /* 减轻文字阴影效果 */
}

/* 隐藏Psychoanalytical Art部分的DISCOVER MORE按钮 */
.psycho-art-section .btn-outline.light {
  display: none; /* 隐藏按钮 */
}

.artwork-hover-actions {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.9);
  transition: bottom 0.3s ease;
}

.artwork-item:hover .artwork-hover-actions {
  bottom: 0;
}

.btn-small {
  font-size: 0.8rem;
  padding: 5px 10px;
}

.artwork-image-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 100%; /* 默认1:1比例 */
  overflow: hidden;
  background-color: #f0f0f0;
}

.artwork-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 画廊样式 */
.artwork-gallery {
  margin-top: 2rem;
  width: 100%;
+ max-width: 800px;
+ margin-left: auto;
+ margin-right: auto;
}

.gallery-grid {
  display: grid;
- grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
+ grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
+ aspect-ratio: 1/1;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.5rem;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  font-size: 0.9rem;
}

/* 图片查看器模态框 */
.image-viewer-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  overflow: hidden;
}

.image-viewer-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-viewer-img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.image-viewer-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

.image-viewer-prev,
.image-viewer-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
}

.image-viewer-prev {
  left: 20px;
}

.image-viewer-next {
  right: 20px;
}

/* 媒体资源页面样式 */
.media-hero {
  padding: 120px 0 60px;
  background-color: #1a1a1a;
  color: #f5f5f5;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 300px;
}

.media-hero h1, .media-hero .subtitle {
  position: relative;
  z-index: 2;
}

.media-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 300;
  letter-spacing: 2px;
}

.media-hero .subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 1px;
  max-width: 600px;
  margin: 0 auto;
}

.media-section {
  padding: 80px 0;
  background-color: #f5f5f5;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.media-card {
  background-color: white;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.media-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.media-card h2 {
  font-size: 1.8rem;
  margin-bottom: 25px;
  font-weight: 400;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 15px;
}

.media-card h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: #8bc8a8;
}

.media-card.full-width {
  grid-column: 1 / -1;
}

.brand-assets {
  display: flex;
  gap: 30px;
  align-items: center;
}

.brand-logo {
  flex: 0 0 200px;
}

.logo-image {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.brand-info {
  flex: 1;
}

.btn-download {
  display: inline-block;
  padding: 8px 15px;
  background-color: #1a1a1a;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.9rem;
  margin-right: 10px;
  margin-bottom: 10px;
  transition: background-color 0.3s ease;
}

.btn-download:hover {
  background-color: #333;
}

.btn-download-large {
  display: inline-block;
  padding: 12px 25px;
  background-color: #1a1a1a;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-size: 1rem;
  margin-right: 15px;
  margin-bottom: 15px;
  transition: background-color 0.3s ease;
}

.btn-download-large:hover {
  background-color: #333;
}

.color-palette {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.color-swatch {
  display: flex;
  align-items: center;
  gap: 15px;
}

.swatch {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.swatch-info h3 {
  font-size: 1rem;
  margin-bottom: 5px;
}

.swatch-info p {
  font-size: 0.9rem;
  margin: 0;
  color: #666;
}

.typography-guide {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.font-sample h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.font-example {
  font-size: 1.2rem;
  margin-bottom: 10px;
  line-height: 1.5;
}

.font-sample.serif .font-example {
  font-family: 'Cormorant Garamond', serif;
}

.font-sample.sans .font-example {
  font-family: 'Montserrat', sans-serif;
}

.font-desc {
  color: #666;
  font-size: 0.9rem;
}

.voice-guidelines {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.voice-attribute h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.photo-style {
  display: flex;
  gap: 30px;
}

.photo-example {
  flex: 0 0 200px;
}

.photo-example img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.photo-guidelines {
  flex: 1;
}

.photo-guidelines ul {
  margin-top: 15px;
  padding-left: 20px;
}

.photo-guidelines li {
  margin-bottom: 8px;
}

.press-downloads {
  margin-top: 20px;
}

.media-contact {
  margin-top: 10px;
}

.contact-info {
  margin-top: 15px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 4px;
}

.contact-info p {
  margin-bottom: 10px;
}

.contact-info a {
  color: #1a1a1a;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .media-grid {
    grid-template-columns: 1fr;
  }
  
  .brand-assets,
  .photo-style {
    flex-direction: column;
  }
  
  .color-palette,
- .voice-guidelines {
+ .voice-guidelines,
+ .artist-photos {
    grid-template-columns: 1fr;
  }
}

/* 艺术家照片样式 */
.artist-photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 20px;
  max-width: 100%;
  overflow: hidden;
+ box-sizing: border-box;
}

.artist-photo-item {
  display: flex;
  flex-direction: column;
  background-color: white;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  max-width: 100%;
+ box-sizing: border-box;
}

.artist-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.photo-caption {
  padding: 20px;
+ font-size: 0.95rem;
}

.photo-caption h3 {
- font-size: 1.4rem;
+ font-size: 1.2rem;
  margin-bottom: 10px;
}

.photo-caption p {
  margin-bottom: 15px;
  color: #555;
  line-height: 1.6;
+ font-size: 0.9rem;
}

/* 确保媒体卡片不会溢出 */
.media-card {
+ max-width: 100%;
+ overflow: hidden;
  background-color: white;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
- padding: 40px;
+ padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
+ box-sizing: border-box;
}

/* 调整媒体区域容器 */
.media-section .container {
+ max-width: 1200px;
+ width: 90%;
+ margin: 0 auto;
+ overflow: hidden;
+ padding: 0 15px;
+ box-sizing: border-box;
}

/* 在小屏幕上进一步调整 */
@media (max-width: 992px) {
+ .artist-photos {
+   grid-template-columns: 1fr;
+   gap: 30px;
+ }
+ 
+ .artist-image {
+   height: 300px;
+ }
}

/* 艺术家照片查看器 */
.artist-photo-viewer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.artist-photo-viewer img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.artist-photo-viewer-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

/* 更新按钮样式 */
.btn-primary {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
- background-color: #333;
+ background-color: var(--accent-color);
+ color: var(--primary-color);
}

/* 更新筛选按钮样式 */
.filter-btn.active {
- background-color: var(--primary-color);
+ background-color: var(--accent-color);
- color: white;
+ color: var(--primary-color);
}

.filter-btn:hover {
- background-color: #333;
+ background-color: var(--accent-color);
- color: white;
+ color: var(--primary-color);
}

/* 更新订阅按钮样式 */
.subscribe-btn,
.subscribe-form button[type="submit"],
#subscribe-form button[type="submit"],
.subscribe-content button[type="submit"],
.subscribe button[type="submit"] {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.subscribe-btn:hover,
.subscribe-form button[type="submit"]:hover,
#subscribe-form button[type="submit"]:hover,
.subscribe-content button[type="submit"]:hover,
.subscribe button[type="submit"]:hover {
  background-color: var(--accent-color);
  color: var(--primary-color);
}

/* 特别针对首页订阅区域的按钮 */
.subscribe .btn-solid,
.subscribe-content .btn-solid {
  background-color: #9a8c98; /* 当前的紫红色 */
  color: white;
}

.subscribe .btn-solid:hover,
.subscribe-content .btn-solid:hover {
  background-color: #8bc8a8; /* 我们的绿色强调色 */
  color: #1a1a1a;
}

/* 更新社交媒体图标悬停效果 */
.social-icons a:hover {
- color: #333;
+ color: var(--accent-color);
}

/* 更新表单元素焦点状态 */
input:focus, 
textarea:focus, 
select:focus {
- border-color: #333;
+ border-color: var(--accent-color);
  outline: none;
}

/* 更新链接悬停效果 */
.content-link:hover {
- color: #333;
+ color: var(--accent-color);
}

/* 中文书法样式 */
.calligraphy-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.calligraphy-group {
+ position: absolute;
+ opacity: 0;
+ animation: groupFadeInOut 10s infinite;
}

.calligraphy-group:nth-child(2) {
+ animation-delay: 5s;
}

.calligraphy-char {
  position: absolute;
- font-family: 'Ma Shan Zheng', cursive;
+ font-family: 'ZCOOL XiaoWei', serif; /* 更适合的字体 */
- color: rgba(255, 255, 255, 0.1);
+ color: rgba(255, 255, 255, 0.15);
- font-size: 15vw;
+ font-size: 45vw; /* 更大的字体，约为标题的3倍 */
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
- animation: fadeInOut 8s infinite alternate ease-in-out;
+ font-weight: bold;
+ text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

- @keyframes fadeInOut {
-   0% {
-     opacity: 0.05;
-     transform: scale(0.95) rotate(var(--rotate, 0deg));
-   }
-   50% {
-     opacity: 0.15;
-     transform: scale(1) rotate(var(--rotate, 0deg));
-   }
-   100% {
-     opacity: 0.05;
-     transform: scale(0.95) rotate(var(--rotate, 0deg));
-   }
- }
+ @keyframes groupFadeInOut {
+   0% {
+     opacity: 0;
+   }
+   20% {
+     opacity: 1;
+   }
+   40% {
+     opacity: 1;
+   }
+   60% {
+     opacity: 0;
+   }
+   100% {
+     opacity: 0;
+   }
+ }

/* 调整媒体英雄区域，使其能够容纳书法字 */
.media-hero {
  padding: 120px 0 60px;
  background-color: #1a1a1a;
  color: #f5f5f5;
  text-align: center;
  position: relative;
  overflow: hidden;
- min-height: 300px;
+ min-height: 400px; /* 增加高度以容纳更大的字体 */
}

.media-hero h1, .media-hero .subtitle {
  position: relative;
  z-index: 2;
}

.artwork-detail-actions .btn-outline {
  display: inline-block;
  padding: 0.8rem 2rem;
  border: 1px solid #8bc8a8;
  color: #8bc8a8;
  background-color: transparent;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  text-align: center;
}

.artwork-detail-actions .btn-outline:hover {
  background-color: #8bc8a8;
  color: white;
}

/* 特别针对首页订阅按钮 */
.subscribe-form button[type="submit"],
.subscribe-form .btn-solid,
#subscribe-form button[type="submit"],
#subscribe-form .btn-solid,
button.btn-solid,
input[type="submit"].btn-solid {
  background-color: #1a1a1a !important; /* 黑色 */
  color: white !important;
  transition: all 0.3s ease !important;
}

.subscribe-form button[type="submit"]:hover,
.subscribe-form .btn-solid:hover,
#subscribe-form button[type="submit"]:hover,
#subscribe-form .btn-solid:hover,
button.btn-solid:hover,
input[type="submit"].btn-solid:hover {
  background-color: #8bc8a8 !important; /* 绿色强调色 */
  color: #1a1a1a !important;
}

/* 特别针对"INQUIRE ABOUT THIS PIECE"按钮 */
.artwork-detail-actions .inquire-btn {
  background-color: #1a1a1a;
  color: white;
  border: none;
}

.artwork-detail-actions .inquire-btn:hover {
  background-color: #8bc8a8;
  color: #1a1a1a;
}

/* 添加首页"View Full Collection"链接的样式 */
+ .collection-link {
+   display: inline-block;
+   padding: 0.8rem 2rem;
+   font-family: var(--font-sans);
+   font-size: 0.9rem;
+   letter-spacing: 2px;
+   text-transform: uppercase;
+   color: var(--primary-color);
+   border: 1px solid var(--primary-color);
+   transition: all 0.3s ease;
+   text-decoration: none;
+ }
+ 
+ .collection-link:hover {
+   color: var(--accent-color);
+   border-color: var(--accent-color);
+ }

/* 添加导航样式链接类 */
+ .nav-links-item {
+   display: inline-block;
+   position: relative;
+   padding: 0.5rem 0;
+   font-family: var(--font-sans);
+   font-size: 0.85rem;
+   letter-spacing: 1px;
+   text-transform: uppercase;
+   color: var(--primary-color);
+   transition: color 0.3s ease, transform 0.2s ease;
+ }
+ 
+ .nav-links-item:hover {
+   color: var(--accent-color);
+   transform: translateY(-2px);
+ }

+ .form-control {
+   width: 100%;
+   padding: 0.8rem;
+   border: 1px solid #ddd;
+   border-radius: 4px;
+   font-family: inherit;
+   font-size: 1rem;
+   transition: border-color 0.3s ease;
+ }
+ 
+ .form-control:focus {
+   border-color: var(--accent-color);
+   outline: none;
+ }

/* 媒体页面样式 */
.media-section {
  padding: 2rem 0;
}

.media-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

/* 画廊内部示例图片样式 */
.gallery-interior-image {
  width: 100%;
- height: auto;
+ max-width: 400px; /* 限制最大宽度 */
+ height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
+ display: block; /* 确保图片居中对齐 */
+ margin: 0 auto; /* 水平居中 */
}

.gallery-interior-image:hover {
  transform: scale(1.02);
}

.style-image {
  margin-bottom: 1.5rem;
+ text-align: center; /* 确保容器内的内容居中 */
+ max-width: 400px; /* 限制容器最大宽度 */
+ margin-left: auto; /* 水平居中容器 */
+ margin-right: auto; /* 水平居中容器 */
}

/* 品牌标识部分的样式 */
.brand-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
+ max-width: 100%;
+ overflow: hidden;
}

@media (min-width: 768px) {
  .brand-logo {
    flex-direction: row;
    align-items: flex-start;
  }
}

.logo-image {
+ max-width: 100%;
+ height: auto;
+ width: 300px;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .logo-image {
    margin-right: 2rem;
    margin-bottom: 0;
  }
}

.logo-description {
+ max-width: 100%;
  flex: 1;
}

/* 语言选择器样式 */
.language-selector {
  position: relative;
  display: inline-block;
  margin-left: 20px;
}

.current-lang {
  background: transparent;
  border: none;
  color: var(--primary-color);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  text-transform: uppercase;
}

.current-lang::after {
  content: '▼';
  font-size: 0.6rem;
  margin-left: 5px;
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border-radius: 4px;
  list-style: none;
  padding: 0;
  min-width: 120px;
  display: none;
  z-index: 1100;
}

.language-selector:hover .lang-dropdown {
  display: block;
}

.lang-dropdown li a {
  display: block;
  padding: 8px 15px;
  text-decoration: none;
  color: var(--primary-color);
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.lang-dropdown li a:hover {
  background-color: rgba(139, 200, 168, 0.1);
  color: var(--accent-color);
}

/* 艺术化语言切换器 */
/* 语言切换器 - 移动端右上角 */
.language-switcher {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1200;
  cursor: pointer;
}

/* 桌面版隐藏右上角语言按钮 */
@media (min-width: 769px) {
  .language-switcher {
    display: none;
  }
}

.language-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(26, 26, 26, 0.2);
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.language-icon:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-color);
}

.current-language {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--primary-color);
}

/* 语言选择面板 */
.language-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.98);
  z-index: 2000;
  display: none !important;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  backdrop-filter: blur(10px);
}

.language-panel.active {
  display: flex !important;
  opacity: 1;
  visibility: visible;
}

/* 只有在面板激活时才显示语言选项 */
.language-panel.active .language-option {
  display: flex !important;
}

.language-panel-content {
  max-width: 800px;
  width: 90%;
  position: relative;
}

.language-close {
  position: absolute;
  top: -60px;
  right: 0;
  font-size: 2rem;
  color: var(--primary-color);
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
}

.language-close:hover {
  transform: rotate(90deg);
  color: var(--accent-color);
}

.language-options {
  display: none !important;
}

/* 只有在面板激活时才显示语言选项容器 */
.language-panel.active .language-options {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.language-option {
  display: none !important;
  flex-direction: column;
  padding: 2rem;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.language-option::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(139, 200, 168, 0.1) 0%, rgba(255, 255, 255, 0) 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.language-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-color);
}

.language-option:hover::before {
  opacity: 1;
}

.language-option.active {
  border-color: var(--accent-color);
  background-color: rgba(139, 200, 168, 0.05);
}

.language-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.language-native {
  font-family: var(--font-sans);
  font-size: 1.8rem;
  color: var(--primary-color);
  opacity: 0.8;
}

/* 语言切换动画 */
@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.language-panel.active .language-option {
  animation: fadeInScale 0.5s forwards;
  opacity: 0;
}

.language-panel.active .language-option:nth-child(1) { animation-delay: 0.1s; }
.language-panel.active .language-option:nth-child(2) { animation-delay: 0.2s; }
.language-panel.active .language-option:nth-child(3) { animation-delay: 0.3s; }
.language-panel.active .language-option:nth-child(4) { animation-delay: 0.4s; }
.language-panel.active .language-option:nth-child(5) { animation-delay: 0.5s; }