@charset "UTF-8";
/* CSS Document */

body {
  margin: 0;
  padding: 0;
  font-family: Baskerville, "Palatino Linotype", Palatino, "Times New Roman", serif;
  background-color:#FDFDF5; /* off white background */
  color: #1F1F1F; /* dark text */
}

main {
  max-width: 1100px;
  margin: 0 auto;  /* helps center */
  padding: 30px 18px;
}

h1, h2, h3 {
  font-weight: normal;
  letter-spacing: 0.5px;
}

h1 {
  font-size: 42px;
  margin: 0 0 15px 0;
}

h2 {
  font-size: 28px;
  margin: 28px 0 10px 0;
}

p {
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 14px 0;
}

a {
  color:#1B4718; /* green */
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

hr {
  border: none;
  border-top: 1px solid #FFB1CE;
  margin: 28px 0;
}

.center-text {
  text-align: center;
}

/* hero image */
.hero-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid #FFB1CE;
}

.pricing-container {
  border-radius: 10px;
  border: 2px solid #FFB1CE;
  padding-left: 20px;
  padding-bottom: 20px;
  
}

/* inspo section */

.inspiration-section {
  padding: 60px 20px;
  background-color: #FFFDF8;
  text-align: center;
}

.section-header h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.section-header p {
  max-width: 700px;
  margin: 0 auto 25px auto;
}

.blog-button {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid #E6D8BD;
  border-radius: 17px;
  background-color: #FFF4DE;
  color: #1F1F1F;
}

.inspiration-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.inspiration-item {
  border: 2px solid #E6D8BD;
  padding: 20px;
  border-radius: 10px;
  background-color: #FFFFFF;
}
 
/* faq section */

.faq-section {
padding: 60px 20px;
max-width: 900px;
margin: auto;
}

.faq-item {
margin-bottom: 25px;
}

.faq-item h3 {
font-size: 20px;
margin-bottom: 8px;
}

/* responsive word content */
@media (max-width: 768px) {
  h1 { font-size: 34px; }
  p { font-size: 17px; }
}
