/* -------------------- RESET -------------------- */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #222;
  line-height: 1.6;
}

/* -------------------- FONT CUSTOM -------------------- */
@font-face {
  font-family: "animalchariot";
  src: url("/font/animal_chariot/Animal Chariot.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

/* -------------------- HEADER -------------------- */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  border-bottom: 1px solid #eee;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  font-size: 30px;
  font-weight: bold;
  font-family: "courgette";
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: black;
  font-size: 20px;
  font-family: "courgette";
}

/* -------------------- HERO -------------------- */
.hero {
  padding: 6px 50px;
}

.hero h1 {
  font-size: 44px;
  margin-bottom: 20px;
  font-family: "playwrite cz", sans-serif;
}

.hero p {
  max-width: 6000px;
}

.hero button {
  margin-top: 20px;
  padding: 12px 24px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.hero img {
  width: 1300px;
  height: 900px;

  border-radius: 12px;
  object-fit: cover;
  margin: 30px;
}

/* -------------------- SECTION -------------------- */
section {
  padding: 0px;
}

section h2 {
  font-size: 40px;
  margin-bottom: 2px;
  font-weight: 700;
  font-family: "playwrite cz", sans-serif;
  text-align: center;
}

/* -------------------- CARD GRID -------------------- */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  gap: 40px;
  padding: 20px 40px;
}

.card {
  width: 420px;
  background: #fff;
  padding: 10px;
  margin: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card img {
  width: 350px;
  height: 500px;
  object-fit: cover;
  border-radius: 30px;
  transition: transform 0.4s ease;
}

.card:hover img {
  transform: scale(1.08);
}

.card h3 {
  margin: 13px 0 6px;
  font-size: 18px;
  font-family: "playwrite cz", sans-serif;
}

.card p {
  font-size: 16px;
  color: #817e7e;
}

/* -------------------- RESPONSIVE -------------------- */
@media (max-width: 900px) {
  .grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .grid {
    grid-template-columns: 1fr;
  }

  header {
    flex-direction: column;
    gap: 10px;
  }
}
@media screen {
  .hero img {
    width: 100%;
    height: auto;
    margin: auto;
  }
}
.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;
}
