
/* 项目详情页专用样式 */
.fullscreen-bg {
  background-color: rgb(11, 30, 45);
  color: white;
  padding: 20px 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 10px;
  margin-bottom: 10px;
}

.project-meta {
  flex: 1;
}

.label,
.project-date,
.project-location,
.project-category,
.project-photographer {
  display: inline-block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .15em;
}

.project-location {
  margin-left: 2.5rem;
}

.project-credit {
  text-align: right;
  flex: 1;
}

.project-main {
  max-width: 1620px;
  margin: 0 auto;
  padding: 0 20px;
  margin-bottom: 80px;
}

.project-title {
  font-size: 3rem;
  color: #333;
  padding: 20px 0;
  text-align: center;
}

.project-description {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #666;
  max-width: 1200px;
  margin: 0 auto 20px;
  text-align: center;
}

/* 轮播样式 */
.carousel-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-item {
  min-width: 100%;
}

.carousel-image {
  width: 100%;
  height: auto;
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.7);
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-btn:hover {
  background-color: white;
  transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
  left: 20px;
}

.carousel-next {
  right: 20px;
}

/* 标题 */
.projects-header {
  text-align: center;
  margin-bottom: 2rem;
  padding: 0 1rem;
}

.projects-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.projects-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .project-credit {
    text-align: left;
    margin-top: 30px;
  }
  
  .project-title {
    font-size: 2rem;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .hero-section {
    min-height: auto;
    aspect-ratio: 16/9;
  }
  
  .hero-image {
    height: 100%;
    object-fit: cover;
  }
  
  .projects-grid {
    gap: 15px;
  }
  
  .project-image {
    height: 200px;
    object-fit: cover;
  }

  .project-info {
    padding: 1rem;
  }

  .project-title {
    font-size: 1.2rem;
  }
}