/*-----------------------------------*\
  #CUSTOM PROPERTY – BIẾN TÙY CHỈNH
  Tập trung khai báo các biến như màu sắc, font, cỡ chữ, khoảng cách, hiệu ứng,...
  Mục đích: tái sử dụng dễ dàng, quản lý đồng bộ
\*-----------------------------------*/

:root {

  /* 🎨 MÀU SẮC (Colors) */
  --battleship-gray: hsl(0, 0%, 53%);        /* Xám đậm – dùng cho chữ phụ */
  --viridian-green: hsl(180, 98%, 31%);      /* Xanh chủ đạo */
  --silver-chalice: hsl(0, 0%, 69%);
  --mikado-yellow: hsl(47, 98%, 50%);        /* Vàng – điểm nhấn */
  --granite-gray: hsl(0, 0%, 40%);
  --independence: hsl(219, 20%, 32%);
  --spanish-gray: hsl(0, 0%, 61%);
  --oxford-blue: hsl(222, 46%, 17%);         /* Dùng làm nền header/footer */
  --black-coral: hsl(223, 8%, 44%);
  --eerie-black: hsl(210, 11%, 15%);
  --light-gray: hsl(0, 0%, 80%);
  --white-2: hsl(0, 0%, 98%);
  --white-1: hsl(0, 0%, 100%);
  --black: hsl(0, 0%, 0%);
  --jet: hsl(0, 0%, 20%);                    /* Văn bản tiêu chuẩn */

  /* ✍️ FONT CHỮ (Typography) */
  --ff-abril-fatface: 'Abril Fatface', cursive;
  --ff-comforter-brush: 'Comforter Brush', cursive;
  --ff-heebo: 'Heebo', sans-serif;

  /* Cỡ chữ – sắp theo từ lớn (fs-1) tới nhỏ (fs-8) */
  --fs-1: 3.4rem; /* tiêu đề lớn */
  --fs-2: 3.2rem;
  --fs-3: 3rem;
  --fs-4: 2.4rem;
  --fs-5: 1.8rem;
  --fs-6: 1.7rem;
  --fs-7: 1.4rem;
  --fs-8: 1.2rem; /* chú thích nhỏ */

  /* Độ đậm chữ */
  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;

  /* 🔲 Bo góc */
  --radius-6: 6px;

  /* 📏 Khoảng cách giữa các section */
  --section-padding: 40px;

  /* 🎬 Hiệu ứng chuyển động */
  --transition-1: 0.15s ease;
  --transition-2: 0.35s ease;
  --cubic-out: cubic-bezier(0.33, 0.85, 0.56, 1.02); /* hiệu ứng mượt */
}


/*-----------------------------------*\
  #RESET CSS – XÓA MẶC ĐỊNH TRÌNH DUYỆT
\*-----------------------------------*/

/* Xóa margin, padding mặc định và áp dụng border-box cho toàn bộ box model */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Loại bỏ ký hiệu chấm đầu dòng ở danh sách */
li {
  list-style: none;
}

/* Xóa gạch chân cho liên kết */
a {
  text-decoration: none;
}

/* Hiển thị các phần tử inline như block để dễ layout */
a,
img,
span,
input,
button,
ion-icon {
  display: block;
}

/* Xóa border mặc định, kế thừa font */
input,
button {
  border: none;
  background: none;
  font: inherit;
}

/* Khi rê chuột vào button sẽ có icon tay */
button {
  cursor: pointer;
}

/* Input chiếm toàn bộ chiều ngang */
input {
  width: 100%;
}

/* Ảnh giữ nguyên tỉ lệ */
img {
  height: auto;
}

/* Thẻ address hiển thị bình thường, không nghiêng */
address {
  font-style: normal;
}

/* Khi người dùng dùng Tab để focus sẽ thấy outline */
:focus-visible {
  outline-offset: 5px;
}

/*-----------------------------------*\
  #CÀI ĐẶT CƠ BẢN CHO TRANG
\*-----------------------------------*/

/* Gốc HTML */
html {
  font-family: var(--ff-heebo); /* font chính */
  font-size: 10px;              /* giúp 1rem = 10px */
  scroll-behavior: smooth;      /* cuộn mượt */
}

/* Body – màu nền trắng và cỡ chữ tiêu chuẩn */
body {
  background: var(--white-1);
  font-size: 1.6rem; /* =16px */
}

