/* ============================================
   欧式古典皇家马车自媒体与复古婚礼租赁网 - 主样式表
   皇家丝绒红+复古黄铜金 古典贵族视觉
   ============================================ */

/* CSS变量定义 */
:root {
  --royal-red: #800020;
  --brass-gold: #C5A059;
  --parchment: #FDFBF7;
  --ivory: #FFFFFF;
  --ink-brown: #2C1A0A;
  --gold-light: #E8D5A3;
  --red-dark: #5C0018;
  --border-ornate: #C5A059;
  --shadow-warm: rgba(44, 26, 10, 0.15);
  --font-serif: 'Noto Serif SC', 'Playfair Display', Georgia, serif;
  --font-body: 'Noto Serif SC', 'Source Han Serif SC', serif;
  --transition-elegant: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* 全局重置 */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink-brown);
  background-color: var(--parchment);
  line-height: 1.8;
  overflow-x: hidden;
}

/* 自定义滚动条 */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--parchment);
}
::-webkit-scrollbar-thumb {
  background: var(--brass-gold);
  border-radius: 5px;
}

/* ============ 古典花纹边框装饰 ============ */
.ornate-border {
  border: 2px solid var(--brass-gold);
  position: relative;
  padding: 2rem;
}
.ornate-border::before,
.ornate-border::after {
  content: '❧';
  position: absolute;
  font-size: 1.5rem;
  color: var(--brass-gold);
}
.ornate-border::before {
  top: -0.8rem;
  left: 50%;
  transform: translateX(-50%);
}
.ornate-border::after {
  bottom: -0.8rem;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
}

/* ============ 导航栏 ============ */
.c27e13c54 {
  background: linear-gradient(135deg, var(--royal-red) 0%, var(--red-dark) 100%);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px var(--shadow-warm);
}

.c35d1664b {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  border-bottom: 1px solid rgba(197, 160, 89, 0.3);
}

.cedb8481d {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cedb8481d img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--brass-gold);
}

.cedb8481d h1 {
  font-family: var(--font-serif);
  color: var(--brass-gold);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.c283168e9 {
  display: flex;
  justify-content: center;
  padding: 0.5rem 2rem;
  flex-wrap: wrap;
}

.c283168e9 a {
  color: var(--gold-light);
  text-decoration: none;
  padding: 0.5rem 1.2rem;
  font-size: 0.95rem;
  transition: var(--transition-elegant);
  position: relative;
  font-family: var(--font-serif);
}

.c283168e9 a:hover {
  color: var(--brass-gold);
  text-shadow: 0 0 10px rgba(197, 160, 89, 0.5);
}

.c283168e9 a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--brass-gold);
  transition: var(--transition-elegant);
  transform: translateX(-50%);
}

.c283168e9 a:hover::after {
  width: 80%;
}

/* 移动端菜单 */
.c5f81e3bb {
  display: none;
  background: none;
  border: 2px solid var(--brass-gold);
  color: var(--brass-gold);
  padding: 0.5rem 1rem;
  font-size: 1.2rem;
  cursor: pointer;
  border-radius: 4px;
}

/* ============ Hero区域 ============ */
.c203b49a3 {
  position: relative;
  height: 90vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cd09033f8 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.c971d667b {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(128, 0, 32, 0.3), rgba(44, 26, 10, 0.6));
}

.c67aeca4f {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--ivory);
  padding: 2rem;
  max-width: 800px;
}

.c67aeca4f h2 {
  font-family: var(--font-serif);
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--gold-light);
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
  animation: fadeInUp 1.2s ease-out;
}

.c67aeca4f p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  animation: fadeInUp 1.2s ease-out 0.3s both;
}

.ceb042006 {
  display: inline-block;
  background: linear-gradient(135deg, var(--brass-gold), #D4AF37);
  color: var(--ink-brown);
  padding: 1rem 2.5rem;
  text-decoration: none;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 4px;
  border: 2px solid var(--brass-gold);
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.4), inset 0 1px 0 rgba(255,255,255,0.3);
  transition: var(--transition-elegant);
  animation: fadeInUp 1.2s ease-out 0.6s both;
}

