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

body {
  font-family: 'Inter', sans-serif;
  color: #3d3d3d;
  background-color: #fffaf5;
  line-height: 1.7;
}

/* Navigation */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
}

.logo {
  font-family: 'Lora', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #3d3d3d;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #6b6b6b;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #c17f59;
}

/* Hero */
#hero {
  text-align: center;
  padding: 5rem 2rem 4rem;
  max-width: 700px;
  margin: 0 auto;
}

#hero h1 {
  font-family: 'Lora', serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 1rem;
}

#hero p {
  font-size: 1.15rem;
  color: #7a7a7a;
  font-style: italic;
}

/* About Section */
#about {
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 2rem 4rem;
}

#about h2 {
  font-family: 'Lora', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 1.5rem;
}

#about p {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #4a4a4a;
}

/* Books Section */
#books {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}

#books h2 {
  font-family: 'Lora', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 2.5rem;
  text-align: center;
}

.books-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.book-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.book-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.book-card img {
  width: 100%;
  max-width: 220px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.book-card h3 {
  font-family: 'Lora', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 0.75rem;
}

.book-card p {
  font-size: 0.95rem;
  color: #5a5a5a;
  margin-bottom: 1.5rem;
}

.buy-button {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  background-color: #c17f59;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background-color 0.2s;
}

.buy-button:hover {
  background-color: #a96b48;
}

.book-details {
  font-size: 0.85rem;
  color: #8a8a8a;
  margin-bottom: 1.5rem;
}

/* Meet Maple Section */
#meet-maple {
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 2rem 4rem;
}

#meet-maple h2 {
  font-family: 'Lora', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 1.5rem;
}

#meet-maple h3 {
  font-family: 'Lora', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

#meet-maple p {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #4a4a4a;
}

/* Adventures Section */
#adventures {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}

#adventures h2 {
  font-family: 'Lora', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 1.5rem;
  text-align: center;
}

.section-intro {
  text-align: center;
  font-size: 1rem;
  color: #5a5a5a;
  margin-bottom: 2.5rem;
}

.adventure-card {
  display: flex;
  gap: 2rem;
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.adventure-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.adventure-card img {
  width: 180px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  align-self: flex-start;
}

.adventure-content h3 {
  font-family: 'Lora', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 0.75rem;
}

.adventure-content p {
  font-size: 0.95rem;
  color: #5a5a5a;
  margin-bottom: 1rem;
}

.why-maple {
  background: #fdf5ee;
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
  text-align: center;
}

.why-maple h3 {
  font-family: 'Lora', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 1rem;
}

.why-maple p {
  font-size: 0.95rem;
  color: #5a5a5a;
  margin-bottom: 0.75rem;
}

.why-maple p:last-child {
  margin-bottom: 0;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  border-top: 1px solid #efe6dd;
  color: #9a9a9a;
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 640px) {
  #hero h1 {
    font-size: 2rem;
  }

  .books-grid {
    grid-template-columns: 1fr;
  }

  .adventure-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .adventure-card img {
    width: 160px;
  }

  nav {
    padding: 1rem 1.5rem;
  }

  .nav-links {
    gap: 1rem;
    font-size: 0.85rem;
  }
}
