body {
    background-color: #FFDB58;  /* mustard yellow */
    color: #3f2f2f;             /* soft dark brown */
    font-family: "Georgia", "Times New Roman", serif;
    line-height: 1.7;
    margin: 0;
    padding: 0;
}

/* Main content container */
.container {
    max-width: 700px;
    margin: 120px auto 40px auto; /* move container down from top */
    padding: 40px 30px;
    background-color: #fdfaf5;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    position: relative; /* ensures z-index ordering if needed */
}

/* Headings */
h1, h2, h3 {
    color: #7f5539; /* warm brown for headers */
}

/* Links */
a {
    color: #c47a3d;
    text-decoration: none;
}

a:hover {
    color: #a8612a;
    text-decoration: underline;
}

/* Images inside container */
.container img {
    max-width: 100%;
    border-radius: 8px;
    margin: 20px 0;
}

.fireside-room {
    position: absolute;
    right: 4%;          /* closer to the container */
    top: 180px;         /* align with content */
    width: 280px;       /* 🔥 bigger image */
    max-width: 35vw;    /* responsive on smaller screens */
    border-radius: 16px;
    opacity: 0.95;
    pointer-events: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    z-index: 10;   /* Key to showing the image*/
}

.back-link {
  display: inline-block;
  margin-bottom: 24px;
  font-size: 0.9em;
  font-style: italic;
  color: #c47a3d;
  text-decoration: none;
}

.back-link:hover {
  text-decoration: underline;
  color: #a8612a;
}

.post-nav {
  margin-top: 48px;
  display: flex;
  justify-content: space-between;
  font-size: 0.9em;
}

.post-nav a {
  color: #c47a3d;
  text-decoration: none;
}

.post-nav a:hover {
  text-decoration: underline;
}
