﻿:root {
  --primary-color: #1e88e5;
  --secondary-color: #26a69a;
  --accent-color: #ffa000;
  --text-color: #333;
  --light-bg: #f5f9fc;
}

body {
  font-family: "Noto Sans TC", sans-serif;
  color: var(--text-color);
  background-color: var(--light-bg);
}

/* 导航栏样式 */
.navbar {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
}

.navbar-brand img {
  height: 45px;
}

.nav-link {
  color: var(--text-color);
  font-weight: 500;
  margin: 0 10px;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--primary-color);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 8px 25px;
  border-radius: 50px;
  font-weight: 500;
}

/* 轮播图区域样式 */
.hero-section {
  background-color: white;
  border-radius: 20px;
  overflow: hidden;
  margin: 30px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.carousel-item img {
  height: 1200px;
  object-fit: cover;
}

/* 首页服务特色卡片样式 */
.feature-card {
  background-color: white;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background-color: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon i {
  font-size: 30px;
  color: var(--primary-color);
}

/* 目的地区域样式 */
.destination-section {
  padding: 50px 0;
}

.section-title {
  margin-bottom: 40px;
  position: relative;
}

.section-title h2 {
  font-weight: 700;
  color: var(--text-color);
}

.show-all {
  color: var(--accent-color);
  font-weight: 500;
  text-decoration: none;
}

.destination-card {
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: transform 0.3s;
}

.destination-card:hover {
  transform: translateY(-10px);
}

.destination-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.destination-content {
  padding: 20px;
}

/* 页脚样式 */
.footer {
  background-color: white;
  padding: 20px 0;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
}

.footer a {
  color: var(--primary-color);
  text-decoration: none;
  margin: 0 5px;
}

.footer a:hover {
  text-decoration: underline;
}

/* 关于我们页面样式 */
.about-section {
  background-color: white;
  border-radius: 20px;
  padding: 40px;
  margin: 30px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.about-section h2 {
  color: var(--primary-color);
  margin-bottom: 30px;
  font-weight: 700;
}

.about-section p {
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.about-image img {
  width: 100%;
  height: auto;
}

.milestone-card {
  background-color: var(--light-bg);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  text-align: center;
  transition: transform 0.3s;
}

.milestone-card:hover {
  transform: translateY(-10px);
}

.milestone-card i {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.milestone-card h3 {
  font-weight: 700;
  margin-bottom: 10px;
}

/* 联系我们页面样式 */
.contact-section {
  background-color: white;
  border-radius: 20px;
  padding: 40px;
  margin: 30px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-section h2 {
  color: var(--primary-color);
  margin-bottom: 30px;
  font-weight: 700;
}

.contact-info {
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 20px;
  color: var(--primary-color);
}

.contact-details h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.contact-details p,
.contact-details a {
  margin: 0;
  color: var(--text-color);
  text-decoration: none;
}

.contact-details a:hover {
  color: var(--primary-color);
}

.form-control {
  border-radius: 10px;
  padding: 10px 15px;
  border: 1px solid #e0e0e0;
  margin-bottom: 20px;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

.map-container {
  border-radius: 15px;
  overflow: hidden;
  height: 300px;
  margin-top: 30px;
}

/* 隐私政策页面样式 */
.privacy-section {
  background-color: white;
  border-radius: 20px;
  padding: 40px;
  margin: 30px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.privacy-section h2 {
  color: var(--primary-color);
  margin-bottom: 30px;
  font-weight: 700;
}

.privacy-section p {
  line-height: 1.8;
  margin-bottom: 20px;
}

.privacy-section ul {
  margin-bottom: 30px;
  padding-left: 20px;
}

.privacy-section ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* 内页轮播图调整 */
.hero-section .carousel-item img {
  height: 300px;
}