/*-----------------------------------*\
  #THANH CUỘN TUỲ CHỈNH (WEBKIT)
\*-----------------------------------*/

/* Chiều rộng thanh cuộn */
::-webkit-scrollbar {
  width: 10px;
}

/* Nền của vùng cuộn */
::-webkit-scrollbar-track {
  background: hsl(0, 0%, 95%);
}

/* Thanh cuộn màu xám nhạt */
::-webkit-scrollbar-thumb {
  background: hsl(0, 0%, 80%);
}

/* Hover vào thanh cuộn sẽ đậm hơn */
::-webkit-scrollbar-thumb:hover {
  background: hsl(0, 0%, 70%);
}

/*-----------------------------------*\
  #REUSED STYLE – CÁC KIỂU DÙNG CHUNG
  Dùng để tái sử dụng nhiều lần trên các phần tử khác nhau như button, section, image,...
\*-----------------------------------*/

/* ✅ Container chính – tạo padding ngang hai bên (left & right) */
.container {
  padding-inline: 15px;
}

/* ✅ Cấu trúc chung cho nút (button) – dùng biến để dễ đổi màu theo từng loại */
.btn {
  background: var(--background, var(--white-1)); /* Màu nền mặc định là trắng */
  color: var(--color, var(--viridian-green));    /* Màu chữ mặc định xanh */
  font-weight: var(--fw-700);
  width: max-content;                            /* Chiều rộng vừa đủ nội dung */
  padding: 10px 25px;
  border: 2px solid var(--border-color, var(--white-1)); /* Viền tùy chỉnh */
  border-radius: var(--radius-6);
}

/* ✅ Nút phụ – hover đổi nền thành trong suốt, chữ trắng */
.btn-secondary:is(:hover, :focus) {
  --background: transparent;
  --color: var(--white-1);
}

/* ✅ Nút chính (nền xanh, chữ trắng, viền xanh) */
.btn-primary {
  --background: var(--viridian-green);
  --color: var(--white-1);
  --border-color: var(--viridian-green);
}

/* ✅ Nút chính khi hover thì đảo màu lại */
.btn-primary:is(:hover, :focus) {
  --background: transparent;
  --color: var(--viridian-green);
}

/* ✅ Nút viền xám, chữ đen – dùng khi cần nhẹ nhàng */
.btn-outline {
  --color: var(--oxford-blue);
  --border-color: var(--silver-chalice);
}

/* ✅ Hover của nút viền – đổi sang màu chủ đạo */
.btn-outline:is(:hover, :focus) {
  --color: var(--viridian-green);
  --border-color: var(--viridian-green);
}

/* ✅ Padding trên/dưới cho mỗi section */
.section {
  padding-block: var(--section-padding);
}

/* ✅ Tiêu đề phụ – thường nằm trên tiêu đề chính */
.section-subtitle {
  font-family: var(--ff-comforter-brush);
  color: var(--mikado-yellow);
  font-size: var(--fs-3);
}

/* ✅ Ảnh full chiều ngang */
.w-100 {
  width: 100%;
}

/* ✅ Tiêu đề cấp 2 – font size lớn, màu đen đậm */
.h2 {
  color: var(--jet);
  font-size: var(--fs-3);
  font-weight: var(--fw-500);
}

/* ✅ Tiêu đề cấp 3 – dùng cho card, nội dung nhỏ */
.h3 {
  font-size: var(--fs-4);
  font-weight: var(--fw-400);
}

/* ✅ Lớp áp dụng font đặc biệt cho tiêu đề chính của section */
.section-title {
  font-family: var(--ff-abril-fatface);
}

/* ✅ Ảnh bìa – chiếm toàn bộ khung chứa, không bị méo */
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ✅ Banner thẻ (ví dụ ảnh đại diện của card) có nền xám nhạt khi chưa load ảnh */
.card-banner {
  background: var(--silver-chalice);
}

/* ✅ Căn giữa tiêu đề phụ và tiêu đề chính trong popular/blog */
:is(.popular, .blog) .section-subtitle {
  text-align: center;
  margin-bottom: 10px;
}

:is(.popular, .blog) .section-title {
  text-align: center;
  margin-bottom: 50px;
}

/* ✅ Danh sách các card được grid với khoảng cách giữa các item */
.popular-list,
.blog-list {
  display: grid;
  gap: 30px;
}

