/* --- reset --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* --- page background --- */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #ffdff4;
  background-image: url("download (14).jpg");   /* your uploaded file name */
  background-repeat: repeat;           /* tile it across the page */
  background-size: auto;               /* keep original pixel size */
  color: #4a3243;
}

/* center the whole site with a max width */
.wrapper {
  max-width: 960px;
  margin: 0 auto;
  padding: 1rem;

  background: rgba(255, 248, 253, 0.9);
  border-radius: 24px;
  border: 2px solid #f7b7d7;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.9),
    0 10px 24px rgba(186, 99, 144, 0.22);
}


/* --- header --- */
.site-header {
 text-align: center;
  padding: 0;
  margin-bottom: 0.6rem;
  background: #ffeefb;
  border: 2px solid #f4a9cf;
  border-radius: 18px;
  box-shadow: 0 6px 0 #f09cc5;
  overflow: hidden; 
}

/* banner image */
.banner {
  width: 100%;
  display: block;
  border-radius: 16px;
}

/* --- three column layout --- */
.layout {
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}

/* column base styles */
.column {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

/* --- panels (boxes) --- */
.panel {
  background: #fffdfd;                 /* pale cream inside */
  border-radius: 18px;
  border: 2px solid #f7b7d7;           /* softer border */
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.9),  /* fake “highlight” edge */
    0 5px 0 #e78ab8;                      /* chunky shadow */
  padding: 0.8rem 0.9rem;
}
/* story buttons */
.story-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.7rem;
}

.story-button {
  display: inline-block;
  padding: 0.45rem 0.9rem;
  border-radius: 20px;
  background: linear-gradient(#ffe7f7, #ffd3ee);
  border: 2px solid #f4a9cf;
  color: #a63f75;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;

  /* add bubble glow */
  box-shadow:
    0 0 10px #ffd9f2aa,
    0 0 18px #ffd9f2aa,
    0 4px 0 #e58bb7;
  transition: all 0.15s ease;
}

.story-button:hover {
  transform: translateY(2px);
  box-shadow:
    0 0 6px #ffbde7aa,
    0 0 12px #ffbde7aa,
    0 2px 0 #e58bb7;
}


.story-button:hover {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #e58bb7;
}

.panel h2 {
  font-size: 1rem;
  text-transform: lowercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.4rem;
  color: #e5448b;
}

.panel p,
.panel li {
  font-size: 0.9rem;
  line-height: 1.6;
}
.panel p,
.panel li {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* cute pink links inside panels */
.panel a {
  color: #b4367a;
  text-decoration: none;
  border-bottom: 1px dotted #f3a7cd;
}

.panel a:hover {
  border-bottom-style: solid;
}
/* row of two small panels in the main column */
.panel-row {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}

.panel-row .panel {
  flex: 1;
}

/* visually a bit shorter */
.half-panel {
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}
/* special welcome box */
.welcome-panel {
  background: linear-gradient(#fff7fd, #ffe5f4);
}

/* update log */
.log-panel {
  background: #fff7fb;
}
/* left column profile box */
.profile-inner {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.profile-avatar {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid #f7b7d7;
}

.profile-text p {
  font-size: 0.85rem;
}

.profile-mood span {
  font-weight: 600;
  color: #d4387c;
}

/* status / to-do panels share same vibe */
.status-panel,
.todo-panel {
  background: #fffafc;
}


/* --- left navigation buttons --- */
.nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.3rem;
}
  
.nav-list a {
  display: block;
  text-decoration: none;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: linear-gradient(#ffeefb, #ffd4f0);
  border: 1px solid #f3a7cd;
  color: #8b2f66;
  font-size: 0.85rem;
  box-shadow: 0 3px 0 #e58bb7;
  text-align: left;
  letter-spacing: 0.03em;
  text-transform: lowercase;
  transition: transform 0.08s ease, box-shadow 0.08s ease;
}

.nav-list a:hover {
  transform: translateY(1px);
  box-shadow: 0 1px 0 #e58bb7;
}



/* --- footer --- */
.site-footer {
  text-align: center;
  font-size: 0.75rem;
  color: #7b4b68;
  padding: 0.4rem;
}
  
/* --- mobile tweak: stack columns --- */
@media (max-width: 800px) {
  .layout {
    grid-template-columns: 1fr;
  }
}
