/* 全季酒店网站主样式文件 */

/* CSS变量定义 - 全季酒店品牌色彩 */
:root {
  /* 主色调 - 全季蓝 */
  --primary-color: #2c3e50;
  --primary-light: #34495e;
  --primary-dark: #1a252f;
  
  /* 辅助色调 */
  --secondary-color: #3498db;
  --accent-color: #e74c3c;
  --success-color: #27ae60;
  --warning-color: #f39c12;
  
  /* 中性色 */
  --text-color: #2c3e50;
  --text-light: #7f8c8d;
  --text-lighter: #95a5a6;
  --border-color: #ecf0f1;
  --background-light: #f8f9fa;
  --background-white: #ffffff;
  
  /* 字体 */
  --font-family: 'PingFang SC', 'Microsoft YaHei', Arial, sans-serif;
  --font-size-base: 16px;
  --font-size-large: 18px;
  --font-size-small: 14px;
  --line-height-base: 1.6;
  
  /* 间距 */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --spacing-xxl: 64px;
  
  /* 圆角 */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  
  /* 阴影 */
  --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0 8px 32px rgba(0, 0, 0, 0.2);
  
  /* 断点 */
  --breakpoint-sm: 768px;
  --breakpoint-md: 1024px;
  --breakpoint-lg: 1200px;
}

/* 基础重置和全局样式 */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: var(--font-size-base);
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  line-height: var(--line-height-base);
  color: var(--text-color);
  background-color: var(--background-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 无障碍访问 - 跳转链接 */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary-color);
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: var(--border-radius-sm);
  z-index: 1000;
}

.skip-link:focus {
  top: 6px;
}

/* 通用容器 */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* 章节通用样式 */
section {
  padding: var(--spacing-xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* 按钮样式 */
.cta-button {
  display: inline-block;
  padding: 12px 32px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--border-radius-md);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  margin: var(--spacing-xs);
}

.cta-button.primary {
  background-color: var(--secondary-color);
  color: white;
}

.cta-button.primary:hover {
  background-color: #2980b9;
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.cta-button.secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.cta-button.secondary:hover {
  background-color: var(--secondary-color);
  color: white;
}

.contact-button {
  display: inline-block;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: var(--border-radius-md);
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact-button.primary {
  background-color: var(--secondary-color);
  color: white;
}

.contact-button.secondary {
  background-color: var(--primary-light);
  color: white;
}

/* 页面头部 */
.site-header {
  background-color: var(--background-white);
  box-shadow: var(--shadow-light);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md) 0;
  flex-wrap: wrap;
}

.brand {
  text-align: left;
}

.hotel-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 4px;
}

.brand-name {
  color: var(--primary-color);
}

.branch-name {
  color: var(--text-light);
  font-size: 0.9em;
}

.brand-tagline {
  color: var(--text-lighter);
  font-size: 0.875rem;
}

/* 导航菜单 */
.main-nav .nav-list {
  display: flex;
  list-style: none;
  gap: var(--spacing-lg);
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 8px 0;
}

.nav-link:hover {
  color: var(--secondary-color);
}

.contact-quick {
  display: flex;
  align-items: center;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  padding: 8px 16px;
  border: 2px solid var(--secondary-color);
  border-radius: var(--border-radius-md);
  transition: all 0.3s ease;
}

.phone-link:hover {
  background-color: var(--secondary-color);
  color: white;
}

/* Hero 区域 */
.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: var(--spacing-xxl) 0;
}

.hero-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-xl);
  opacity: 0.9;
}

.hero-cta {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-heavy);
}

/* 酒店概览区域 */
.overview-section {
  background-color: var(--background-light);
}

.overview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: start;
}

.info-table {
  background: var(--background-white);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
}

.hotel-info-table {
  width: 100%;
  border-collapse: collapse;
}

.hotel-info-table caption {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  color: var(--primary-color);
  text-align: left;
  caption-side: top;
}

.hotel-info-table th,
.hotel-info-table td {
  padding: var(--spacing-sm);
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.hotel-info-table th {
  background-color: var(--background-light);
  font-weight: 600;
  color: var(--primary-color);
  width: 120px;
}

.hotel-info-table td {
  color: var(--text-color);
}

.hotel-info-table tr:last-child th,
.hotel-info-table tr:last-child td {
  border-bottom: none;
}

.hotel-introduction {
  background: var(--background-white);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
}

.hotel-introduction h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
  font-size: 1.5rem;
}