/* ✅ Card trong phần popular/blog – có bóng đổ nhẹ + bo góc */
.popular-card,
.blog-card {
  box-shadow: 0 10px 30px hsla(0, 0%, 0%, 0.1);
  border-radius: var(--radius-6);
  overflow: hidden;
}

/* ✅ Banner trong card có position relative để chứa badge (ví dụ ngày đăng) */
:is(.popular, .blog) .card-banner {
  position: relative;
}

/* ✅ Badge hiển thị thời gian hoặc thông tin nổi bật */
.card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--mikado-yellow);
  color: var(--white-1);
  padding: 14px 10px;
  border-radius: var(--radius-6);
}

/* ✅ Icon trong badge được tô đậm và căn giữa */
.card-badge ion-icon {
  --ionicon-stroke-width: 60px;
  font-size: 20px;
  margin-inline: auto;
}

/* ✅ Thời gian trong badge được in đậm */
.card-badge time {
  font-weight: var(--fw-700);
}

/* ✅ Nội dung bên trong card (tiêu đề, mô tả...) */
:is(.popular, .blog) .card-content {
  padding: 30px 15px;
}

/* ✅ Layout cho phần giá + đánh giá (nằm ngang) */
.card-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}

/* ✅ Tiêu đề trong card */
:is(.popular, .blog) .card-title {
  color: var(--granite-gray);
  font-size: var(--fs-5);
  margin-block: 20px;
}

/* ✅ Link bên trong card giữ nguyên màu chữ */
:is(.popular, .blog) .card-title > a {
  color: inherit;
}

/* ✅ Hover vào link sẽ đổi sang màu chủ đạo */
:is(.popular, .blog) .card-title > a:is(:hover, :focus) {
  color: var(--viridian-green);
}

/*-----------------------------------*\
  #HEADER – PHẦN ĐẦU TRANG
\*-----------------------------------*/

.header {
  background: var(--viridian-green); /* Màu nền của header */
  padding-block: 20px;               /* Padding trên/dưới */
  height: 88px;                      /* Chiều cao mặc định khi menu đóng */
  overflow: hidden;                 /* Ẩn các phần tử tràn ra */
  transition: 0.25s var(--cubic-out); /* Hiệu ứng mở/đóng mượt */
}

/* Khi mở menu mobile, header sẽ cao hơn để chứa menu */
.header.active {
  height: 425px;
  transition-duration: 0.35s;
}

/* Bố cục container trong header: chia 2 cột logo và menu */
.header .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

/* Logo website */
.logo {
  color: var(--white-1);
  font-size: var(--fs-2);
  font-weight: var(--fw-600);
}

/* Biểu tượng menu hamburger và icon đóng */
/* Khi active, đổi icon mở → đóng */
.nav-toggle-btn.active .open,
.nav-toggle-btn .close {
  display: none;
}
.nav-toggle-btn .open,
.nav-toggle-btn.active .close {
  display: block;
}

/* Style icon menu */
.nav-toggle-btn ion-icon {
  color: var(--white-1);
  font-size: 35px;
  --ionicon-stroke-width: 40px;
}

/* Menu navbar ẩn mặc định (trên mobile) */
.navbar {
  width: 100%;
  padding: 20px 10px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-1);
}

/* Khi header active → hiện menu */
.header.active .navbar {
  opacity: 1;
  visibility: visible;
}

/* Danh sách liên kết điều hướng */
.navbar-list {
  margin-bottom: 15px;
}

/* Mỗi liên kết trong navbar */
.navbar-link {
  color: var(--white-1);
  font-size: var(--fs-5);
  font-weight: var(--fw-500);
  padding-block: 10px 0;
  border-bottom: 2px solid transparent;
  width: max-content;
}

/* Hiệu ứng khi hover vào liên kết */
.navbar-link:is(:hover, :focus) {
  border-color: var(--black);
  transition: 0.5s linear;
}


/*-----------------------------------*\
  #HERO – PHẦN GIỚI THIỆU TRANG
\*-----------------------------------*/

.shape {
  display: none; /* Ẩn các hình trang trí */
}

.hero {
  background-repeat: no-repeat, no-repeat;
  background-position: bottom left, top right;
}

/* Nội dung chính trong phần hero */
.hero-content {
  margin-bottom: 50px;
}

/* Tiêu đề phụ */
.hero .section-subtitle {
  margin-bottom: 15px;
}

