/* 技师列表页面样式 */

/* 主内容区域 */
.main-content {
  min-height: calc(100vh - 300px);
  background: #FFFFFF;
}

/* 页面标题 */
.page-header {
  text-align: center;
  padding: 80px 20px 40px;
  background: linear-gradient(135deg, #D8B976 0%, #E8C990 100%);
}

.page-header h1 {
  font-family: Urbanist;
  font-size: 48px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.page-header p {
  font-family: Urbanist;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
}

/* 技师列表区域 */
.technicians-section {
  padding: 60px 20px 100px;
  max-width: 1440px;
  margin: 0 auto;
}

/* 技师网格布局 */
.technicians-grid {
  display: flex;
  gap: 25px;
  padding: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

/* 加载提示 */
.loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  font-family: Urbanist;
  font-size: 18px;
  color: #565759;
}

/* 技师卡片 */
.technician-card {
  min-width: 310px;
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.technician-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* 技师图片 */
.technician-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
  object-position: top;
}

/* 技师信息 */
.technician-info {
  padding: 24px;
  text-align: center;
}

.technician-name {
  font-family: Urbanist;
  font-size: 28px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.technician-height {
  font-family: Urbanist;
  font-size: 16px;
  color: #666666;
  margin-bottom: 8px;
}

.technician-price {
  font-family: Rubik;
  font-size: 24px;
  font-weight: 500;
  color: #D8B976;
}

/* 响应式设计 */
@media (max-width: 1200px) {
  .technicians-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .page-header {
    padding: 60px 20px 30px;
  }

  .page-header h1 {
    font-size: 36px;
  }

  .page-header p {
    font-size: 16px;
  }

  .technicians-section {
    padding: 40px 15px 60px;
  }

  .technicians-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 10px;
  }

  .technician-img {
    height: 300px;
  }

  .technician-info {
    padding: 20px;
  }

  .technician-name {
    font-size: 24px;
  }

  .technician-price {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .technicians-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .technician-img {
    height: 350px;
  }
}
