* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#menu {
  width: 100%;
  height: 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 60px;
}

.logo {
  font-family: "animalchariot";
  font-size: 50px;
  font-weight: 900;
  color: black;
  list-style: none;
  cursor: pointer;
}

.nav {
  list-style: none;
  display: flex;
  gap: 60px;
  align-items: center;
}

.nav li a {
  text-decoration: none;
  color: black;
  font-family: "courgette";
  font-size: 26px;
  font-weight: 900;
  padding: 10px 15px;
  border-radius: 5px;
}

.nav li a:hover {
  color: rgb(95, 95, 107);
  transition: 0.3s;
}

.nav li a:hover {
  color: rgb(255, 146, 146);
  transition: 0.3s;
}

#bannerlist .tieude {
  position: relative;
  width: 60%;
  margin-left: 100px;
  margin-top: 100px;
}

#bannerlist .tieude h1 {
  white-space: nowrap;
  font-size: 80px;
  font-family: "animalchariot";
}

#bannerlist .tieude p {
  font-family: "courgette";
  font-size: 28px;
  margin-top: 20px;
  line-height: 1.5;
}

.button {
  position: relative;
  margin-top: 25px;
  margin-left: 90px;
  width: 200px;
  height: 55px;

  background: #ffffff;
  border-radius: 40px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);

  display: flex;
  justify-content: center;
  align-items: center;

  transition: 0.25s ease;
}

.button a {
  color: #000;
  font-family: "courgette";
  font-weight: bold;
  font-size: 22px;
  text-decoration: none;
}

.button:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.banner {
  margin-top: 50px;
  width: 90%;
  max-width: 80vw;
  height: 700px;
  position: relative;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  border: 5px 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ẹ */
  border-radius: 10px;
}

.slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 1.5s ease-in-out;
}

.slides img {
  width: 100%;
  flex-shrink: 0;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 15px;
  cursor: pointer;
  font-size: 25px;
  border-radius: 5px;
  z-index: 10;
}

.prev {
  left: 10px;
}
.next {
  right: 10px;
}

.prev:hover,
.next:hover {
  background: rgba(0, 0, 0, 0.8);
}

#sugest {
  margin-top: 100px;
}

#sugest h2 {
  text-align: center;
  font-family: "animalchariot";
  font-size: 45px;
}

.places {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.place-card {
  width: 330px;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  transition: 0.3s;
}

.place-card:hover {
  transform: scale(1.08);
}

.place-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.place-card-info {
  text-align: center;
  font-family: "Comic Relief";
  padding: 15px;
}

#food {
  width: 100%;
  margin-top: 70px;
  text-align: center;
}

#food h2 {
  font-family: "animalchariot";
  font-size: 45px;
  margin-bottom: 40px;
}

.food-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.food-card {
  width: 300px;
  height: 360px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.25);
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.4);
  transition: 0.3s;
  background: white;
}

.food-card:hover {
  transform: scale(1.05);
}

.food-card img {
  width: 100%;
  height: 65%;
  object-fit: cover;
}

.food-info {
  padding: 15px;
  font-family: "Comic Relief";
  font-weight: bold;
}

#culture {
  width: 100%;
  margin-top: 90px;
  text-align: center;
}

#culture h2 {
  font-family: "animalchariot";
  font-size: 45px;
  margin-bottom: 40px;
}

.culture-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.culture-card {
  width: 300px;
  height: 360px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.25);
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.4);
  transition: 0.3s;
  background: white;
}

.culture-card:hover {
  transform: scale(1.05);
}

.culture-card img {
  width: 100%;
  height: 65%;
  object-fit: cover;
}

.culture-info {
  padding: 15px;
  font-family: "Comic Relief";
  font-weight: bold;
}

#should {
  width: 90%;
  margin: 100px auto;
}

.mainshould {
  display: flex;
  justify-content: space-between;
  padding: 40px;
  border-radius: 12px;
  gap: 60px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.imageshould {
  width: 40%;
}

.imageshould img {
  width: 100%;
  border-radius: 10px;
}

.textshould {
  width: 50%;
  font-family: "Comic Relief";
}

.textshould h2 {
  font-size: 50px;
  margin-bottom: 20px;
}

.textshould li {
  margin: 15px 0;
  list-style: none;
}

#rate h2 {
  font-family: "courgette";
  text-align: center;
  font-size: 40px;
}

.mainreviewcard {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.reviewcard {
  width: 380px;
  padding: 20px;
  display: flex;
  gap: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
}

.reviewcard img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
}

.textrv {
  font-family: "Comic Relief";
}

@font-face {
  font-family: "animalchariot";
  src: url("/font/animal_chariot/Animal Chariot.ttf");
}

/* Mobile phones (small devices) */
@media (max-width: 600px) {
  #menu {
    width: 100%;
    flex-direction: column;
    height: auto;
    padding: 10px 0;
    gap: 10px;
  }

  .logo {
    margin-right: 0;
    font-size: 36px;
    text-align: center;
  }

  .nav {
    margin-right: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .nav li {
    margin: 6px;
    font-size: 18px;
  }

  .nav li a {
    font-size: 18px;
    padding: 6px 10px;
  }

  #bannerlist .tieude {
    position: static;
    top: auto;
    left: auto;
    padding: 18px;
    text-align: center;
  }

  #bannerlist .tieude h1 {
    font-size: 40px;
    line-height: 1.05;
  }

  #bannerlist .tieude p {
    font-size: 16px;
  }

  .button {
    position: static;
    margin: 18px auto;
    left: auto;
    top: auto;
    width: 140px;
    height: 44px;
    line-height: 44px;
  }

  .banner {
    margin-top: 20px;
    height: 380px;
    width: 95%;
  }

  .slides img {
    object-position: center;
  }

  #sugest .places {
    flex-direction: column;
    align-items: center;
  }

  #sugest .places .place-card {
    width: 92%;
    min-height: auto;
    margin: 12px 0;
  }

  #should .mainshould {
    flex-direction: column;
    padding: 18px;
  }

  #should .mainshould .textshould {
    width: 100%;
    font-size: 18px;
  }

  #should .mainshould .imageshould {
    width: 100%;
    margin-top: 16px;
  }

  #rate .mainreviewcard .reviewcard {
    width: 94%;
    height: auto;
    display: flex;
    gap: 12px;
    padding: 16px;
    flex-direction: row;
  }
}

/* Tablet devices */
@media (min-width: 601px) and (max-width: 1024px) {
  #menu {
    width: 95%;
    padding: 10px 0;
  }

  .logo {
    font-size: 42px;
    margin-right: 120px;
  }

  .nav li a {
    font-size: 20px;
    padding: 8px 12px;
  }

  #bannerlist .tieude h1 {
    font-size: 64px;
  }

  #bannerlist .tieude p {
    font-size: 22px;
  }

  .button {
    top: 320px;
    left: 40px;
    width: 140px;
    height: 46px;
  }

  .banner {
    height: 550px;
  }

  #sugest .places .place-card {
    width: 45%;
    min-height: 420px;
  }

  #should .mainshould {
    flex-direction: row;
  }
}

/* Desktop adjustments for very large screens */
@media (min-width: 1200px) {
  #bannerlist .tieude h1 {
    font-size: 120px;
  }

  .logo {
    font-size: 56px;
  }

  #sugest .places .place-card {
    width: 300px;
  }
}
.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;
}
