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

/* 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);
}

/* ============ 导航栏 ============ */
.c4dfa7e33 {
  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);
}

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

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

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

.c5bdd813d 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);
}

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

.c0493f597 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);
}

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

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

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

/* 移动端菜单 */
.c5da883c5 {
  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区域 ============ */
.c25972bb8 {
  position: relative;
  height: 90vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.cbe21fc90 {
  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));
}

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

.cd0c092aa 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;
}

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

.cc0d37dae {
  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;
}

.cc0d37dae: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));
}

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

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

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

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

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

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

.c9936268a {
  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);
}

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

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

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

.cc2a822e1 {
  padding: 1.5rem;
}

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

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

.ce44c842c {
  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);
}

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

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

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

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

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

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

.caa14eefb .c29a59532 {
  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);
}

.caa14eefb:hover .c29a59532 {
  opacity: 1;
}

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

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

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

.c4c352000 .c2cc82d13 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cbcebc17f {
  padding: 1.5rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cb8e7c70f 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);
}

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

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

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

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

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

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

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

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

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

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

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

.c679caa99 input:focus {
  outline: none;
}

.c679caa99 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);
}

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

.c8f19bfdf {
  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页面 ============ */
.c647783ab {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

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

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

.c647783ab 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%; }
}

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

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

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

.c8429fbe0: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) {
  .c85ef6dfd {
    grid-template-columns: repeat(2, 1fr);
  }
  .c4c352000::after {
    display: none;
  }
  .c335d0511 {
    columns: 2;
  }
}

@media (max-width: 768px) {
  .c5da883c5 {
    display: block;
  }
  
  .c0493f597 {
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: var(--red-dark);
  }
  
  .c0493f597.active {
    display: flex;
  }
  
  .cd0c092aa h2 {
    font-size: 2rem;
  }
  
  .c25972bb8 {
    height: 70vh;
    min-height: 450px;
  }
  
  .cc75016f9 {
    font-size: 1.8rem;
  }
  
  .c638fe7a5 {
    padding: 3rem 1.5rem;
  }
  
  .c9936268a {
    min-width: 280px;
  }
  
  .c85ef6dfd {
    grid-template-columns: 1fr;
  }
  
  .c335d0511 {
    columns: 1;
  }
  
  .c24251803 {
    flex-direction: column;
  }
  
  .c24251803 img {
    width: 100%;
    height: 200px;
  }
  
  .cf76a15fd h1 {
    font-size: 1.8rem;
  }
  
  .c7a80512b {
    grid-template-columns: 1fr;
  }
  
  .cfb24daeb {
    justify-content: space-between;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  .cd0c092aa h2 {
    font-size: 1.6rem;
  }
  
  .cc0d37dae {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
  
  .c5bdd813d 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; }

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

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

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

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

.c97294248 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);
}

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