/* Reset đơn giản */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

/* Header tổng thể */
.navbar {
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 3px solid red; /* ← thêm dòng này */
}

/* Logo */
.logo-section {
  flex-shrink: 0;
}

.logo {
  height: 50px;
  width: auto;
}

/* Menu chính */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 8px 12px;
  transition: color 0.3s, background-color 0.3s;
  border-radius: 4px;
}

.nav-links li a:hover {
  color: #a3080f; /* Màu thương hiệu */
  background-color: rgba(163, 8, 15, 0.08); /* Tông màu nhẹ */
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(163, 8, 15, 0.2); /* Đổ bóng nhẹ */
  transform: translateY(-1px);
  transition: all 0.3s ease;
}

/* Icon và flag */
.icon,
.flag {
  margin-right: 6px;
}

/* Responsive (tùy chọn, nếu cần) */
@media (max-width: 768px) {
  .nav-links {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* Main */
main {
  width: 100%;
  height: auto;
}
/* Slide container */
.slider {
  position: relative;
  width: 100%;
  /* max-width: 1200px; */
  height: 500px;
  margin: auto;
  overflow: hidden;
  border-radius: 10px;
}

/* Slide wrapper */
.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Individual slide */
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  z-index: 0;
}

/* Active slide */
.slide.active {
  opacity: 1;
  z-index: 1;
}

/* Navigation buttons */
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 8px 16px;
  cursor: pointer;
  z-index: 10;
  border-radius: 5px;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}
/* BangKok */
/* === RESET CƠ BẢN === */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", sans-serif;
  background-color: #f9f9f9;
  color: #222;
  line-height: 1.75;
}

/* ===== TRIP INTRO – Tiêu đề chính của chuyến đi ===== */
.trip-intro {
  background: linear-gradient(to right, #d62828, #f77f00);
  color: white;
  text-align: center;
  padding: 40px 20px;
  margin-top: 30px;
  border-radius: 8px;
}

.trip-intro h1 {
  font-size: 28px;
  margin-bottom: 10px;
}

.trip-intro p {
  font-size: 16px;
}

/* ===== NỘI DUNG CHÍNH – PHẦN CHIA SẺ CHUYẾN ĐI ===== */
.content {
  max-width: 900px;
  margin: 50px auto;
  padding: 0 20px;
}

.content h2 {
  font-size: 22px;
  color: #d62828;
  margin-bottom: 16px;
}

.content p {
  font-size: 16px;
  margin-bottom: 15px;
  color: #333;
}

.content ul {
  padding-left: 20px;
  margin-bottom: 25px;
}

.content ul li {
  font-size: 16px;
  margin-bottom: 10px;
  list-style: disc;
  color: #444;
}

/* ===== GALLERY ẢNH ĐOÀN ===== */
.gallery {
  text-align: center;
  margin-top: 30px;
}

.gallery img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.gallery-caption {
  margin-top: 12px;
  font-size: 15px;
  font-style: italic;
  color: #666;
}

/* ===== RESPONSIVE CHO ĐIỆN THOẠI & TABLET ===== */
@media (max-width: 768px) {
  .trip-intro h1 {
    font-size: 22px;
  }

  .trip-intro p {
    font-size: 14px;
  }

  .content {
    padding: 0 15px;
  }

  .content h2 {
    font-size: 18px;
  }

  .content p,
  .content ul li {
    font-size: 15px;
  }

  .gallery-caption {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .trip-intro h1 {
    font-size: 20px;
  }

  .content h2 {
    font-size: 17px;
  }

  .content p,
  .content ul li {
    font-size: 14px;
  }

  .gallery-caption {
    font-size: 13px;
  }
}

/* Khách hàng & Đối tác */
.partners-section {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.section-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 40px;
}

.marquee-container {
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-container:hover .marquee-track {
  animation-play-state: paused; /* dừng lại khi hover */
}

.partner-item {
  flex: 0 0 auto;
  margin: 0 20px;
}

.partner-item img {
  height: 60px;
  filter: grayscale(0%);
  transition: transform 0.3s ease;
}

.partner-item:hover img {
  transform: scale(1.1);
}

/* Animation */
@keyframes marqueeScroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Footer */
.footer {
  /* background-color: #880315; */
  color: #f1f5f9;
  font-size: 0.95rem;
  width: 100%;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  /* justify-content: space-between; */
  gap: 40px;
  /* max-width: 1200px; */
  width: 100%;
  /* margin: auto; */
  background-color: #7c0f0f;
  /* align-items: center; */
}

.footer h3 {
  margin-bottom: 12px;
  color: #f5f6f7;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #f1f5f9;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #38bdf8;
}

.footer-bottom {
  text-align: center;
  /* margin-top: 30px; */
  border-top: 1px solid #07a166be;
  padding-top: 12px;
  font-size: 0.85rem;
  color: #f6f6f7;
  background-color: #dfa403;
}
.footer-map {
  flex: 1 1 300px;
}

.footer-map h3 {
  color: #f5f7f8;
  margin-bottom: 12px;
}

.map-container iframe {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
