* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Header styles copied/adapted from japan.css for consistent header & fonts */
#menu {
  width: 90%; /* thay min-width: 100vw bằng width: 100% */
  height: 120px;

  display: flex;
  justify-content: space-around;
  align-items: center;
}
.logo {
  font-family: "animalchariot";
  font-size: 36px;
  font-weight: bold;
  color: black;
  list-style: none;
  font-weight: bold;
  font-size: 50px;
  cursor: pointer;
  margin-right: 400px;
}
.nav {
  list-style: none;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 100%;
  margin-right: -200px;
}
.nav li {
  margin: 0 20px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
}
.nav li a {
  text-decoration: none;
  color: black;
  font-family: "courgette";
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 24px;
}
.nav li a:hover {
  color: blue;
  background-color: lightgrey;
  transition: 0.4s;
}

html,
body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #f3f4f6;
  color: #111827;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 999px;
  border: none;
  background: #111827;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary:hover {
  background: #000000;
  transform: translateY(-1px);
  box-shadow: 0 10px 25px -18px rgba(15, 23, 42, 0.9);
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-left {
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.9rem;
}

.nav-right a {
  position: relative;
  padding-bottom: 2px;
}

/* Make header fonts match japan header */
.nav-left {
  font-family: "animalchariot", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 50px; /* match .logo size in japan.css */
  font-weight: 700;
  color: #111827;
  margin-right: 0;
}

.nav-right {
  gap: 18px;
}

.nav-right a {
  font-family: "Courgette", cursive;
  font-size: 22px;
  padding: 8px 12px;
  color: black;
}

.btn-primary {
  font-family: "Courgette", cursive;
}

.nav-right a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #111827;
  transition: width 0.15s ease;
}

.nav-right a:hover::after {
  width: 100%;
}

main {
  max-width: 100%;
  margin: 0 auto 60px;
  padding: 24px 16px 60px;
}

section {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px 26px 34px;
  margin-bottom: 40px;
  box-shadow: 0 20px 40px -28px rgba(15, 23, 42, 0.45);
}

h1,
h2 {
  font-weight: 700;
  color: #111827;
}

h1 {
  font-size: 2.1rem;
  margin-bottom: 10px;
}

h2 {
  font-size: 1.35rem;
  margin: 26px 0 12px;
}

.hero-text {
  max-width: 880px;
  font-size: 0.96rem;
  color: #4b5563;
  margin-bottom: 18px;
  font-family: "courier new", monospace;
}

.paragraph {
  font-size: 0.93rem;
  color: #4b5563;
  margin-top: 10px;
  margin-bottom: 10px;
}

.hero-btn {
  margin-bottom: 16px;
}

.hero-image {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  margin-top: 4px;
  height: 600px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 35px -28px rgba(15, 23, 42, 0.5);
}

.hero-image img {
  width: 100%;
  height: 900px;
  object-fit: cover;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 35px -28px rgba(15, 23, 42, 0.5);
}

.places-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.place-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 35px -28px rgba(15, 23, 42, 0.5);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.place-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.place-body {
  padding: 14px 16px 16px;
}

#danang .places-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
#danang .place-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.3); /* viền đen mờ */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5); /* bóng nhẹ */
  display: flex;
  flex-direction: column;
  height: 100%;
}
#danang .place-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
#danang .place-body {
  padding: 14px 16px 16px;
}
#danang .place-card:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}
.place-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.place-desc {
  font-size: 0.87rem;
  color: #6b7280;
}

.hoian-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

/* Hoàn thiện layout khi dùng .place-card trong hoian-grid */
.hoian-grid {
  align-items: start;
  padding: 0 8px;
}

.hoian-grid .place-card {
  margin: 0; /* loại bỏ margin lớn của .img-block để căn đều trong grid */
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 30px -12px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hoian-grid .place-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.hoian-grid .place-body {
  padding: 14px 16px;
}

.hoian-grid .place-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 22px 40px -18px rgba(0, 0, 0, 0.18);
}

/* Responsive: tablet */
@media (max-width: 900px) {
  .hoian-grid,
  .places-grid,
  #danang .places-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .place-card img,
  .hoian-grid .place-card img {
    height: 220px;
  }

  .hero-image img {
    height: 500px;
  }
}

/* Responsive: mobile */
@media (max-width: 600px) {
  .hoian-grid,
  .places-grid,
  #danang .places-grid {
    grid-template-columns: 1fr;
  }

  .place-card img,
  .hoian-grid .place-card img {
    height: 200px;
  }

  .hero-image img {
    height: 300px;
  }
}

.img-block {
  border-radius: 18px;
  overflow: hidden;
  min-height: 500px;
  border: 1px solid rgba(0, 0, 0, 0.3); /* viền đen mờ */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  margin: 30px;
}
#hoian .hero-image {
  height: 500px;
  width: 1200px;
  margin: auto;
}
#hoian .hero-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
#hoian .paragraph {
  font-family: "courier new", monospace;
  font-size: 1.2rem;
  font-weight: 10000;
  font-style: bold;
  line-height: 1.8;
  color: #000000;
}
.paragraphwhy {
  font-size: 1rem;
  line-height: 1.8;
  color: #000000;
  font-family: "courier new", monospace;
}
.img-block img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.img-block img:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}
h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #111827;
  margin-top: 12px;
  font-family: "playwrite cz", sans-serif;
}
h1 {
  text-align: left;
  font-size: 2.5rem;
  color: #111827;
  margin-top: 12px;
  font-family: "playwrite cz", sans-serif;
}

.img-block p {
  text-align: center;
  font-size: 2rem;
  color: #4b5563;
  margin-top: 8px;
  line-height: 80px;
  font-family: "playwrite cz", sans-serif;
}
.why-wrapper {
  margin-top: 18px;
  display: flex;
  align-items: stretch;
  gap: 32px;
}
#danang .hero-image {
  height: 500px;
  width: 1200px;
  margin: auto;
}
#danang .hero-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
#danang .paragraph {
  font-family: "courier new", monospace;
  font-size: 1.2rem;
  font-weight: 10000;
  font-style: bold;
  line-height: 1.8;
  color: #000000;
}
.why-list {
  flex: 1;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #d1d5db;
  padding: 14px 18px 14px 18px;
}

.why-item {
  padding: 10px 0;
  border-bottom: 1px dashed #e5e7eb;
}

.why-item:last-child {
  border-bottom: none;
}

.why-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.why-text {
  font-size: 0.87rem;
  color: #4b5563;
}

.why-image {
  flex: 1;
  border-radius: 18px;
  overflow: hidden;
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@font-face {
  font-family: "animalchariot"; /* tên bạn muốn đặt */
  src: url("/font/animal_chariot/Animal Chariot.ttf") format("truetype");
  font-weight: normal; /* hoặc bold nếu muốn */
  font-style: normal; /* hoặc italic nếu muốn */
}
.footer {
  margin-top: 100px;
  width: 100%;
  padding: 40px 60px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;

  background: rgba(54, 48, 48, 0.247);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(0, 0, 0, 0.637);
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0);

  box-shadow: 0 8px 30px rgba(160, 67, 67, 0.2); /* độ nổi */
  color: rgb(0, 0, 0);
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-col h3 {
  margin-bottom: 15px;
  font-size: 20px;
  border-bottom: 2px solid #fff;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.footer-col ul li {
  margin: 8px 0;
}

.footer-col ul li a {
  color: #00c8ff;
  text-decoration: none;
  transition: 0.2s ease;
}

.footer-col ul li a:hover {
  text-decoration: underline;
}