.hotel-introduction p {
  margin-bottom: var(--spacing-md);
  line-height: 1.8;
}

/* 服务设施区域 */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.service-card {
  background: var(--background-white);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
}

.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

.service-description {
  color: var(--text-light);
  line-height: 1.6;
}

/* 房型介绍区域 */
.rooms-section {
  background-color: var(--background-light);
}

.room-comparison {
  background: var(--background-white);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
  margin-bottom: var(--spacing-xl);
}

.room-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--border-radius-md);
}

.room-table caption {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  color: var(--primary-color);
  text-align: left;
  caption-side: top;
}

.room-table th,
.room-table td {
  padding: var(--spacing-sm);
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.room-table th {
  background-color: var(--primary-color);
  color: white;
  font-weight: 600;
}

.room-table td {
  background-color: var(--background-white);
}

.room-table tr:nth-child(even) td {
  background-color: var(--background-light);
}

.room-table tr:last-child td {
  border-bottom: none;
}

.room-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: var(--spacing-lg);
}

.room-card {
  background: var(--background-white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.room-card h3 {
  padding: var(--spacing-md);
  background-color: var(--primary-color);
  color: white;
  font-size: 1.25rem;
  text-align: center;
}

.room-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.room-card p {
  padding: var(--spacing-md);
  line-height: 1.6;
}

/* 客户评价区域 */
.reviews-section {
  background-color: var(--background-white);
}

.rating-summary {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
  background: var(--background-light);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
}

.overall-rating {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.rating-number {
  font-size: 4rem;
  font-weight: 700;
  color: var(--secondary-color);
  line-height: 1;
  margin-bottom: var(--spacing-sm);
}

.stars {
  color: #f39c12;
  font-size: 1.25rem;
  margin-bottom: var(--spacing-xs);
}

.rating-count {
  color: var(--text-light);
  font-size: 0.875rem;
}

.rating-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--spacing-sm);
}

.rating-item {
  display: grid;
  grid-template-columns: 80px 1fr 40px;
  align-items: center;
  gap: var(--spacing-sm);
}

.rating-item .label {
  font-weight: 500;
  color: var(--text-color);
}

.rating-item .bar {
  height: 8px;
  background-color: #ecf0f1;
  border-radius: 4px;
  overflow: hidden;
}

.rating-item .fill {
  height: 100%;
  background-color: var(--secondary-color);
  transition: width 0.3s ease;
}

.rating-item .value {
  font-weight: 600;
  color: var(--text-color);
  text-align: right;
}

.reviews-list {
  display: grid;
  gap: var(--spacing-lg);
}

.review-card {
  background: var(--background-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-light);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-sm);
  border-bottom: 1px solid var(--border-color);
}

.reviewer-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.reviewer-name {
  font-weight: 600;
  color: var(--primary-color);
}

.review-date {
  font-size: 0.875rem;
  color: var(--text-light);
}

.review-rating {
  color: #f39c12;
  font-size: 1.125rem;
}

.review-content p {
  margin-bottom: var(--spacing-sm);
  line-height: 1.7;
}

.review-content strong {
  color: var(--primary-color);
}

.review-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xs);
  margin-top: var(--spacing-sm);
}

.tag {
  background-color: var(--background-light);
  color: var(--text-light);
  padding: 4px 8px;
  border-radius: var(--border-radius-sm);
  font-size: 0.75rem;
  border: 1px solid var(--border-color);
}

/* 位置交通区域 */
.location-section {
  background-color: var(--background-light);
}

.location-content {
  display: grid;
  gap: var(--spacing-xl);
}

.address-info,
.transportation,
.surroundings {
  background: var(--background-white);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
}

.address-info h3,
.transportation h3,
.surroundings h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
  font-size: 1.5rem;
}

.hotel-address {
  font-style: normal;
  line-height: 1.8;
}

.hotel-address strong {
  color: var(--primary-color);
}

.hotel-address a {
  color: var(--secondary-color);
  text-decoration: none;
}

