@import url('https://fonts.googleapis.com/css2?family=Reenie+Beanie&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bonbon&display=swap');

body {
  background-color: #fdf0e6;       /* warm beige background */
  color: #5c3a21;                  /* mocha brown for body text */
  font-size: 20px;
  font-family: 'Reenie Beanie', cursive;
  font-weight: 500;
  padding: 40px;
  line-height: 1.8;
  margin: 0;
}

.page-wrapper {
  display: flex;
  max-width: 1000px;
  margin: 40px auto;
  gap: 40px;
  padding: 0 20px;
}

.description {
  flex: 0 0 280px;
  height: 280px;
  background-color: #f4d4d7;
  border: 3px dashed #d499a3;
  border-radius: 20px;
  padding: 30px 15px;
  box-shadow: 0 0 20px rgba(212, 153, 163, 0.3);
  box-sizing: border-box;

  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.description h2 {
  font-family: 'Bonbon', cursive;
  color: #de598a;
  margin-bottom: 0.5em;
}

.description p {
  font-size: 18px;
  color: #5c3a21;
  line-height: 1.6;
  margin: 0;
}

.posts {
  flex: 1;
}

.posts h1 {
  font-family: 'Bonbon', cursive;
  color: #de598a;
  font-size: 3em;
  margin-bottom: 1em;
  text-align: left;
}

/* Bio styling */
.bio {
  max-width: 700px;
  margin-bottom: 3em;
  font-family: 'Reenie Beanie', cursive;
  font-size: 21px;
  color: #5c3a21;
  line-height: 1.8;
  padding: 20px;
  background-color: #fff0f2;
  border-radius: 15px;
  border: 2px solid #d499a3;
  box-shadow: 0 0 15px rgba(212, 153, 163, 0.2);
}

.post {
  max-width: 700px;
  margin-bottom: 2em;
  padding: 15px 20px;
  background-color: #f9e9ec;
  border-radius: 15px;
  border: 2px solid #d499a3;
  box-shadow: 0 0 10px rgba(212, 153, 163, 0.2);
}

.post h3 {
  font-family: 'Bonbon', cursive;
  color: #de598a;
  margin-bottom: 0.3em;
}

.post p:first-of-type {
  font-style: italic;
  font-size: 0.9em;
  color: #7a5c4d;
  margin-top: 0;
  margin-bottom: 0.8em;
}

.post p:not(:first-of-type) {
  font-family: 'Reenie Beanie', cursive;
  font-size: 20px;
  line-height: 1.7;
  color: #5c3a21;
  text-shadow: 0 0 3px rgba(181, 126, 70, 0.4);
}

/* Responsive: stack on small screens */
@media (max-width: 700px) {
  .page-wrapper {
    flex-direction: column;
    max-width: 90%;
  }
  
  .description {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
  }
  
  .posts {
    width: 100%;
  }
  
  .posts h1 {
    font-size: 2em;
  }
  
  .post p {
    font-size: 20px;
  }
}

