/* === Base Reset === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Quicksand', sans-serif;
  background-color: #fff0f5;
  color: #5c4b51;
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

/* === Header === */
header {
  background: linear-gradient(to right, #ffcce0, #ffeaf4);
  text-align: center;
  padding: 2.5rem 1rem;
  border-bottom: 3px dashed #ffb6d9;
  box-shadow: 0 4px 10px rgba(255, 182, 193, 0.2);
}

header h1 {
  font-size: 2.8rem;
  color: #d14994;
}

.subtitle {
  font-size: 1.1rem;
  color: #b37598;
  margin-top: 0.5rem;
}

/* === Post Container === */
.post-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
  flex: 1;
  overflow-y: auto;
}

/* === Post Article === */
.post {
  background-color: #fffaff;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(255, 182, 193, 0.2);
  border: 2px dashed #ffd6ec;
}

/* === Post Metadata === */
.post-date {
  font-size: 0.9rem;
  color: #a88e9f;
  margin-bottom: 1rem;
}

/* === Title & Content === */
.post-title {
  font-size: 1.8rem;
  color: #d85ba1;
  margin-bottom: 1rem;
}

.post-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  margin: 1.5rem 0;
  box-shadow: 0 6px 16px rgba(255, 182, 193, 0.3);
}

.post-content p {
  margin-bottom: 1.2rem;
  color: #5e4a54;
  font-size: 1.05rem;
}

/* === Signature === */
.post-signature {
  font-size: 1.1rem;
  margin-top: 2rem;
  text-align: right;
  color: #c07a9e;
  font-style: italic;
}

/* === Footer === */
footer {
  text-align: center;
  padding: 1rem;
  background-color: #ffe0ef;
  color: #a85b87;
  font-size: 0.9rem;
  border-top: 2px dashed #ffcce0;
}

/* === Mobile Friendly === */
@media (max-width: 600px) {
  .post-title {
    font-size: 1.4rem;
  }

  .post-content p {
    font-size: 1rem;
  }

  header h1 {
    font-size: 2.2rem;
  }
}