.hotel-address a:hover {
  text-decoration: underline;
}

.transport-method {
  margin-bottom: var(--spacing-lg);
}

.transport-method:last-child {
  margin-bottom: 0;
}

.transport-method h4 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
  font-size: 1.125rem;
}

.transport-method ul {
  list-style: none;
  padding: 0;
}

.transport-method li {
  margin-bottom: var(--spacing-xs);
  padding-left: var(--spacing-md);
  position: relative;
  line-height: 1.6;
}

.transport-method li:before {
  content: "•";
  color: var(--secondary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.surrounding-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
}

.category h4 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
  font-size: 1.125rem;
}

.category ul {
  list-style: none;
  padding: 0;
}

.category li {
  margin-bottom: var(--spacing-xs);
  padding-left: var(--spacing-md);
  position: relative;
  line-height: 1.6;
}

.category li:before {
  content: "✓";
  color: var(--success-color);
  position: absolute;
  left: 0;
}

/* 联系预订区域 */
.contact-section {
  background-color: var(--background-white);
}

.booking-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.booking-method {
  background: var(--background-light);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.booking-method:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.booking-method h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
  font-size: 1.25rem;
}

.booking-method p {
  color: var(--text-light);
  margin-bottom: var(--spacing-md);
  line-height: 1.6;
}

.platform-links {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

.platform-link {
  display: inline-block;
  padding: 8px 16px;
  background-color: var(--primary-light);
  color: white;
  text-decoration: none;
  border-radius: var(--border-radius-sm);
  transition: background-color 0.3s ease;
}

.platform-link:hover {
  background-color: var(--primary-color);
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
}

.info-item {
  background: var(--background-light);
  padding: var(--spacing-md);
  border-radius: var(--border-radius-lg);
}

.info-item h4 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
  font-size: 1.125rem;
}

.info-item p {
  color: var(--text-light);
  line-height: 1.6;
}

/* 页面底部 */
.site-footer {
  background-color: var(--primary-color);
  color: white;
  padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-lg);
}

.footer-section h3 {
  margin-bottom: var(--spacing-md);
  font-size: 1.25rem;
  color: white;
}

.footer-section address {
  font-style: normal;
  line-height: 1.8;
}

.footer-section address a {
  color: white;
  text-decoration: none;
}

.footer-section address a:hover {
  text-decoration: underline;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: var(--spacing-xs);
}

.footer-links a {
  color: white;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-section p {
  line-height: 1.8;
  opacity: 0.9;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--spacing-md);
  text-align: center;
}

.footer-bottom p {
  opacity: 0.8;
  margin-bottom: var(--spacing-xs);
}