.ceb042006:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(197, 160, 89, 0.6), inset 0 1px 0 rgba(255,255,255,0.3);
  background: linear-gradient(135deg, #D4AF37, var(--brass-gold));
}

/* ============ 通用区块样式 ============ */
.c1cadf1ca {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.c15788065 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--royal-red);
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
}

.c15788065::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--brass-gold), transparent);
  margin: 1rem auto 0;
}

.ca0876b08 {
  text-align: center;
  color: var(--ink-brown);
  opacity: 0.8;
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

/* ============ 车型展示画廊 ============ */
.cc1ba924d {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding: 2rem 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.cc1ba924d::-webkit-scrollbar {
  height: 6px;
}

.cf66d0f10 {
  min-width: 350px;
  scroll-snap-align: start;
  background: var(--ivory);
  border: 1px solid var(--gold-light);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-elegant);
  box-shadow: 0 4px 20px var(--shadow-warm);
}

.cf66d0f10:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(197, 160, 89, 0.3);
  border-color: var(--brass-gold);
}

.cf66d0f10 img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition-elegant);
}

.cf66d0f10:hover img {
  filter: brightness(1.05);
}

.ca60e1dff {
  padding: 1.5rem;
}

.ca60e1dff h3 {
  font-family: var(--font-serif);
  color: var(--royal-red);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.ca60e1dff p {
  color: var(--ink-brown);
  opacity: 0.85;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.c33112c78 {
  display: inline-block;
  border: 2px solid var(--brass-gold);
  color: var(--brass-gold);
  padding: 0.5rem 1.5rem;
  text-decoration: none;
  font-family: var(--font-serif);
  font-size: 0.9rem;
  border-radius: 4px;
  transition: var(--transition-elegant);
}

.c33112c78:hover {
  background: var(--brass-gold);
  color: var(--ivory);
}

/* ============ 瀑布流照片墙 ============ */
.c2ca027ff {
  columns: 3;
  column-gap: 1.5rem;
}

.ced1a1a0f {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: var(--transition-elegant);
}

.ced1a1a0f:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 30px var(--shadow-warm);
}

.ced1a1a0f img {
  width: 100%;
  display: block;
  transition: var(--transition-elegant);
}

.ced1a1a0f:hover img {
  filter: brightness(1.1);
}

.ced1a1a0f .c93edeb16 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(128, 0, 32, 0.8));
  color: var(--gold-light);
  opacity: 0;
  transition: var(--transition-elegant);
}

.ced1a1a0f:hover .c93edeb16 {
  opacity: 1;
}

/* ============ 流程图解 ============ */
.cd9d01cee {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 2rem 0;
}

.c39e0bdbe {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--ivory);
  border: 1px solid var(--gold-light);
  border-radius: 8px;
  position: relative;
  transition: var(--transition-elegant);
}

.c39e0bdbe:hover {
  border-color: var(--brass-gold);
  box-shadow: 0 8px 25px var(--shadow-warm);
}

.c39e0bdbe .c223e5e95 {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--royal-red), var(--red-dark));
  color: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 1rem;
  border: 2px solid var(--brass-gold);
}

.c39e0bdbe h4 {
  font-family: var(--font-serif);
  color: var(--royal-red);
  margin-bottom: 0.5rem;
}

.c39e0bdbe p {
  font-size: 0.9rem;
  opacity: 0.85;
}

.c39e0bdbe::after {
  content: '→';
  position: absolute;
  right: -1.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brass-gold);
  font-size: 1.5rem;
}

.c39e0bdbe:last-child::after {
  display: none;
}

/* ============ 文化专栏 ============ */
.c4756adcc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.c4cf99381 {
  display: flex;
  gap: 1.5rem;
  background: var(--ivory);
  border: 1px solid var(--gold-light);
  border-radius: 8px;
  padding: 1.5rem;
  transition: var(--transition-elegant);
}

.c4cf99381:hover {
  border-color: var(--brass-gold);
  box-shadow: 0 6px 20px var(--shadow-warm);
}

