

/* Soft organic background pattern using SVG */
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background: url('../images/bg-pattern.svg') repeat;
  background-size: 800px 800px;
  color: #2e2e2e;
}

}
header {
  background-color: #eaf4ea;
  padding: 15px;
  text-align: center;
}
.logo {
  height: 60px;
}
nav a {
  margin: 0 15px;
  color: #2d4a27;
  text-decoration: none;
  font-weight: bold;
}
.hero {
  text-align: center;
  background: #eef9f0;
  padding: 60px 20px;
}
.cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #d6a500;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}
.book-showcase {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 40px 20px;
  flex-wrap: wrap;
}
.book img {
  width: 150px;
  height: auto;
  transition: transform 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.book img:hover {
  transform: scale(1.05);
}
footer {
  text-align: center;
  background-color: #eaf4ea;
  padding: 20px;
  font-weight: bold;
}


/* FINAL HEADER FIX */

/* FINAL HEADER FIX for perfect centering on all pages */
.site-header {
  background-color: #eaf4ea;
  padding: 20px 0 10px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.site-header img.logo {
  height: 60px;
  margin-bottom: 10px;
}

.site-header nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.site-header nav a {
  color: #2d4a27;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
}


/* Form Styling Fix */

.form-box {
  background-color: #fffdf4;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  display: inline-block;
  text-align: left;
  margin-top: 20px;
  max-width: 400px;
  width: 100%;
}

.form-box label {
  display: block;
  margin-bottom: 12px;
  font-weight: 500;
  color: #2e2e2e;
}

.form-box input,
.form-box textarea {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: 'Segoe UI', sans-serif;
  font-size: 16px;
  box-sizing: border-box;
}

.button-yellow {
  background-color: #d6a500;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}


/* Center Contact Form Box */

.form-box {
  margin-left: auto;
  margin-right: auto;
}


/* Center .content-container layout */

.content-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
  font-size: 18px;
  line-height: 1.8;
}