.footer-bottom a {
  color: white;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* 响应式设计 - 移动端优先 */
@media screen and (max-width: 768px) {
  .container {
    padding: 0 var(--spacing-sm);
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1.125rem;
  }
  
  /* 头部响应式 */
  .header-content {
    flex-direction: column;
    gap: var(--spacing-md);
    text-align: center;
  }
  
  .main-nav .nav-list {
    flex-direction: column;
    gap: var(--spacing-sm);
    text-align: center;
  }
  
  .contact-quick {
    width: 100%;
    justify-content: center;
  }
  
  /* Hero 区域响应式 */
  .hero-section .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.25rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  /* 概览区域响应式 */
  .overview-content {
    grid-template-columns: 1fr;
  }
  
  /* 服务网格响应式 */
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  /* 房型表格响应式 */
  .room-table {
    font-size: 0.875rem;
  }
  
  .room-table th,
  .room-table td {
    padding: 8px 4px;
  }
  
  .room-details {
    grid-template-columns: 1fr;
  }
  
  /* 评价区域响应式 */
  .rating-summary {
    grid-template-columns: 1fr;
  }
  
  .overall-rating {
    margin-bottom: var(--spacing-lg);
  }
  
  /* 位置区域响应式 */
  .surrounding-categories {
    grid-template-columns: 1fr;
  }
  
  /* 联系区域响应式 */
  .booking-methods {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    grid-template-columns: 1fr;
  }
  
  /* 底部响应式 */
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 var(--spacing-md);
  }
  
  .hero-title {
    font-size: 2.75rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .surrounding-categories {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .booking-methods {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-info {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 打印样式 */
@media print {
  .site-header,
  .hero-section,
  .contact-section,
  .site-footer {
    display: none;
  }
  
  .container {
    max-width: none;
    padding: 0;
  }
  
  section {
    padding: var(--spacing-md) 0;
    page-break-inside: avoid;
  }
  
  .service-card,
  .room-card,
  .review-card,
  .booking-method,
  .info-item {
    box-shadow: none;
    border: 1px solid #ccc;
  }
}

/* 辅助功能增强 */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* 高对比度模式支持 */
@media (prefers-contrast: high) {
  :root {
    --border-color: #000000;
    --text-light: #000000;
  }
  
  .cta-button,
  .contact-button {
    border: 2px solid currentColor;
  }
}

/* 深色模式支持（预留） */
@media (prefers-color-scheme: dark) {
  /* 深色模式样式可以根据需要添加 */
}

/* 性能优化 */
img {
  max-width: 100%;
  height: auto;
}

.lazy-load {
  opacity: 0;
  transition: opacity 0.3s;
}

.lazy-load.loaded {
  opacity: 1;
}

/* 专注状态增强 */
a:focus,
button:focus,
input:focus {
  outline: 2px solid var(--secondary-color);
  outline-offset: 2px;
}

/* 表格增强 */
table {
  width: 100%;
  border-collapse: collapse;
}

table caption {
  caption-side: top;
  text-align: left;
  margin-bottom: var(--spacing-sm);
  font-weight: 600;
}

/* 代码增强 */
code {
  background-color: var(--background-light);
  padding: 2px 4px;
  border-radius: var(--border-radius-sm);
  font-family: 'Courier New', monospace;
  font-size: 0.875em;
}

/* 引用增强 */
blockquote {
  border-left: 4px solid var(--secondary-color);
  padding-left: var(--spacing-md);
  margin: var(--spacing-md) 0;
  color: var(--text-light);
  font-style: italic;
}

/* 分隔线增强 */
hr {
  border: none;
  height: 1px;
  background-color: var(--border-color);
  margin: var(--spacing-xl) 0;
}

/* 荣誉展示样式 */
.hotel-honors {
  margin-top: var(--spacing-lg);
  padding: var(--spacing-md);
  background-color: var(--background-light);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
}

.hotel-honors h4 {
  color: var(--primary-color);
  font-size: var(--font-size-large);
  margin-bottom: var(--spacing-md);
  text-align: center;
  font-weight: 600;
}

.honors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.honor-item {
  display: flex;
  align-items: center;
  padding: var(--spacing-sm);
  background-color: var(--background-white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-light);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.honor-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.honor-icon {
  font-size: 2rem;
  margin-right: var(--spacing-sm);
  flex-shrink: 0;
}

.honor-text strong {
  color: var(--primary-color);
  font-size: var(--font-size-base);
  display: block;
  margin-bottom: 2px;
}

.honor-text p {
  color: var(--text-light);
  font-size: var(--font-size-small);
  margin: 0;
  font-weight: 500;
}

/* 设施实景展示样式 */
.facilities-gallery {
  margin-top: var(--spacing-xl);
  padding: var(--spacing-lg);
  background-color: var(--background-light);
  border-radius: var(--border-radius-lg);
}

.gallery-title {
  text-align: center;
  color: var(--primary-color);
  font-size: var(--font-size-large);
  margin-bottom: var(--spacing-lg);
  font-weight: 600;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.gallery-item {
  background-color: var(--background-white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

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

.gallery-caption {
  padding: var(--spacing-sm);
  text-align: center;
  font-weight: 500;
  color: var(--primary-color);
  margin: 0;
  background-color: var(--background-white);
}

/* 响应式设计增强 */
@media (max-width: 768px) {
  .honors-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }
  
  .honor-item {
    padding: var(--spacing-sm);
  }
  
  .honor-icon {
    font-size: 1.5rem;
    margin-right: var(--spacing-xs);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-sm);
  }
  
  .gallery-item img {
    height: 150px;
  }
  
  .hotel-honors {
    padding: var(--spacing-sm);
  }
  
  .facilities-gallery {
    padding: var(--spacing-md);
  }
}