* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

/* BODY BACKGROUND IMAGE FIXED */
body {
  color: #333;
  line-height: 1.6;
  background-image: url("image/20230703_160551_f036a4c1_w1920.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Hero Section */
.hero {
  height: 85vh;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
  url("https://upload.wikimedia.org/wikipedia/commons/6/6d/Kiyomizu-dera_in_Kyoto.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.hero-text h1 {
  font-size: 50px;
}

.hero-text p {
  font-size: 22px;
  margin-top: 10px;
}

/* Navbar */
.navbar {
  background: #1e3c72;
  display: flex;
  justify-content: center;
  padding: 15px;
}

.navbar a {
  color: white;
  margin: 0 20px;
  text-decoration: none;
  font-weight: bold;
}

.navbar a:hover {
  text-decoration: underline;
}

/* Sections */
.section {
  padding: 60px 10%;
}

.section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #3d4b61;
}

.section.light {
  background: white;
}

/* Travel section text color fix */
.travel-section h2,
.travel-section ul li {
  color: aliceblue;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.card {
  background: #fdfdfd;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(180, 135, 135, 0.1);
}

.card h3 {
  margin-bottom: 10px;
  color: #525e85;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

/* List */
ul {
  list-style: none;
}

ul li {
  margin-bottom: 10px;
  font-size: 18px;
  color: antiquewhite;
}

/* Footer */
.footer {
  background: #1e3c72;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 36px;
  }
}