/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #ff8a3c;
  --secondary-color: #ffa94d;
  --dark-color: #2c3e50;
  --text-color: #333;
  --light-gray: #f8f9fa;
  --border-color: #e0e0e0;
  --success-color: #4caf50;
  --blue-color: #3498db;
}

body {
  font-family: "Microsoft JhengHei", "PingFang TC", "Helvetica Neue", Arial,
    sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Buttons */
.btn-primary {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #ff6f1a;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 138, 60, 0.3);
}

.btn-large {
  padding: 15px 40px;
  font-size: 16px;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 10px 25px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline:hover {
  background: var(--primary-color);
  color: white;
}

/* Header */
.header {
  background: white;
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-wrapper .nav {
  margin-left: auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
}

.logo i {
  font-size: 28px;
}

.nav {
  display: flex;
  gap: 35px;
}

.nav-link {
  color: var(--text-color);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.language {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  font-size: 14px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #fff5f0 0%, #ffffff 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-subtitle {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

.hero-title {
  font-size: 56px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.hero-title .highlight {
  color: var(--primary-color);
}

.hero-description {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.hero-images {
  position: relative;
  height: 500px;
}

.hero-image {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image.img1 {
  width: 200px;
  height: 280px;
  top: 0;
  left: 0;
  z-index: 3;
}

.hero-image.img2 {
  width: 240px;
  height: 320px;
  top: 50px;
  left: 150px;
  z-index: 2;
}

.hero-image.img3 {
  width: 200px;
  height: 280px;
  top: 100px;
  right: 0;
  z-index: 1;
}

.decoration-icon {
  position: absolute;
  right: -20px;
  top: -20px;
  font-size: 60px;
  color: var(--primary-color);
  opacity: 0.2;
}

/* Partners Section */
.partners {
  background: white;
  padding: 40px 0;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: center;
}

.partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.partner-item:hover {
  opacity: 1;
}

/* Adventure Section */
.adventure {
  padding: 80px 0;
  background: white;
}

.adventure-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.adventure-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  height: 500px;
}

.adventure-img-main {
  grid-row: 1 / 3;
  border-radius: 20px;
  overflow: hidden;
}

.adventure-img-small {
  border-radius: 20px;
  overflow: hidden;
}

.adventure-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-title {
  font-size: 38px;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 30px;
  color: var(--dark-color);
}

.adventure-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  gap: 20px;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffd4a3 0%, #ffecd1 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 24px;
  color: var(--primary-color);
}

.feature-text h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--dark-color);
}

.feature-text p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

.adventure-stats {
  display: flex;
  align-items: center;
  gap: 30px;
}

.stats-group {
  display: flex;
  gap: 20px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #666;
}

.stat-item i {
  color: var(--primary-color);
}

/* Destinations Section */
.destinations {
  padding: 80px 0;
  background: var(--light-gray);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.section-header-center {
  text-align: center;
  margin-bottom: 50px;
}

.section-header-center p {
  color: #666;
  font-size: 16px;
  margin-top: 10px;
}

.navigation-arrows {
  display: flex;
  gap: 10px;
}

.arrow-btn {
  width: 45px;
  height: 45px;
  border: 1px solid var(--border-color);
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.arrow-btn:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.destination-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.destination-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.destination-card.featured {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.destination-card:hover .card-image img {
  transform: scale(1.1);
}

.badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary-color);
  color: white;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.badge.sale {
  background: #e74c3c;
}

.card-content {
  padding: 20px;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #666;
  margin-bottom: 10px;
}

.card-header i {
  color: var(--primary-color);
}

.card-content h3 {
  font-size: 16px;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid var(--border-color);
}

.rating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: #666;
}

.rating i {
  color: #ffc107;
}

.price {
  display: flex;
  align-items: center;
  gap: 5px;
}

.amount {
  font-size: 18px;
  font-weight: bold;
  color: var(--primary-color);
}

/* Why Choose Section */
.why-choose {
  padding: 80px 0;
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.feature-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.feature-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card-content {
  padding: 20px;
}

.feature-card-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.feature-card-content p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.6;
}

.feature-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 13px;
  color: #666;
}

.feature-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.feature-meta i {
  color: var(--primary-color);
}

.feature-price {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
}

/* Stats Section */
.stats-section {
  padding: 80px 0;
  background: var(--blue-color);
}

.stats-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.stats-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.stat-box {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffd4a3 0%, #ffecd1 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.stat-icon i {
  font-size: 28px;
  color: var(--primary-color);
}

.stat-number {
  font-size: 36px;
  font-weight: bold;
  color: var(--dark-color);
  margin-bottom: 5px;
}

.stat-label {
  color: #666;
  font-size: 14px;
}

.stats-image {
  position: relative;
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
}

.stats-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stats-badge {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: var(--primary-color);
  color: white;
  padding: 25px 35px;
  border-radius: 15px;
}

.stats-badge h3 {
  font-size: 16px;
  font-weight: 500;
}

.stats-badge h2 {
  font-size: 28px;
  font-weight: bold;
}

/* New Destinations */
.new-destinations {
  padding: 80px 0;
  background: var(--light-gray);
}

.new-dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.new-dest-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.new-dest-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.new-dest-image {
  height: 250px;
  overflow: hidden;
}

.new-dest-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.new-dest-card:hover .new-dest-image img {
  transform: scale(1.1);
}

.new-dest-info {
  padding: 20px;
}

.new-dest-info h4 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--dark-color);
}

.new-dest-info p {
  font-size: 13px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 5px;
}

.new-dest-info i {
  color: var(--primary-color);
}

/* Gallery Section */
.gallery {
  padding: 80px 0;
  background: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  height: 280px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item.large {
  grid-row: span 2;
  height: 580px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Blog Section */
.blog {
  padding: 80px 0;
  background: var(--light-gray);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.blog-image {
  height: 220px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-content {
  padding: 25px;
}

.blog-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 13px;
  color: #999;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-content h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--dark-color);
  line-height: 1.4;
}

.blog-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.read-more {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.read-more:hover {
  gap: 12px;
}

/* Newsletter Section */
.newsletter {
  padding: 60px 0;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  position: relative;
  overflow: hidden;
}

.newsletter-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
  position: relative;
  z-index: 2;
}

.newsletter-text {
  color: white;
}

.newsletter-text h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.newsletter-text p {
  font-size: 16px;
  opacity: 0.95;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  background: white;
  padding: 8px;
  border-radius: 30px;
  width: 450px;
}

.newsletter-form input {
  flex: 1;
  border: none;
  padding: 12px 20px;
  font-size: 14px;
  outline: none;
}

.newsletter-form button {
  padding: 12px 35px;
}

.newsletter-image {
  position: absolute;
  right: 100px;
  top: -20px;
  opacity: 0.15;
}

.newsletter-image img {
  height: 200px;
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.footer-logo i {
  font-size: 28px;
}

.footer-about p {
  color: #aaa;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: white;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-contact li {
  color: #aaa;
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}

.footer-contact i {
  color: var(--primary-color);
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
}

.footer-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: #aaa;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--primary-color);
}

.footer-nav span {
  color: #555;
}

.copyright {
  color: #888;
  font-size: 13px;
  line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nav {
    gap: 20px;
  }

  .hero-title {
    font-size: 42px;
  }

  .destinations-grid,
  .new-dest-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .hero-content,
  .adventure-grid,
  .stats-content {
    grid-template-columns: 1fr;
  }

  .hero-images {
    height: 400px;
  }

  .destinations-grid,
  .new-dest-grid,
  .features-grid,
  .blog-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-content {
    flex-direction: column;
    gap: 30px;
  }

  .newsletter-form {
    width: 100%;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content,
.adventure-grid,
.destination-card,
.feature-card,
.blog-card {
  animation: fadeInUp 0.6s ease-out;
}