/* Tiêu đề chính */
.hero-title {
  color: var(--oxford-blue);
  font-size: var(--fs-1);
  font-family: var(--ff-abril-fatface);
  font-weight: var(--fw-500);
  line-height: 1.2;
  max-width: 11ch; /* giới hạn 11 ký tự */
  margin-bottom: 15px;
}

/* Đoạn mô tả ngắn */
.hero-text {
  color: var(--black-coral);
  font-size: var(--fs-7);
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Nhóm nút: “Liên hệ”, “Tìm hiểu thêm” */
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}


/*-----------------------------------*\
  #DESTINATION – PHẦN ĐIỂM ĐẾN
\*-----------------------------------*/

/* Tiêu đề phụ trong section */
.destination .section-subtitle {
  text-align: center;
  margin-bottom: 15px;
}

/* Tiêu đề chính của section */
.destination .section-title {
  text-align: center;
  margin-bottom: 60px;
}

/* Danh sách thẻ điểm đến */
.destination-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

/* Card điểm đến (bao ảnh và nội dung) */
.destination-card {
  position: relative;
  border-radius: var(--radius-6);
  overflow: hidden;
}

/* Lớp phủ màu đen ở dưới cùng của card (gradient) */
.destination-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    hsla(222, 46%, 17%, 0),
    hsla(222, 46%, 17%, 0.7)
  );
}

/* Ảnh có hiệu ứng zoom nhẹ khi hover */
.destination-card img {
  transition: var(--transition-2);
}
.destination-card:is(:hover, :focus) img {
  transform: scale(1.1);
}

/* Nội dung văn bản nằm đè lên ảnh */
.destination-card .card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  z-index: 1;
}

/* Tiêu đề phụ cho địa danh */
.destination-card .card-subtitle {
  color: var(--mikado-yellow);
  font-family: var(--ff-comforter-brush);
  font-size: var(--fs-5);
}

/* Tên địa danh chính */
.destination-card .card-title {
  color: var(--white-1);
  font-family: var(--ff-abril-fatface);
}

/*-----------------------------------*\
  #POPULAR – PHẦN TOUR NỔI BẬT
\*-----------------------------------*/

/* Giá và đánh giá trong thẻ được bo góc, có màu nền và padding */
.popular-card :is(.card-price, .card-rating) {
  color: var(--white-1);
  font-size: var(--fs-8);
  padding: 5px 8px;
  border-radius: var(--radius-6);
}

/* Giá có nền xanh chủ đạo */
.popular-card .card-price {
  background: var(--viridian-green);
}

/* Đánh giá có nền vàng + icon sao + khoảng cách các sao */
.popular-card .card-rating {
  background: var(--mikado-yellow);
  display: flex;
  align-items: center;
  gap: 2px;
}

.popular-card .card-rating ion-icon {
  font-size: 17px;
}

.popular-card .card-rating data {
  margin-left: 4px;
}

/* Địa điểm có màu xám nhạt */
.popular-card .card-location {
  color: var(--spanish-gray);
}


/*-----------------------------------*\
  #ABOUT – PHẦN VỀ CHÚNG TÔI
\*-----------------------------------*/

.about-content {
  margin-bottom: 50px;
}

/* Tiêu đề phụ và tiêu đề chính có khoảng cách dưới */
.about .section-subtitle {
  margin-bottom: 10px;
}

.about .section-title {
  margin-bottom: 20px;
}

/* Mô tả chính & từng mô tả item đều có màu xám đậm và giãn dòng */
.about-text,
.about-item-text {
  color: var(--battleship-gray);
  font-size: var(--fs-6);
  line-height: 1.7;
}

/* Mô tả chính có khoảng cách rõ hơn */
.about-text {
  margin-bottom: 30px;
}

/* Danh sách các đặc điểm có layout dạng lưới */
.about-list {
  display: grid;
  gap: 20px;
  margin-bottom: 40px;
}

/* Từng item gồm icon và văn bản, xếp ngang */
.about-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

/* Icon tròn nền xanh, chữ trắng, căn giữa */
.about-item-icon {
  background: var(--viridian-green);
  color: var(--white-1);
  font-size: 26px;
  padding: 16px;
  border-radius: 50%;
  margin-top: 5px;
}