.c4cf99381 img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.c55d811ea h3 {
  font-family: var(--font-serif);
  color: var(--royal-red);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.c55d811ea p {
  font-size: 0.9rem;
  opacity: 0.85;
  line-height: 1.6;
}

.c55d811ea .cde6cd83d {
  font-size: 0.8rem;
  color: var(--brass-gold);
  margin-top: 0.5rem;
}

/* ============ 仪仗团队展示 ============ */
.ccc4f4df8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.c75774fe0 {
  background: var(--ivory);
  border: 1px solid var(--gold-light);
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  transition: var(--transition-elegant);
}

.c75774fe0:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--shadow-warm);
  border-color: var(--brass-gold);
}

.c75774fe0 img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.c43d28fac {
  padding: 1.5rem;
}

.c43d28fac h3 {
  font-family: var(--font-serif);
  color: var(--royal-red);
  margin-bottom: 0.5rem;
}

.c43d28fac p {
  font-size: 0.9rem;
  opacity: 0.85;
}

/* ============ 页脚 ============ */
.c7e2c25bf {
  background: linear-gradient(135deg, var(--ink-brown), #1a0f05);
  color: var(--gold-light);
  padding: 4rem 2rem 2rem;
}

.c901d01b6 {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.caad876c4 h4 {
  font-family: var(--font-serif);
  color: var(--brass-gold);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.caad876c4 p,
.caad876c4 a {
  color: var(--gold-light);
  opacity: 0.8;
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 2;
  display: block;
  transition: var(--transition-elegant);
}

.caad876c4 a:hover {
  opacity: 1;
  color: var(--brass-gold);
  padding-left: 5px;
}

.c6a464533 {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(197, 160, 89, 0.3);
  font-size: 0.85rem;
  opacity: 0.7;
}

/* ============ 面包屑 ============ */
.ca0e367ff {
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.9rem;
}

.ca0e367ff a {
  color: var(--brass-gold);
  text-decoration: none;
}

.ca0e367ff span {
  color: var(--ink-brown);
  opacity: 0.6;
  margin: 0 0.5rem;
}

/* ============ 内页通用 ============ */
.c5dbfc7dd {
  background: linear-gradient(135deg, var(--royal-red), var(--red-dark));
  padding: 4rem 2rem;
  text-align: center;
  color: var(--gold-light);
}

.c5dbfc7dd h1 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.c5dbfc7dd p {
  opacity: 0.9;
  font-size: 1.1rem;
}

.ce80e7920 {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.ce80e7920 h2 {
  font-family: var(--font-serif);
  color: var(--royal-red);
  font-size: 1.8rem;
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold-light);
}

.ce80e7920 h3 {
  font-family: var(--font-serif);
  color: var(--ink-brown);
  font-size: 1.4rem;
  margin: 1.5rem 0 0.8rem;
}

.ce80e7920 p {
  margin-bottom: 1.2rem;
  text-indent: 2em;
}

.ce80e7920 img {
  width: 100%;
  border-radius: 8px;
  margin: 1.5rem 0;
  border: 2px solid var(--gold-light);
}

/* FAQ区块 */
.c84ae27bd {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--ivory);
  border: 1px solid var(--gold-light);
  border-radius: 8px;
}

.cf54ad3bb {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gold-light);
}

.cf54ad3bb:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.cf54ad3bb h4 {
  font-family: var(--font-serif);
  color: var(--royal-red);
  margin-bottom: 0.5rem;
}

.cf54ad3bb p {
  text-indent: 0;
  opacity: 0.85;
}

/* ============ 搜索页 ============ */
.c552ce15a {
  max-width: 700px;
  margin: 3rem auto;
  padding: 0 2rem;
}

.cbac29a91 {
  display: flex;
  gap: 0;
  border: 2px solid var(--brass-gold);
  border-radius: 8px;
  overflow: hidden;
}

.cbac29a91 input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: none;
  font-size: 1rem;
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--ink-brown);
}

.cbac29a91 input:focus {
  outline: none;
}

.cbac29a91 button {
  background: var(--brass-gold);
  color: var(--ivory);
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  cursor: pointer;
  font-family: var(--font-serif);
  transition: var(--transition-elegant);
}

