body {
  background: #fff;
  font-size: 0.875em;
  font-family: monospace;
  padding: 0;
  margin: 0;
  background: linear-gradient(rgb(251, 220, 220, 0.15), rgb(251, 220, 220, 0.15)), 
              url("/cinnamonbird_cairoovercoat_roxy2alt.png");
}

.header-box {
  width: 100%;
  height: 150px; /* banner height */
  background-image: url("/Banner.svg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ff2190; /* hot pink text */
  font-size: 2.8rem;
  -webkit-text-stroke: 2px white; /* white border around text */
  font-weight: bold;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}

.wrapper {
  display: flex;            /* main row: left, center, right */
  justify-content: center;
  align-items: flex-start;
  gap: 1em;                 /* spacing between columns */
  background: none;
  width: 870px;
  margin: 0 auto;
}

.tagline {
  background: linear-gradient(
    rgb(251, 220, 220, 0.75),
    rgb(251, 220, 220, 0.75)
  );
  text-align: center;
  font-style: italic;
  font-size: 1em;
  color: #4f3d46;
  padding: 0.5em;
  margin: 0 0 1em 0; /* separates it from content below */
  border: 3px double #333;
}

.sidebar-left, .sidebar-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* keep boxes at the top */
  gap: 1em;
  width: 175px;
}

.main {
  display: flex;            /* make the main column a flex container */
  flex-direction: column;   /* stack boxes vertically */
  gap: 1em;                 /* space between each box */
  width: 500px;
  margin: 0;                /* Flexbox handles spacing */
}

.wrapper, .links a {
  color: #4f3d46;
}

.box {
  border: 3px double #333;
  background: #fff;
  padding: 0;
}

.header {
  border: 3px double #333;
  background: linear-gradient(rgb(251, 220, 220, 0.75), rgb(251, 220, 220, 0.75));
  text-align: center;
  margin-top: 15px;
  top: 0;
  height: auto;
}

.links {
  margin-top: 1em;
}

.inner.links {
  display: block;       /* makes each link a block element */
  margin-bottom: 0.5em; /* spacing below each link */
  padding-bottom: 1em;
}

.title {
  display: none;
}

.footer {
  height: auto; /* allow footer content */
  text-align: center;
  margin-top: 1em;
}

.box h1, .box h2, .box h3, .box h4 {
  background: #facbd8;
  margin: 0;
  padding: 0.35em 0.25em 0.3em 0.25em;
  text-align: center;
  border-bottom: 3px double #333;
}

.inner {
  padding: 0.25em 1em 0.3em 1em;
  font-size: 1.075em;
}

.archive-item {
  margin-bottom: 8px;
  list-style: none;
}

.archive-item a {
  text-decoration: none;
  color: #333;
  transition: background-color 0.2s ease, color 0.2s ease;
  padding: 4px 6px;
  border-radius: 6px;
}

.archive-item a:hover {
  background-color: #ffe6f0; /* soft pink highlight */
  color: #ff3399;           /* brighter pink text */
}

.archive-item a strong {
  color: #ff66b2; /* pink date highlight */
}

/* Post container */
.post {
  background: #fff; /* clean white background */
  border: 2px solid #ffcce0; /* soft pink border */
  padding: 20px;
  margin-bottom: 25px;
  border-radius: 10px;
  max-width: 650px; /* keeps it aligned with central column */
  box-shadow: 0 2px 5px rgba(255, 182, 193, 0.2);
  font-family: Arial, sans-serif; /* simple font */
}

/* Title */
.post-title {
  font-size: 1.6em;
  color: #333;
  margin-top: 0;       /* removes extra space above */
  margin-bottom: 8px;  /* keeps a little gap below */
}

/* Date line */
.post-date {
  font-size: 0.9em;
  color: #cc6699; /* softer pink */
  font-style: italic;
  margin-bottom: 12px;
}

/* Categories (main labels) */
.post-categories {
  margin-bottom: 12px;
}

.post-categories .category {
  display: inline-block;
  background: #ffe6f0;
  color: #ff3399;
  font-weight: bold;
  padding: 5px 10px;
  margin: 0 6px 6px 0;
  border-radius: 8px;
}

/* Content */
.post-content {
  line-height: 1.6;
  color: #444;
  margin-bottom: 15px;
}

/* Hashtags */
.post-meta {
  border-top: 1px solid #ffcce0;
  padding-top: 10px;
  margin-top: 15px;
  text-align: left;
}

.post-meta .hashtag {
  display: inline-block;
  color: #ff99cc;
  margin: 0 6px;
  font-style: italic;
  cursor: pointer;
}
  
.filter-buttons {
  margin: 8px 0;
  text-align: center;
}

.filter-buttons button {
  background-color: #fbdcdc; /* softer blush pink */
  border: 2px solid #f7a8b8; /* rose pink border */
  border-radius: 12px; /* smaller rounded corners */
  padding: 4px 8px; /* smaller size */
  margin: 3px;
  font-family: 'Baloo 2', cursive; /* cute rounded font */
  font-size: 0.8rem; /* smaller text */
  color: #4f3d46; /* deep plum for contrast */
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 1px 1px 3px rgba(0,0,0,0.15); /* soft shadow */
}

.filter-buttons button:hover {
  background-color: #f7a8b8; /* rose pink hover */
  border-color: #c97a8c; /* dusty mauve border */
  transform: scale(1.05);
}

.filter-buttons button:active {
  background-color: #c97a8c; /* mauve when clicked */
  border-color: #4f3d46; /* deep plum border */
}

/* Cute Search Bar with Icon */
#searchBox {
  display: block;              /* allows margin auto centering */
  margin: 20px auto;           /* centers horizontally */
  width: 60%;                  /* a bit narrower */
  padding: 8px 35px 8px 15px;  /* slimmer height, space for icon */
  border: 2px solid #ffb6c1;
  border-radius: 25px;
  font-family: 'Baloo 2', cursive, sans-serif;
  font-size: 15px;             /* slightly smaller text */
  outline: none;
  background: linear-gradient(90deg, #ffe4ec, #e6d6f5);
  color: #4f3d46;
  transition: all 0.3s ease;

  /* Magnifying glass icon */
  background-image: url('https://cdn-icons-png.flaticon.com/512/622/622669.png');
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: right 12px center;
}

#searchBox:focus {
  border-color: #ff69b4;
  box-shadow: 0 0 8px #ff69b4;
}

#searchBox::placeholder {
  color: #d87093;
  font-style: italic;
}

/* Narrow screens */
@media(max-width:880px) {
  .wrapper {
    flex-direction: column; /* stack vertically */
    width: calc(340px + 50vw);
  }
  .sidebar-left, .sidebar-right {
    width: 160px;
  }
  .main {
    width: 50vw;
  }
  .header-box {
    font-size: clamp(1.4rem, 6vw, 2.2rem);
    text-align: center;
    line-height: 1.2;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

 

/* Mobile portrait */
@media(orientation:portrait) {
  .wrapper {
    flex-direction: column;
    width: 96vw;
    margin: 0 auto;
    padding:0;
    position: relative;
  }
  .wrapper-2 {
    width: 94vw;
    margin: 0 auto;
    padding:0;
    position: relative;
  }
  .sidebar-left, .main, .sidebar-right {
    position: relative;
    width: 92vw;
    margin: 0.25rem 1vw;
  }
  .header-box {
    font-size: clamp(1.2rem, 8vw, 2rem);
    line-height: 1.3;
    text-align: center;
    word-wrap: break-word;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
  }
}

