.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Existing styles from previous examples */
#kingdoms-hero {
  background: linear-gradient(135deg, #f0e6d2, #e0c8a1);
  padding: 60px 0;
  text-align: center;
}

#kingdoms-hero h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-family: "Lora", serif;
}
#kingdoms-hero p {
  font-size: 1.1rem;
}

#kingdoms-list {
  padding: 60px 0;
}
#kingdoms-list h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  font-family: "Lora", serif;
}
.kingdom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.kingdom-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}
.kingdom-card:hover {
  transform: translateY(-5px);
}
.kingdom-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.kingdom-card h3 {
  padding: 15px;
  margin: 0;
  font-family: "Lora", serif;
}
.kingdom-card p {
  padding: 0 15px 15px 15px;
}
.learn-more-btn {
  display: inline-block;
  background-color: #e9a50d;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  margin: 15px;
  border-radius: 5px;
  transition: background-color 0.3s ease-in-out;
}
.learn-more-btn:hover {
  background-color: #d4940b;
}

.kingdoms-list-header {
  display: flex;
  flex-direction: column;
  justify-content: center; /* Center vertically */
  align-items: center; /* Center horizontally */
  text-align: center; /* Optional, to center text inside the container */
}

.kingdom-btn {
  display: inline-block;
  background-color: #e9a50d;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  width: fit-content;
  border-radius: 5px;
  transition: background-color 0.3s ease-in-out;
  text-align: center;
  font-size: large;
}

.kingdom-btn:hover {
  background-color: #d4940b;
}

.kingdom-detail {
  padding: 60px 0;
  display: none;
}
.kingdom-detail.active {
  display: block;
}
.kingdom-detail h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 30px;
  font-family: "Lora", serif;
}
.kingdom-details-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}
.kingdom-details-content p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  text-align: justify;
}
.kingdom-details-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-family: "Lora", serif;
  text-align: left;
}
.kingdom-details-content ul {
  text-align: left;
  padding-left: 20px;
}
.kingdom-details-content li {
  margin-bottom: 5px;
}
.map-image {
  width: 80%;
  max-width: 600px;
  height: auto;
  margin: 20px 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.back-to-kingdoms {
  display: block;
  background-color: #e9a50d;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  text-align: center;
  margin: 20px auto;
  max-width: 200px;
  transition: background-color 0.3s;
}
.back-to-kingdoms:hover {
  background-color: #d4940b;
}

footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}