.cbac29a91 button:hover {
  background: var(--royal-red);
}

.c88036367 {
  margin-top: 2rem;
}

.search-result-item {
  padding: 1.5rem;
  border-bottom: 1px solid var(--gold-light);
}

.search-result-item h3 a {
  color: var(--royal-red);
  text-decoration: none;
  font-family: var(--font-serif);
}

.search-result-item h3 a:hover {
  color: var(--brass-gold);
}

.search-result-item p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  opacity: 0.85;
  text-indent: 0;
}

/* ============ 404页面 ============ */
.c95245c4f {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.c95245c4f h1 {
  font-family: var(--font-serif);
  font-size: 8rem;
  color: var(--brass-gold);
  line-height: 1;
}

.c95245c4f h2 {
  font-family: var(--font-serif);
  color: var(--royal-red);
  font-size: 2rem;
  margin: 1rem 0;
}

.c95245c4f p {
  margin-bottom: 2rem;
  opacity: 0.85;
}

/* ============ 动画 ============ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes quillWrite {
  0% { width: 0; }
  100% { width: 100%; }
}

.cb42edf56 {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.cb42edf56.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 古典画框浮起效果 */
.ca4e5e490 {
  transition: var(--transition-elegant);
  border: 3px solid transparent;
}

.ca4e5e490:hover {
  border-color: var(--brass-gold);
  box-shadow: 0 0 20px rgba(197, 160, 89, 0.4), inset 0 0 20px rgba(197, 160, 89, 0.1);
}

/* ============ 响应式设计 ============ */
@media (max-width: 1024px) {
  .cd9d01cee {
    grid-template-columns: repeat(2, 1fr);
  }
  .c39e0bdbe::after {
    display: none;
  }
  .c2ca027ff {
    columns: 2;
  }
}

@media (max-width: 768px) {
  .c5f81e3bb {
    display: block;
  }
  
  .c283168e9 {
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: var(--red-dark);
  }
  
  .c283168e9.active {
    display: flex;
  }
  
  .c67aeca4f h2 {
    font-size: 2rem;
  }
  
  .c203b49a3 {
    height: 70vh;
    min-height: 450px;
  }
  
  .c15788065 {
    font-size: 1.8rem;
  }
  
  .c1cadf1ca {
    padding: 3rem 1.5rem;
  }
  
  .cf66d0f10 {
    min-width: 280px;
  }
  
  .cd9d01cee {
    grid-template-columns: 1fr;
  }
  
  .c2ca027ff {
    columns: 1;
  }
  
  .c4cf99381 {
    flex-direction: column;
  }
  
  .c4cf99381 img {
    width: 100%;
    height: 200px;
  }
  
  .c5dbfc7dd h1 {
    font-size: 1.8rem;
  }
  
  .c901d01b6 {
    grid-template-columns: 1fr;
  }
  
  .c35d1664b {
    justify-content: space-between;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  .c67aeca4f h2 {
    font-size: 1.6rem;
  }
  
  .ceb042006 {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
  
  .cedb8481d h1 {
    font-size: 1.2rem;
  }
}

/* ============ 辅助类 ============ */
.text-center { text-align: center; }
.text-gold { color: var(--brass-gold); }
.text-red { color: var(--royal-red); }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* 时间轴组件 */
.cb7312f02 {
  overflow-x: auto;
  padding: 2rem 0;
}

.cb7312f02 img {
  min-width: 900px;
  width: 100%;
  border-radius: 8px;
  border: 2px solid var(--gold-light);
}

/* 相关链接 */
.cc0f2685d {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--ivory);
  border: 1px solid var(--gold-light);
  border-radius: 8px;
}

.cc0f2685d h4 {
  font-family: var(--font-serif);
  color: var(--royal-red);
  margin-bottom: 1rem;
}

.cc0f2685d a {
  display: inline-block;
  margin: 0.3rem 0.5rem;
  padding: 0.3rem 1rem;
  border: 1px solid var(--brass-gold);
  border-radius: 20px;
  color: var(--brass-gold);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition-elegant);
}

.cc0f2685d a:hover {
  background: var(--brass-gold);
  color: var(--ivory);
}