/* Tiêu đề đặc điểm được bôi đậm */
.about-item-title {
  color: var(--granite-gray);
  font-weight: var(--fw-600);
  margin-bottom: 5px;
}


/*-----------------------------------*\
  #BLOG – PHẦN BLOG / TIN TỨC
\*-----------------------------------*/

.blog {
  padding-bottom: 100px; /* Cách với phần dưới */
}

/* Tác giả + thời gian nằm ngang, căn giữa */
.blog-card .author-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Dòng thông tin chung (tên + thời gian) */
.blog-card .card-wrapper {
  color: var(--spanish-gray);
  font-size: var(--fs-8);
  justify-content: space-between;
}

/* Tên tác giả được bôi đậm */
.author-name {
  color: var(--granite-gray);
  font-weight: var(--fw-500);
}

/* Link đọc thêm cuối bài */
.btn-link {
  color: var(--viridian-green);
  font-weight: var(--fw-700);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 5px;
}

.btn-link ion-icon {
  font-size: 20px;
}

.btn-link:is(:hover, :focus) {
  color: var(--oxford-blue);
}


/*-----------------------------------*\
  #FOOTER – PHẦN CHÂN TRANG
\*-----------------------------------*/

.footer {
  background-color: var(--oxford-blue);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: var(--light-gray);
  padding-block: 60px;
}

/* Tất cả link (trừ logo) có màu chữ chung */
.footer a:not(.logo) {
  color: inherit;
}

/* Lưới footer chia các cột */
.footer-top {
  display: grid;
  gap: 30px;
  margin-bottom: 40px;
}

/* Tiêu đề của mỗi cột */
.footer-list-title {
  color: var(--white-1);
  font-size: var(--fs-4);
  font-weight: var(--fw-600);
  margin-bottom: 15px;
}

/* Link trong footer */
.footer-link {
  font-size: var(--fs-7);
  padding-block: 5px;
}

.footer .footer-link:is(:hover, :focus) {
  color: var(--white-1);
}

/* Mô tả dưới form bản tin */
.newsletter-text {
  font-size: var(--fs-7);
  margin-bottom: 30px;
  line-height: 1.7;
}

/* Gói form chứa input + button */
.newsletter-form {
  position: relative;
}

/* Ô nhập email */
.newsletter-input {
  background: var(--white-1);
  border-radius: var(--radius-6);
  padding: 24px;
  color: var(--eerie-black);
}

/* Khi focus vào input */
.newsletter-input:focus {
  outline: none;
  box-shadow: 0 0 0 5px hsla(216, 98%, 52%, 0.25);
}

/* Button đăng ký được đặt ngay trong ô input (absolute) */
.newsletter-form .btn-primary {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
}

/* Hover vào nút sẽ chuyển lại màu gốc */
.newsletter-form .btn-primary:is(:hover, :focus) {
  --background: var(--viridian-green);
  --color: var(--white-1);
}

/* Tên logo cuối trang */
.footer-bottom .logo {
  text-align: center;
  margin-bottom: 20px;
}

/* Dòng bản quyền */
.copyright {
  text-align: center;
  margin-bottom: 20px;
  font-size: var(--fs-7);
}

/* Link bản quyền có gạch chân */
.copyright-link {
  display: inline-block;
  text-decoration: underline;
}

.copyright-link:is(:hover, :focus) {
  text-decoration: none;
}

/* Danh sách các icon mạng xã hội */
.social-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

/* Icon mạng xã hội bo tròn */
.social-link {
  font-size: 17px;
  background: var(--independence);
  padding: 10px;
  border-radius: 50%;
}

.social-link:is(:hover, :focus) {
  background: var(--viridian-green);
}

/*-----------------------------------*\
  #GO TO TOP – NÚT CUỘN LÊN ĐẦU TRANG
\*-----------------------------------*/

.go-top {
  position: fixed;
  bottom: 0;
  right: 15px;
  background: var(--viridian-green);
  color: var(--white-1);
  font-size: 20px;
  padding: 10px;
  border-radius: var(--radius-6);
  visibility: hidden;
  opacity: 0;
  transition: var(--transition-1);
}

/* Khi cuộn xuống – nút hiện ra */
.go-top.active {
  visibility: visible;
  opacity: 1;
  transform: translateY(-15px);
}

/* Hover làm tăng khoảng cách từ dưới lên */
.go-top:is(:hover, :focus) {
  transform: translateY(-25px);
}


/*-----------------------------------*\
  #RESPONSIVE – TÙY BIẾN CHO MÀN HÌNH RỘNG
\*-----------------------------------*/

/* MÀN HÌNH >= 575px */
@media (min-width: 575px) {

  /* Cập nhật cỡ chữ */
  :root {
    --fs-1: 5rem;
    --fs-3: 4rem;
    --fs-8: 1.4rem;
  }

  /* Hero section – tăng cỡ chữ mô tả */
  .hero-text {
    --fs-7: 1.8rem;
  }

  /* Footer – chia 2 cột */
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}


/* MÀN HÌNH >= 768px */
@media (min-width: 768px) {

  /* Container có max-width và căn giữa */
  .container {
    max-width: 750px;
    margin-inline: auto;
  }

  /* Danh sách card chia 2 cột */
  .popular-list,
  .blog-list {
    grid-template-columns: 1fr 1fr;
  }

  /* Hero căn giữa và chiều cao tối thiểu */
  .hero {
    min-height: 550px;
    display: grid;
    place-items: center;
  }

  .hero .container {
    display: flex;
    align-items: center;
    gap: 40px;
  }

  /* Destination card chia tỷ lệ */
  .destination-list > li {
    width: calc(33.33% - 20px);
  }

  .destination-list .w-50 {
    width: calc(50% - 20px);
  }

  /* Footer font chữ lớn hơn và hàng dưới chia đều */
  .footer {
    --fs-7: 1.6rem;
  }

  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer-bottom .logo,
  .copyright {
    margin-bottom: 0;
  }
}


/* MÀN HÌNH >= 992px */
@media (min-width: 992px) {

  /* Biến toàn cục: cỡ chữ, padding */
  :root {
    --fs-2: 3.5rem;
    --fs-3: 4.4rem;
    --section-padding: 60px;
  }

  /* Container lớn hơn */
  .container {
    max-width: 980px;
  }

  /* Card chia 3 cột */
  .popular-list,
  .blog-list {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Ẩn nút menu mobile */
  .nav-toggle-btn {
    display: none;
  }

  /* Mở rộng header – menu ngang luôn hiện */
  .header,
  .header.active {
    height: unset;
  }

  .navbar {
    all: unset;
    display: flex;
    align-items: center;
    flex-grow: 1;
  }

  .navbar-list {
    margin-bottom: 0;
    margin-inline: auto;
    display: flex;
    align-items: center;
    gap: 30px;
  }

  .navbar-link {
    font-weight: var(--fw-700);
    margin-bottom: 8px;
  }

  /* Hero – có hình nền động */
  .hero {
    position: relative;
    min-height: 680px;
  }

  .hero-title,
  .hero-text {
    margin-bottom: 35px;
  }

  /* Các hình xoay nhẹ trong hero Class .shape dùng để gắn hiệu ứng xoay (rotate). */
  .shape {
    display: block;
    position: absolute;
    animation: rotate 8s linear infinite;
  }

  .shape-1 {
    top: 60px;
    left: 47%;
  }

  .shape-2 {
    top: 20%;
    right: 50px;
    animation-delay: 0.25s;
  }

  .shape-3 {
    left: 40%;
    bottom: 20%;
    animation-delay: 0.5s;
  }

  @keyframes rotate {
    0% { transform: rotate(0); }
    100% { transform: rotate(1turn); }
  }

  /* Destination section – tăng cỡ chữ */
  .destination {
    --fs-4: 3.2rem;
    --fs-5: 2.6rem;
  }

  /* About section chia thành 2 cột */
  .about .container {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    align-items: center;
    gap: 30px;
  }

  .about-content {
    margin-bottom: 0;
  }

  /* Footer top chia 4 cột */
  .footer-top {
    grid-template-columns: 1fr 1fr 1fr 2fr;
  }
}


/* MÀN HÌNH >= 1200px */
@media (min-width: 1200px) {

  :root {
    --fs-1: 6rem;
  }

  .container {
    max-width: 1150px;
  }

  /* Padding trong card lớn hơn */
  :is(.popular, .blog) .card-content {
    padding: 30px;
  }

  /* Menu khoảng cách lớn hơn */
  .navbar-list {
    gap: 50px;
  }

  /* About chia tỉ lệ khác */
  .about .container {
    grid-template-columns: 0.7fr 1fr;
  }
}
