

/* -------------------------------------------------------- */
/* VARIABLES */
/* -------------------------------------------------------- */

/* Variables are used like this: var(--text-color) */
:root {
  /* Background Colors: */
  --background-color: #eea8d7;
  --content-background-color: #ffd9f1;
  --sidebar-background-color: #ffd9f1;
  

  /* Text Colors: */
  --text-color: #000000;
  --sidebar-text-color: #000000;
  --link-color: #3026e8;
  --link-color-hover: #7780ec;

  /* Text: */
  --font: "Edu SA Beginner", cursive;
  --heading-font: "Crafty Girls", cursive;
  --font-size: 14px;
  

  /* Other Settings: */
  --margin: 10px;
  --padding: 20px;
  --border: 2px solid #000000;
  --round-borders: 0px;
  --sidebar-width: 200px;
}

.crafty-girls-regular {
  font-family: "Crafty Girls", cursive;
  font-weight: 400;
  font-style: normal;
}

/* -------------------------------------------------------- */
/* BASICS */
/* -------------------------------------------------------- */
/* Cute Cherry - https://www.cursors-4u.com/cursor/cute-cherry */
* {
  cursor: url('https://cdn.cursors-4u.net/previews/cute-cherry-fd9a5505-32.webp') 32 32, auto !important;
}
/* End www.Cursors-4U.com Code */

* {
  box-sizing: border-box;
}

body {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 100vh;
  font-size: var(--font-size);
  margin: 0;
  padding: var(--margin);
  color: var(--text-color);
  font-family: var(--font);
  line-height: 1.2;
  background: var(--background-color);
  background-image: url("http://dl4.glitter-graphics.net/pub/2080/2080324f7c521qp7z.gif");
  
}

::selection {
  /* (Text highlighted by the user) */
  background: rgba(0, 0, 0, 0.2);
}

mark {
  /* Text highlighted by using the <mark> element */
  text-shadow: 1px 1px 4px var(--link-color);
  background-color: inherit;
  color: var(--text-color);
}

/* Links: */
a {
  text-decoration: underline;
}

a,
a:visited {
  color: var(--link-color);
}

a:hover,
a:focus {
  color: var(--link-color-hover);
  text-decoration: none;
}

/* -------------------------------------------------------- */
/* LAYOUT */
/* -------------------------------------------------------- */

.layout {
  width: 1000px;
  display: grid;
  grid-gap: var(--margin);
  grid-template: "header header" auto "leftSidebar main" auto "footer footer" auto / var(--sidebar-width) auto;
  /* Confused by the grid? Check out my tutorial: https://petrapixel.neocities.org/coding/positioning-tutorial#grid */
}

main {
  grid-area: main;
  overflow-y: auto;
  padding: var(--padding);
  background: var(--content-background-color);
  border: var(--border);
  border-radius: var(--round-borders);
}

/* -------------------------------------------------------- */
/* HEADER */
/* -------------------------------------------------------- */

header {
  grid-area: header;
  font-size: 1.2em;
  border: var(--border);
  border-radius: var(--round-borders);
  background: var(--content-background-color);
}

.header-content {
  padding: var(--padding);
  display: flex;
  flex-direction: column;
  align-items:center;
  text-align: center;
}

.header-title {
  font-family: var(--heading-font);
  font-size: 1.5em;
  font-weight: bold;
}

.header-image img {
  width: 100%;
  height: auto;
}

.blog-banner {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto 15px;
}

  

/* -------------------------------------------------------- */
/* SIDEBARS */
/* -------------------------------------------------------- */

aside {
  grid-area: aside;
  border: var(--border);
  border-radius: var(--round-borders);
  overflow: hidden;
  background: var(--sidebar-background-color);
  padding: var(--padding);
  color: var(--sidebar-text-color);
}

.left-sidebar {
  grid-area: leftSidebar;
}

.right-sidebar {
  grid-area: rightSidebar;
}

.sidebar-title {
  font-weight: bold;
  font-size: 1.2em;
  font-family: var(--heading-font);
}

.sidebar-section:not(:last-child) {
  margin-bottom: 3em;
}

.sidebar-section ul,
.sidebar-section ol {
  padding-left: 1.5em;
}

.updates-box {
  max-height: 100px;
  overflow-y: scroll;

  padding: 10px;

  background: #fff7f9;
  border: 1px solid #c47b91;
  border-radius: 8px;
}

.update-entry {
  padding-bottom: 10px;
  margin-bottom: 10px;

  border-bottom: 1px dashed #c47b91;
}

.update-entry:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.update-entry p {
  margin: 4px 0 0;
}

.sidebar-section > *:not(p):not(ul):not(ol):not(blockquote) {
  margin-top: 10px;
}

/* Sidebar Blockquote: */

.sidebar-section blockquote {
  background: rgba(0, 0, 0, 0.1);
  padding: 15px;
  margin: 1em 0;
  border-radius: 10px;
  overflow: hidden;
}

.sidebar-section blockquote > *:first-child {
  margin-top: 0;
}

.sidebar-section blockquote > *:last-child {
  margin-bottom: 0;
}

/* Site Button: */

.site-button {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.site-button textarea {
  font-family: monospace;
  font-size: 0.7em;
}


/* -------------------------------------------------------- */
/* FOOTER */
/* -------------------------------------------------------- */

footer {
  grid-area: footer;
  border: var(--border);
  border-radius: var(--round-borders);
  overflow: hidden;
  font-size: 0.75em;
  padding: 15px;
  background: var(--content-background-color);
  display: flex;
  justify-content: center;
}

footer a,
footer a:visited {
  color: var(--link-color);
}

footer a:hover,
footer a:focus {
  color: var(--link-color-hover);
}

/* -------------------------------------------------------- */
/* NAVIGATION */
/* -------------------------------------------------------- */

nav {
  margin-bottom: 3em;
}

nav .sidebar-title {
  margin-bottom: 0.5em;
}

nav ul {
  margin: 0 -5px;
  padding: 0;
  list-style: none;
  user-select: none;
}

nav ul li {
  margin-bottom: 0;
}

nav > ul li > a,
nav > ul li > strong {
  display: inline-block;
}

nav > ul li > a,
nav > ul li > details summary,
nav > ul li > strong {
  padding: 5px 10px;
}

nav > ul li > a.active,
nav > ul li > details.active summary {
  font-weight: bold;
}

nav ul summary {
  cursor: pointer;
}

nav ul ul li > a {
  padding-left: 30px;
}

/* NAVIGATION IN HEADER */

header nav {
  margin-bottom: 0;
}

header nav ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}

header nav ul li {
  position: relative;
}

header nav ul li:first-child > a {
  padding-left: 0;
}

header nav ul li:last-child > a {
  padding-right: 0;
}

/* Subnavigation (Drop-Down): */

header nav ul ul {
  background: var(--content-background-color);
  display: none;
  position: absolute;
  top: 100%;
  left: 10px;
  padding: 0.5em;
  z-index: 1;
  border: var(--border);
  min-width: 100%;
  box-shadow: 0px 1px 5px rgba(0,0,0,0.2);
}

header nav ul li:hover ul,
header nav ul li:focus-within ul {
  display: block;
}

header nav ul li strong {
  color: var(--link-color);
  text-decoration: underline;
  font-weight: normal;
}

header nav ul ul li a {
  display: block;
  padding-left: 0;
  padding-right: 0;
}

/* -------------------------------------------------------- */
/* CONTENT */
/* -------------------------------------------------------- */

main {
  line-height: 1.5;
}

main a,
main a:visited {
  color: var(--link-color);
}

main a:hover,
main a:focus {
  color: var(--link-color-hover);
  text-decoration-style: wavy;
}

main p,
main .image,
main .full-width-image,
main .two-columns {
  margin: 0.75em 0;
}

main ol,
main ul {
  margin: 0.5em 0;
  padding-left: 1.5em;
}

main ol li,
main ul li {
  margin-bottom: 0.2em;
  line-height: 1.3;
}

main ol {
  padding-left: 2em;
}

main blockquote {
  background: rgba(0, 0, 0, 0.1);
  padding: 15px;
  margin: 1em 0;
  border-radius: 10px;
}

main pre {
  margin: 1em 0 1.5em;
}

main code {
  text-transform: none;
}

main center {
  margin: 1em 0;
  padding: 0 1em;
}

main hr {
  border: 0;
  border-top: var(--border);
  margin: 1.5em 0;
}

/* HEADINGS: */

main h1,
main h2,
main h3,
main h4,
main h5,
main h6 {
  font-family: var(--heading-font);
  margin-bottom: 0;
  line-height: 1.5;
}

main h1:first-child,
main h2:first-child,
main h3:first-child,
main h4:first-child,
main h5:first-child,
main h6:first-child {
  margin-top: 0;
}

main h1 {
  font-size: 1.5em;
}

main h2 {
  font-size: 1.4em;
}

main h3 {
  font-size: 1.3em;
}

main h4 {
  font-size: 1.2em;
}

main h5 {
  font-size: 1.1em;
}

main h6 {
  font-size: 1em;
}

/* COLUMNS: */

.two-columns {
  display: flex;
}

.two-columns > * {
  flex: 1 1 0;
  margin: 0;
}

.two-columns > *:first-child {
  padding-right: 0.75em;
}

.two-columns > *:last-child {
  padding-left: 0.75em;
}

.current-events-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.current-events-header img {
  width: 80px;
  height: auto;
  flex-shrink: 0;
}

.current-events-header h4 {
  margin: 0;
}

/* =========================================
   ABOUT ME PAGE
   ========================================= */

.about-page {
  width: 90%;
  max-width: 900px;
  margin: 30px auto;
}

.about-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-card {
  padding: 25px;

  background: #f8cbd7;
  border: 2px solid #9b5368;
  border-radius: 12px;

  box-shadow: 4px 4px 0 #e7a9ba;
}

.about-card h1,
.about-card h2,
.about-card h3 {
  font-family: var(--heading-font);
}

.about-card h1,
.about-card h2 {
  text-align: center;
  margin-top: 0;
}

.about-intro {
  display: flex;
  align-items: flex-start;
  gap: 22px;
}

.about-photo {
  width: 220px;
  max-width: 40%;
  height: auto;

  border: 2px solid #9b5368;
  border-radius: 10px;
}

.about-text {
  flex: 1;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.about-mini-card {
  padding: 16px;

  background: #fff7f9;
  border: 1px solid #c47b91;
  border-radius: 10px;
}

.about-mini-card h3 {
  margin-top: 0;
  color: #8b3f58;
}

.about-footer {
  width: fit-content;
  max-width: 90%;

  margin: 30px auto;
  padding: 12px 22px;

  background: #f8cbd7;
  border: 2px solid #9b5368;
  border-radius: 8px;

  text-align: center;
}

@media screen and (max-width: 700px) {

  .about-intro {
    flex-direction: column;
    align-items: center;
  }

  .about-photo {
    max-width: 100%;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

}


/* -------------------------------------------------------- */
/* CONTENT IMAGES */
/* -------------------------------------------------------- */

.image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
}

.full-width-image {
  display: block;
  width: 100%;
  height: auto;
}

.images {
  display: flex;
  width: calc(100% + 5px + 5px);
  margin-left: -5px;
  margin-right: -5px;
}

.images img {
  width: 100%;
  height: auto;
  padding: 5px;
  margin: 0;
  overflow: hidden;
}

/* -------------------------------------------------------- */
/* ACCESSIBILITY */
/* -------------------------------------------------------- */

/* please do not remove this. */

#skip-to-content-link {
  position: fixed;
  top: 0;
  left: 0;
  display: inline-block;
  padding: 0.375rem 0.75rem;
  line-height: 1;
  font-size: 1.25rem;
  background-color: var(--content-background-color);
  color: var(--text-color);
  transform: translateY(-3rem);
  transition: transform 0.1s ease-in;
  z-index: 99999999999;
}

#skip-to-content-link:focus,
#skip-to-content-link:focus-within {
  transform: translateY(0);
}

/* -------------------------------------------------------- */
/* MOBILE RESPONSIVE */
/* -------------------------------------------------------- */

/* CSS Code for devices < 800px */
@media (max-width: 800px) {
  body {
    font-size: 14px;
  }

  .layout {
    width: 100%;
    grid-template: "header" auto  "leftSidebar" auto "main" auto "footer" auto / 1fr;
    /* Confused by the grid? Check out my tutorial: https://petrapixel.neocities.org/coding/positioning-tutorial#grid */
  }

  
  .right-sidebar { 
    display: none;
  }

  aside {
    border-bottom: 1px solid;
    padding: 9px;
    font-size: 0.9em;
  }

  
  nav {
    padding: 0;
  }

  nav > ul {
    padding-top: 0.5em;
  }

  nav > ul li > a,
  nav > ul li > details summary,
  nav > ul li > strong {
    padding: 0.5em;
  }

  main {
    max-height: none;
    padding: 15px;
  }

  .images {
    flex-wrap: wrap;
  }

  .images img {
    width: 100%;
  }

  #skip-to-content-link {
    font-size: 1rem;
  }
}

/* -------------------------------------------------------- */
/* Blog Stuff*/
/* -------------------------------------------------------- */

.blog-page {
  width: 90%;
  max-width: 900px;
  margin: 30px auto;
}

.blog-header {
  text-align: center;
  padding: 25px;
  margin-bottom: 25px;

  background: #f8cbd7;
  border: 2px solid #9b5368;
  border-radius: 12px;
}

.blog-title {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 8px;
}

.blog-nav {
  margin-top: 18px;
}

.blog-nav a {
  display: inline-block;
  margin: 4px 8px;
  padding: 7px 14px;

  background: #fff0f4;
  border: 1px solid #9b5368;
  border-radius: 8px;

  color: #71384b;
  text-decoration: none;
}

.blog-nav a:hover {
  background: #9b5368;
  color: white;
}

.blog-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.blog-post {
  padding: 25px;

  background: #fff7f9;
  border: 2px solid #c47b91;
  border-radius: 12px;

  box-shadow: 4px 4px 0 #e7a9ba;
}

.blog-post h2 {
  margin-top: 5px;
  color: #8b3f58;
}

.post-date {
  font-size: 0.85em;
  color: #865c69;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.post-footer {
  margin-top: 20px;
  padding-top: 10px;

  border-top: 1px dashed #c47b91;

  font-size: 0.9em;
  font-style: italic;
  color: #75505c;
}

.blog-footer {
  text-align: center;
  margin: 30px 0;
  font-size: 0.9em;
}

body .about-page {
  width: 900px !important;
  max-width: calc(100% - 40px) !important;
  margin: 30px auto !important;
  box-sizing: border-box;
}

body .about-page .blog-header,
body .about-page .about-container,
body .about-page .about-card {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;
}

body .about-page .blog-banner {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  height: auto;
}

/*cute search */

.cute-search {
  width: 80%;
  max-width: 620px;
  margin: 10px auto 20px;
  padding: 14px;

  background: #fff0f6;
  border: 2px solid #b75f7c;
  border-radius: 14px;
  box-shadow: 3px 3px 0 #e7a9ba;

  text-align: center;
}

.search-label {
  margin-bottom: 9px;
  font-family: var(--heading-font);
  font-size: 1.1em;
  color: #8b3f58;
}

.site-search-form {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.site-search-input {
  flex: 1;
  min-width: 0;
  padding: 9px 12px;

  font-family: var(--font);
  color: #71384b;

  background: #fffafd;
  border: 1px solid #c47b91;
  border-radius: 9px;
  outline: none;
}

.site-search-input:focus {
  border-color: #8b3f58;
  box-shadow: 0 0 0 3px #f4c8d6;
}

.site-search-button {
  padding: 9px 14px;

  font-family: var(--heading-font);
  color: #fff;

  background: #b75f7c;
  border: 1px solid #8b3f58;
  border-radius: 9px;
}

.site-search-button:hover {
  background: #8b3f58;
}

@media screen and (max-width: 500px) {
  .site-search-form {
    flex-direction: column;
  }
}



/*partner dolls*/
.about-mini-card {
  padding: 16px;
  background: #fff7f9;
  border: 1px solid #c47b91;
  border-radius: 10px;
  overflow: auto;
}

.partner-doll {
  float: left;
  width: 120px;
  height: auto;
  margin: 0 20px 12px 0;
}


/*HelloThere*/

.welcome-window {
  position: relative;
  margin: 20px;
  border: 2px solid #b57aa6;
  border-radius: 8px;
  background: #e8c8e8;
  box-shadow: 4px 5px 0 rgba(145, 91, 132, 0.25);
  overflow: visible;
}

.window-titlebar {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 5px 8px;
  background: #c99acb;
  border-bottom: 2px solid #a76f9e;
  color: #583450;
  font-size: 15px;
}

.window-title {
  padding-left: 3px;
}

.window-buttons {
  display: flex;
  gap: 4px;
}

.window-buttons span {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 18px;
  height: 18px;

  border: 1px solid #805477;
  background: #f4d9ee;
  color: #704969;
  font-family: Arial, sans-serif;
  font-size: 12px;
  line-height: 1;
}

.welcome-paper {
  margin: 12px;
  padding: 18px 24px;

  background: #fff7f1;
  border: 1px solid #e5b7bd;
  border-radius: 3px;

  box-shadow:
    2px 3px 0 rgba(196, 132, 153, 0.25),
    inset 0 0 18px rgba(255, 210, 220, 0.18);
}

.welcome-paper h1 {
  margin-top: 0;
  text-align: center;
  font-size: 28px;
}

.welcome-paper p {
  line-height: 1.6;
}

.welcome-divider {
  margin-top: 15px;
  text-align: center;
}

.welcome-divider img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: auto;
}

.welcome-window {
  position: relative;
  overflow: visible;
}

.welcome-tape {
  position: absolute;
  top: 39px;
  left: 10px;

  width: 52px;
  height: 18px;

  background: rgba(255, 164, 190, 0.72);
  border: 1px solid rgba(218, 122, 157, 0.45);

  transform: rotate(-10deg);
  z-index: 5;

  box-shadow: 0 1px 2px rgba(120, 70, 100, 0.15);
}

.welcome-tape::after {
  content: "";
  position: absolute;
  inset: 2px;

  border-top: 1px dashed rgba(255, 255, 255, 0.45);
  border-bottom: 1px dashed rgba(180, 100, 130, 0.18);
}


.welcome-decoration {
  position: absolute;
  z-index: 4;

  color: #df789e;
  font-size: 18px;
  letter-spacing: 5px;

  pointer-events: none;
}

.decoration-left {
  top: 35px;
  left: 34px;
  transform: rotate(-7deg);
}

.decoration-right {
  top: 35px;
  right: 34px;
  transform: rotate(8deg);
}

.heart-note {
  position: absolute;
  right: -8px;
  bottom: -15px;

  width: 52px;
  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #fff2e9;
  border: 1px solid #eab9bf;

  transform: rotate(8deg);
  z-index: 6;

  box-shadow: 3px 4px 0 rgba(182, 112, 145, 0.2);
}

.heart-note .note-sparkles {
  position: absolute;
  left: 2px;
  bottom: -60px;
  color: #ef9fba;
  font-size:16px;
  line-height: 9;
  transform: rotate(-10deg);
}
.note-heart {
  color: #f08dac;
  font-family: Georgia, serif;
  font-size: 38px;
  line-height: 1;
  transform: rotate(-5deg);
}

.heart-note::before {
  content: "";
  position: absolute;

  top: -7px;
  left: 15px;

  width: 24px;
  height: 12px;

  background: rgba(255, 172, 197, 0.7);
  border: 1px solid rgba(220, 125, 158, 0.35);

  transform: rotate(-7deg);
}

.welcome-paper {
  border-radius: 3px 3px 8px 5px;
}

.welcome-window {
  background: #e6c1df;

  box-shadow:
    5px 6px 0 rgba(150, 91, 135, 0.28),
    inset 0 0 0 2px rgba(255, 235, 250, 0.35);
}

.window-titlebar {
  background: linear-gradient(
    to bottom,
    #d1a5d0,
    #c48fc1
  );
}

.welcome-window {
  margin-bottom: 38px;
}

.top-left-tape {
  position: absolute;
  top: -8px;
  left: 10px;

  width: 60px;
  height: 17px;

  background: rgba(255, 150, 185, 0.7);
  border: 1px solid rgba(220, 110, 150, 0.35);

  transform: rotate(-10deg);
  z-index: 8;

  box-shadow: 1px 2px 2px rgba(120, 70, 100, 0.15);
}

.top-left-tape::after {
  content: "";
  position: absolute;
  inset: 2px;

  border-top: 1px dashed rgba(255, 255, 255, 0.45);
  border-bottom: 1px dashed rgba(170, 80, 120, 0.15);
}

.bottom-left-sparkles {
  position: absolute;
  left: 22px;
  bottom:20px;

  color: #eda0b9;
  font-size: 15px;
  letter-spacing: 4px;

  transform: rotate(-8deg);
  z-index: 5;
  pointer-events: none;
}

.bottom-right-sparkles {
  position: absolute;
  right: 70px;
  bottom: 20px;

  color: #eda0b9;
  font-size: 14px;
  letter-spacing: 5px;

  transform: rotate(2deg);
  z-index: 5;
  pointer-events: none;
}
.welcome-paper {
  padding-bottom: 40px;
}


.divider-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.divider-sparkles {
  color: #eda0b9;
  font-size: 14px;
  letter-spacing: 3px;
}

.welcome-divider {
  margin: 0;
}

.divider-row {
  position: relative;
}



.welcome-paper {
  transform: rotate(-0.12deg);
}

.welcome-paper {
  box-shadow:
    2px 4px 0 rgba(196, 132, 153, 0.22),
    inset 0 0 20px rgba(255, 211, 221, 0.18);
}


/*Current events*/

.current-events {
  margin-top: 25px;
}

.current-events-title {
  text-align: center;
  margin-bottom: 18px;
}

.current-events-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.event-card {
  position: relative;
  min-height: 285px;
  padding: 18px 20px 38px;

  background: #fff7f1;
  border: 1px solid #dfa8b8;
  border-radius: 5px;

  box-shadow:
    2px 3px 0 rgba(181, 113, 145, 0.18),
    inset 0 0 18px rgba(255, 208, 220, 0.15);
}

.event-card h3 {
  margin: 0;
  text-align: center;
  font-size: 18px;
}

.event-subtitle {
  margin: 4px 0 14px;
  text-align: center;
  color: #e8799d;
  font-size: 13px;
}

.event-card p {
  line-height: 1.5;
}

.event-date {
  position: absolute;
  left: 14px;
  bottom: 10px;

  font-size: 11px;
}

.event-heart {
  position: absolute;
  right: 10px;
  bottom: 5px;

  color: #ed8fad;
  font-family: Georgia, serif;
  font-size: 30px;
}

.event-pin {
  position: absolute;
  top: -7px;

  width: 18px;
  height: 18px;

  border-radius: 50%;
  border: 1px solid rgba(120, 70, 100, 0.35);

  box-shadow:
    inset 2px 2px 2px rgba(255, 255, 255, 0.5),
    1px 2px 2px rgba(100, 60, 90, 0.25);
}

.pin-pink {
  left: 10px;
  background: #efa5bc;
}

.pin-purple {
  right: 10px;
  background: #b893ca;
}

@media (max-width: 650px) {
  .current-events-grid {
    grid-template-columns: 1fr;
  }
}

.thought-cloud {
  position: absolute;
  top: 18px;
  right: 22px;

  color: #d9bfd3;
  font-size: 50px;
  line-height: 1;

  transform: rotate(6deg);
}

.event-pin::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 2px;

  width: 6px;
  height: 6px;

  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
}

.event-card:first-child {
  transform: rotate(-0.15deg);
}

.event-card:last-child {
  transform: rotate(0.15deg);
}

.event-card {
  background:
    linear-gradient(
      rgba(255, 249, 242, 0.96),
      rgba(255, 246, 240, 0.96)
    );

  box-shadow:
    2px 4px 0 rgba(181, 113, 145, 0.18),
    inset 0 0 22px rgba(255, 208, 220, 0.13);
}

.event-heart {
  font-size: 35px;
  transform: rotate(-7deg);
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.7);
}

.event-card:last-child .event-heart {
  transform: rotate(7deg);
}

.event-card h3 {
  margin-bottom: 2px;
}

.outside-decoration {
  position: absolute;
  top: 50px;
  right: 24px;

  color: #e8a5bd;
  font-size: 25px;
  letter-spacing: 3px;

  transform: rotate(8deg);
}

.event-subtitle {
  margin-top: 2px;
}

.pink-dashes {
  width: 150px;
  height: 2px;
  margin: 5px auto 12px;

  background: repeating-linear-gradient(
    to right,
    #ff5f9e 0,
    #ff5f9e 8px,
    transparent 8px,
    transparent 13px
  );
}

width: 65px;

background: repeating-linear-gradient(
  to right,
  #ff5f9e 0,
  #ff5f9e 5px,
  transparent 5px,
  transparent 9px
);

.sidebar-welcome {
  position: relative;
  text-align: center;
  padding-top: 22px;
  padding-bottom: 24px;
}

.sidebar-welcome .sidebar-title {
  margin-bottom: 16px;
  font-size: 24px;
  text-align: center;
}

.sidebar-welcome .welcome-icon {
  display: block;
  width: 72px;
  height: auto;
  margin: 0 auto 16px;
}

.sidebar-welcome p {
  max-width: 145px;
  margin: 0 auto;
  text-align: center;
  font-weight: 600;
  line-height: 1.5;
}

.sidebar-welcome::after {
  content: "";
  display: block;
  width: 88%;
  height: 1px;
  margin: 22px auto 0;
  background: #e8abc3;
}
.site-updates .sidebar-title {
  text-align: center;
  margin-bottom: 8px;
}

.site-dates {
  margin: 0 0 10px;
  line-height: 1.4;
  color: #75566d;
}

.updates-box {
  max-height: 120px;
  overflow-y: auto;

  padding: 10px 12px;

  background: #fff8f3;
  border: 1px solid #dca5ba;
  border-radius: 4px;

  box-shadow:
    inset 0 0 10px rgba(255, 202, 219, 0.15);
}

.update-entry {
  padding-bottom: 9px;
  margin-bottom: 9px;
  border-bottom: 1px dashed #e7b5c7;
}

.update-entry:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.update-entry strong {
  display: block;
  margin-bottom: 3px;
}

.update-entry p {
  margin: 0;
  line-height: 1.35;
}

.updates-box::-webkit-scrollbar {
  width: 8px;
}

.updates-box::-webkit-scrollbar-track {
  background: #f8dbe7;
}

.updates-box::-webkit-scrollbar-thumb {
  background: #d89bb5;
  border-radius: 10px;
}

.updates-box {
  margin-bottom: 24px;
}

.obsessions-section .sidebar-title {
  margin-bottom: 10px;
}

.obsessions-card {
  position: relative;

  padding: 12px 14px;
  margin: 0;

  background: #d8b2d0; /* lighter */
  border-radius: 7px;

  box-shadow:
    inset 0 0 12px rgba(255, 255, 255, 0.18),
    2px 3px 0 rgba(166, 103, 142, 0.12);
}

.obsessions-card p {
  margin: 7px 0;
  line-height: 1.3;
}

.obsessions-card::before,
.obsessions-card::after {
  content: "";
  position: absolute;

  width: 30px;
  height: 10px;
  
  
  background: rgba(239, 164, 194, 0.72);
  border: 1px solid rgba(205, 115, 157, 0.25);

  z-index: 2;
}

.obsessions-card::before {
  top: -5px;
  left: -7px;
  transform: rotate(-10deg);
}

.obsessions-card::after {
  right: -7px;
  bottom: -5px;
  transform: rotate(-8deg);
}

.currently-reading .sidebar-title {
  margin-bottom: 10px;
}

.reading-card {
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 12px;

  background: #fff7f1;
  border: 1px solid #dfa8b8;
  border-radius: 6px;

  box-shadow:
    2px 3px 0 rgba(181, 113, 145, 0.14),
    inset 0 0 14px rgba(255, 208, 220, 0.12);
}

.book-cover-placeholder {
  flex: 0 0 62px;
  width: 62px;
  height: 90px;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  font-size: 11px;
  line-height: 1.3;
  color: #8e637f;

  background: #e3c5dc;
  border: 1px dashed #b981a5;
  border-radius: 3px;
}

.reading-info {
  min-width: 0;
}

.book-title {
  margin-bottom: 3px;

  font-weight: 700;
  line-height: 1.2;
}

.book-author {
  margin-bottom: 10px;

  font-size: 12px;
  font-style: italic;
  color: #75566d;
}

.reading-progress {
  font-size: 11px;
  line-height: 1.3;
  color: #7a596f;
}

.book-cover {
  flex: 0 0 62px;
  width: 62px;
  height: 90px;
  object-fit: cover;

  border: 1px solid #c88ca9;
  border-radius: 3px;

  box-shadow: 2px 3px 0 rgba(153, 91, 128, 0.18);
}

.currently-listening .sidebar-title {
  margin-bottom: 10px;
}

.listening-card {
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 12px;

  background: #fff7f1;
  border: 1px solid #dfa8b8;
  border-radius: 6px;

  box-shadow:
    2px 3px 0 rgba(181, 113, 145, 0.14),
    inset 0 0 14px rgba(255, 208, 220, 0.12);
}

.album-cover-placeholder {
  flex: 0 0 62px;
  width: 62px;
  height: 62px;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  font-size: 11px;
  line-height: 1.3;
  color: #8e637f;

  background: #e3c5dc;
  border: 1px dashed #b981a5;
  border-radius: 4px;
}

.listening-info {
  flex: 1;
  min-width: 0;
}

.song-title {
  margin-bottom: 3px;

  font-weight: 700;
  line-height: 1.2;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.song-artist {
  margin-bottom: 10px;

  font-size: 12px;
  font-style: italic;
  color: #75566d;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fake-player {
  display: flex;
  align-items: center;
  gap: 7px;
}

.play-button {
  color: #dd7299;
  font-size: 12px;
  line-height: 1;
}

.progress-track {
  flex: 1;
  height: 5px;

  background: #ead2df;
  border-radius: 10px;
  overflow: hidden;
}

.progress-fill {
  width: 45%;
  height: 100%;

  background: #df82a7;
  border-radius: 10px;
}

.album-cover {
  flex: 0 0 62px;
  width: 62px;
  height: 62px;

  object-fit: cover;

  border: 1px solid #c88ca9;
  border-radius: 4px;

  box-shadow: 2px 3px 0 rgba(153, 91, 128, 0.18);
}

.listening-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.listening-link:hover {
  transform: translateY(-2px);
  box-shadow:
    3px 5px 0 rgba(181, 113, 145, 0.2),
    inset 0 0 14px rgba(255, 208, 220, 0.16);
}

.listening-link:focus-visible {
  outline: 2px dashed #df82a7;
  outline-offset: 3px;
}

.todays-mood .sidebar-title {
  margin-bottom: 10px;
}

.mood-card {
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 12px;

  background: #f3dced;
  border: 1px solid #d9a5c5;
  border-radius: 6px;

  box-shadow:
    2px 3px 0 rgba(166, 103, 142, 0.14),
    inset 0 0 14px rgba(255, 255, 255, 0.2);
}

.mood-icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #fff7f1;
  border: 1px solid #dfa8b8;
  border-radius: 50%;

  color: #e77fa6;
  font-family: Georgia, serif;
  font-size: 34px;
  line-height: 1;

  transform: rotate(-6deg);
}

.mood-info {
  min-width: 0;
}

.mood-name {
  margin-bottom: 4px;

  font-weight: 700;
  line-height: 1.2;
}

.mood-note {
  font-size: 11px;
  line-height: 1.4;
  color: #75566d;
}

.start-here {
  margin-top: 34px;
}

.start-here-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 18px;
}

.start-here-title-row h2 {
  margin: 0;
  white-space: nowrap;
  text-align: center;
}

.start-stars {
  color: #f08fb2;
  font-size: 16px;
  letter-spacing: 4px;
  white-space: nowrap;
}

.start-here-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.start-card {
  position: relative;
  min-height: 245px;
  padding: 16px 12px 30px;

  display: flex;
  flex-direction: column;
  align-items: center;

  background: #fff7f1;
  border: 1px solid #dda4b8;
  border-radius: 18px;

  color: inherit;
  text-decoration: none;
  text-align: center;

  box-shadow:
    2px 4px 0 rgba(181, 113, 145, 0.16),
    inset 0 0 18px rgba(255, 208, 220, 0.12);

  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.start-card:hover {
  transform: translateY(-4px);

  box-shadow:
    3px 7px 0 rgba(181, 113, 145, 0.2),
    inset 0 0 18px rgba(255, 208, 220, 0.16);
}

.start-card:focus-visible {
  outline: 2px dashed #e77fa6;
  outline-offset: 4px;
}

.start-image-placeholder {
  width: 105px;
  height: 105px;
  margin-bottom: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #efd5e7;
  border: 1px dashed #c888a9;
  border-radius: 10px;

  color: #8b617c;
  font-size: 12px;
  line-height: 1.3;
}

.start-card-label {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
}

.start-arrow {
  position: absolute;
  right: 14px;
  bottom: 8px;

  color: #ed8fad;
  font-size: 28px;
  transform: rotate(-8deg);
}

.start-card-image {
  display: block;
  width: 115px;
  height: 115px;
  margin-bottom: 14px;
  object-fit: contain;
}
@media (max-width: 800px) {
  .start-here-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .start-stars {
    display: none;
  }
}

@media (max-width: 480px) {
  .start-here-grid {
    grid-template-columns: 1fr;
  }
}

.start-card {
  font-family: "Crafty Girls", cursive;
}
.start-card-label {
  font-family: inherit;
}

.start-card,
.start-card:visited,
.start-card:hover,
.start-card:active {
  color: #000;
  text-decoration: none;
}

.start-flower {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  font-size: 28px;
}

.flower-left {
  left: -16px;
  bottom: 22px;
  transform: rotate(-18deg);
}

.flower-right {
  right: -16px;
  bottom: 22px;
  transform: rotate(18deg);
}

.home-closing-card {
  position: relative;

  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  gap: 24px;

  margin-top: 100px;
  padding: 24px 30px;

  background: #fff7f1;
  border: 2px solid #e2a4b9;
  border-radius: 28px;

  box-shadow:
    3px 5px 0 rgba(181, 113, 145, 0.16),
    inset 0 0 24px rgba(255, 208, 220, 0.14);
}

.closing-art {
  display: flex;
  justify-content: center;
}

.closing-image-placeholder {
  width: 190px;
  height: 145px;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  line-height: 1.4;
  color: #8b617c;

  background: #efd5e7;
  border: 1px dashed #c888a9;
  border-radius: 12px;
}

.closing-message {
  text-align: center;
}

.closing-quote {
  margin-bottom: 18px;

  font-family: "Crafty Girls", cursive;
  font-size: 28px;
  line-height: 1.45;
}

.love-banner-placeholder {
  width: 220px;
  min-height: 58px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #ffdce8;
  border: 1px dashed #e28cac;
  border-radius: 5px;

  color: #9c607b;
  font-size: 12px;
}

.closing-heart {
  position: absolute;

  color: #ef8eae;
  font-family: Georgia, serif;
  line-height: 1;

  pointer-events: none;
}

.heart-one {
  top: 14px;
  left: 54px;
  font-size: 22px;
  transform: rotate(-10deg);
}

.heart-two {
  top: 28px;
  left: 28px;
  font-size: 16px;
  transform: rotate(8deg);
}

.heart-three {
  bottom: 22px;
  right: 36px;
  font-size: 18px;
  transform: rotate(-6deg);
}

.closing-image {
  display: block;
  width: 210px;
  max-width: 100%;
  height: auto;
}

.love-banner {
  display: block;
  width: 220px;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

@media (max-width: 650px) {
  .home-closing-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .closing-quote {
    font-size: 24px;
  }
}

.home-closing-card {
  outline: 1px dashed #efb3c6;
  outline-offset: -7px;
}

 {
  box-sizing: border-box;
}
html,
body {
  overflow-x: hidden;
}
img,
textarea {
  max-width: 100%;
}

.site-button textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  resize: vertical;
}

marquee {
  display: block;
  width: 100%;
  overflow: hidden;
}

main {
  min-width: 0;
  max-width: 100%;
  overflow-x: clip;
}

.event-card {
  position: relative;
}

.thought-cloud {
  position: absolute;
  top: 18px;
  right: 22px;
  margin: 0;
  line-height: 1;
}

.event-card h3 {
  margin: 0;
  padding: 0;
  text-align: center;
  line-height: 1.2;
}
.event-card {
  padding-top: 22px;
}

.event-card h2 {
  margin: 0;
  padding: 0;
  text-align: center;
  line-height: 1.2;
}

.thought-cloud {
  position: absolute;
  top: 18px;
  right: 22px;
  margin: 0;
  line-height: 1;
}


.rin-stat-note {
  position: relative;
  width: min(540px, calc(100% - 40px));
  margin: 35px auto 45px;
  padding: 32px 28px 26px;

  background:
    repeating-linear-gradient(
      to bottom,
      #fffaf1 0,
      #fffaf1 30px,
      #efdede 31px
    );

  border: 1px solid #d8bdb5;
  border-radius: 2px;

  box-shadow:
    4px 6px 0 rgba(109, 68, 74, 0.12),
    0 8px 18px rgba(83, 46, 55, 0.14);

  color: #5f3d46;
  transform: rotate(-0.7deg);
}

.rin-stat-note::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(193, 112, 132, 0.45);
  pointer-events: none;
}

.note-tape {
  position: absolute;
  top: -17px;
  left: 50%;
  width: 125px;
  height: 35px;

  background: rgba(255, 214, 226, 0.78);
  border-left: 1px solid rgba(211, 151, 168, 0.4);
  border-right: 1px solid rgba(211, 151, 168, 0.4);

  transform: translateX(-50%) rotate(1.5deg);
  box-shadow: 0 2px 3px rgba(90, 48, 60, 0.08);
}

.rin-stat-note h2 {
  position: relative;
  margin: 0 0 22px;
  text-align: center;
  font-family: "Crafty Girls", cursive;
  font-size: 1.6rem;
  color: #a83f61;
}

.stat-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px 25px;
}

.stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
  min-width: 0;
}

.stat-label {
  flex-shrink: 0;
  font-weight: 700;
  color: #b14869;
}

.stat-label::after {
  content: ":";
}

.stat-value {
  line-height: 1.35;
}

.stat-wide {
  grid-column: 1 / -1;
}

@media (max-width: 600px) {
  .rin-stat-note {
    width: calc(100% - 24px);
    padding: 30px 20px 23px;
    transform: rotate(-0.3deg);
  }

  .stat-grid {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .stat-wide {
    grid-column: auto;
  }
}

.sparkle-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  width: min(680px, 90%);
  margin: 10px auto 32px;

  color: #d45f88;
  font-size: 1.15rem;
}

.sparkle-divider::before,
.sparkle-divider::after {
  content: "";
  flex: 1;
  height: 2px;

  background: linear-gradient(
    to var(--divider-direction, right),
    transparent,
    #ee9fba,
    #d94f7c
  );
}

.sparkle-divider::after {
  --divider-direction: left;
}

.sparkle-divider span:nth-child(2) {
  font-size: 1.35rem;
}

/* Falling heart container */
.heart-rain {
  position: fixed;
  top: -50px;
  left: 0;
  z-index: 9999;

  pointer-events: none;
  user-select: none;

  animation-name: heart-fall, heart-sway;
  animation-timing-function: linear, ease-in-out;
  animation-iteration-count: 1, infinite;
}

/* Makes each heart fall downward */
@keyframes heart-fall {
  from {
    transform: translateY(-50px) rotate(0deg);
  }

  to {
    transform: translateY(110vh) rotate(360deg);
  }
}

/* Gives the hearts a gentle side-to-side drift */
@keyframes heart-sway {
  0%,
  100% {
    margin-left: -15px;
  }

  50% {
    margin-left: 15px;
  }
}

/* Accessibility: stop animation when requested */
@media (prefers-reduced-motion: reduce) {
  .heart-rain {
    display: none;
  }
}


/*Cbox Pretty*/
.note-container {
  padding: 28px;
}

.note-page-card {
  width: min(720px, 100%);
  margin: 0 auto;
  padding: 30px;

  position: relative;

  background: #fff7f1;
  border: 2px solid #e2a4b9;
  border-radius: 28px;

  outline: 1px dashed #efb3c6;
  outline-offset: -8px;

  box-shadow:
    4px 6px 0 rgba(181, 113, 145, 0.16),
    inset 0 0 24px rgba(255, 208, 220, 0.16);
}

.note-intro {
  text-align: center;
  margin-bottom: 24px;
}

.note-intro h1 {
  margin: 0 0 10px;

  font-family: "Crafty Girls", cursive;
  font-size: 32px;
  color: #a54f78;
}

.note-intro p {
  margin: 6px auto;
  max-width: 560px;
}

.note-rules {
  font-size: 14px;
  font-style: italic;
  color: #93667c;
}

.chatango-wrap {
  width: min(620px, 100%);
  margin: 0 auto;
  padding: 10px;

  background: #ffddea;
  border: 1px solid #e8a1bb;
  border-radius: 16px;

  box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.75);
}

.chatango-wrap script {
  max-width: 100%;
}

.note-counter {
  margin-top: 16px;
  text-align: center;
  font-size: 13px;
  color: #97647c;
}

.blog-float-image {
  float: left;
  width: 220px;
  max-width: 42%;
  height: auto;
  margin: 5px 22px 14px 0;
  border: 4px solid #f5b6cf;
  border-radius: 12px;
  box-shadow: 4px 4px 0 rgba(210, 140, 175, 0.25);
}

/* ==============================
   CUTE DICTIONARY PAGE
   ============================== */

.dictionary-container {
  width: min(900px, 92%);
  margin: 30px auto;
  padding: 28px;
  box-sizing: border-box;

  background:
    linear-gradient(rgba(255, 252, 245, 0.94), rgba(255, 248, 250, 0.94));

  border: 3px solid #efafc8;
  border-radius: 22px;

  box-shadow:
    0 8px 20px rgba(153, 91, 120, 0.18),
    inset 0 0 0 6px rgba(255, 216, 230, 0.35);
}


/* Intro note */

.dictionary-intro {
  position: relative;
  max-width: 680px;
  margin: 0 auto 38px;
  padding: 25px 28px;

  text-align: center;

  background: #fff8df;
  border: 2px dashed #e69ab9;
  border-radius: 12px;

  box-shadow: 5px 6px 0 rgba(220, 159, 184, 0.25);

  transform: rotate(-0.4deg);
}

.dictionary-intro::before {
  content: "";
  position: absolute;
  top: -13px;
  left: 50%;

  width: 105px;
  height: 27px;

  transform: translateX(-50%) rotate(1deg);

  background: rgba(255, 192, 211, 0.65);
  border-left: 1px solid rgba(255, 255, 255, 0.7);
  border-right: 1px solid rgba(255, 255, 255, 0.7);
}

.dictionary-intro h2 {
  margin: 5px 0 10px;

  font-family: "Crafty Girls", cursive;
  color: #b34f78;
  font-size: 1.8rem;
}

.dictionary-intro h2::before {
  content: "🌸 ";
}

.dictionary-intro h2::after {
  content: " 🌸";
}

.dictionary-intro p {
  margin: 0;
  line-height: 1.65;
}


/* Individual dictionary cards */

.dictionary-entry {
  position: relative;
  margin: 28px 0;
  padding: 0;

  background: #fffafd;
  border: 2px solid #e9a4c0;
  border-radius: 18px;

  box-shadow:
    5px 6px 0 rgba(215, 148, 177, 0.23),
    inset 0 0 0 4px rgba(255, 225, 236, 0.45);

  overflow: hidden;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.dictionary-entry:nth-of-type(even) {
  transform: rotate(0.25deg);
}

.dictionary-entry:nth-of-type(odd) {
  transform: rotate(-0.25deg);
}

.dictionary-entry:hover {
  transform: translateY(-4px) rotate(0deg);

  box-shadow:
    7px 10px 0 rgba(215, 148, 177, 0.22),
    inset 0 0 0 4px rgba(255, 225, 236, 0.55);
}


/* Your current entries contain blockquotes.
   This removes the default quotation styling. */

.dictionary-entry blockquote {
  margin: 0;
  padding: 0;
  border: none;
}


/* Word/title area */

.dictionary-word {
  padding: 20px 24px 16px;

  background:
    repeating-linear-gradient(
      0deg,
      #fff1f6,
      #fff1f6 27px,
      #f8dce8 28px
    );

  border-bottom: 2px dashed #dda0b9;

  color: #8c6680;
  font-size: 0.95rem;
  font-style: italic;
}

.dictionary-word h3 {
  margin: 0 0 7px;

  font-family: "Crafty Girls", cursive;
  font-size: clamp(1.45rem, 4vw, 2rem);
  color: #ad426f;
  line-height: 1.2;
}


/* General definition */

.dictionary-definition {
  position: relative;

  margin: 0;
  padding: 22px 27px 18px 56px;

  line-height: 1.7;
}

.dictionary-definition::before {
  content: "📖";
  position: absolute;
  left: 22px;
  top: 22px;

  font-size: 1.25rem;
}


/* Personal meaning box */

.dictionary-personal {
  position: relative;

  margin: 4px 24px 25px;
  padding: 18px 20px 18px 46px;

  background: #fff4d9;
  border: 1px solid #e7b778;
  border-radius: 12px;

  line-height: 1.7;

  box-shadow: inset 4px 0 0 #f5c1d4;
}

.dictionary-personal::before {
  content: "🍒";
  position: absolute;
  left: 16px;
  top: 17px;
}

.dictionary-personal strong {
  display: block;
  margin-bottom: 5px;

  color: #a44169;
  font-family: "Crafty Girls", cursive;
  font-size: 1.1rem;
}


/* Tiny decorative sparkles */

.dictionary-entry::before,
.dictionary-entry::after {
  position: absolute;
  z-index: 2;

  color: #e69abc;
  pointer-events: none;
}

.dictionary-entry::before {
  content: "✦";
  top: 10px;
  right: 18px;
}

.dictionary-entry::after {
  content: "♡";
  bottom: 9px;
  right: 15px;

  font-size: 1.1rem;
}


/* Footer */

.dictionary-footer {
  width: min(760px, 86%);
  margin: 35px auto 50px;
  padding: 17px 22px;

  text-align: center;
  font-family: "Crafty Girls", cursive;
  font-size: 1.15rem;
  color: #9e496d;

  background: rgba(255, 242, 220, 0.94);
  border: 2px dashed #df94b3;
  border-radius: 14px;

  box-shadow: 4px 5px 0 rgba(202, 137, 166, 0.22);
}


/* Smooth jump when linking directly to a word */

html {
  scroll-behavior: smooth;
}

.dictionary-entry {
  scroll-margin-top: 25px;
}


/* Phone layout */

@media (max-width: 600px) {
  .dictionary-container {
    width: 95%;
    padding: 18px 13px;
  }

  .dictionary-intro {
    padding: 23px 18px;
  }

  .dictionary-word {
    padding: 18px;
  }

  .dictionary-definition {
    padding: 20px 18px 15px 48px;
  }

  .dictionary-definition::before {
    left: 17px;
  }

  .dictionary-personal {
    margin: 4px 14px 20px;
  }
}


/* ==============================
   DICTIONARY ALPHABET
   ============================== */

.dictionary-alphabet {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;

  margin: 0 auto 32px;
  padding: 18px;

  background: #fff8df;
  border: 2px dashed #e69ab9;
  border-radius: 16px;

  box-shadow: 4px 5px 0 rgba(220, 159, 184, 0.22);
}

.letter-button {
  min-width: 34px;
  height: 34px;
  padding: 4px 9px;

  font-family: "Crafty Girls", cursive;
  font-size: 1rem;
  color: #a3446d;

  background: #fffafd;
  border: 2px solid #edb0c7;
  border-radius: 50%;

  cursor: pointer;

  box-shadow: 2px 3px 0 rgba(215, 148, 177, 0.25);

  transition:
    transform 0.15s ease,
    background 0.15s ease,
    box-shadow 0.15s ease;
}

.letter-button:first-child {
  width: auto;
  padding: 4px 14px;
  border-radius: 18px;
}

.letter-button:hover {
  transform: translateY(-2px) rotate(-3deg);
  background: #ffe4ef;
}

.letter-button.active {
  color: #fff;
  background: #d95d8d;
  border-color: #b94470;

  box-shadow: 2px 3px 0 rgba(154, 61, 100, 0.25);
}

.letter-button:disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
}

.dictionary-entry.dictionary-hidden {
  display: none;
}

.dictionary-empty-message {
  margin: 25px auto;
  padding: 20px;

  text-align: center;
  font-family: "Crafty Girls", cursive;
  color: #a3446d;

  background: #fff4d9;
  border: 2px dashed #e3a1ba;
  border-radius: 14px;
}

/* ==============================
   CUTE BOOKSHELF PAGE
   ============================== */

.bookshelf-container {
  width: min(1050px, 94%);
  margin: 30px auto;
  padding: 30px 26px 45px;

  box-sizing: border-box;

  background: rgba(255, 250, 246, 0.95);

  border: 3px solid #e8a7bf;
  border-radius: 24px;

  box-shadow:
    0 10px 25px rgba(131, 75, 101, 0.18),
    inset 0 0 0 6px rgba(255, 220, 232, 0.35);
}


/* Intro card */

.bookshelf-intro {
  position: relative;

  max-width: 720px;
  margin: 0 auto 40px;
  padding: 24px 28px;

  text-align: center;

  background: #fff7dc;
  border: 2px dashed #e39ab7;
  border-radius: 16px;

  box-shadow: 5px 6px 0 rgba(211, 143, 170, 0.23);
}

.bookshelf-intro::before {
  content: "";
  position: absolute;
  top: -13px;
  left: 50%;

  width: 110px;
  height: 26px;

  transform: translateX(-50%) rotate(-2deg);

  background: rgba(255, 185, 210, 0.66);
}

.bookshelf-intro h1 {
  margin: 0 0 10px;

  font-family: "Crafty Girls", cursive;
  color: #ad416d;
  font-size: clamp(2rem, 5vw, 3rem);
}

.bookshelf-intro p {
  margin: 0;
  line-height: 1.65;
}


/* Full bookcase */

.bookcase {
  position: relative;

  padding: 28px 24px 36px;

  background:
    linear-gradient(
      90deg,
      rgba(116, 64, 63, 0.08),
      transparent 20%,
      rgba(255, 255, 255, 0.16) 50%,
      transparent 80%,
      rgba(116, 64, 63, 0.08)
    ),
    #d89a88;

  border: 10px solid #aa685d;
  border-radius: 16px;

  box-shadow:
    inset 0 0 0 5px #edb5a5,
    0 12px 0 #875349,
    0 16px 20px rgba(82, 46, 51, 0.24);
}


/* Decorative top trim */

.bookcase::before {
  content: "✦  🍒  ✦  Rin's Little Library  ✦  🍒  ✦";

  display: block;

  margin: -15px auto 25px;
  padding: 11px 18px;

  text-align: center;

  font-family: "Crafty Girls", cursive;
  font-size: 1.2rem;
  color: #8e3d5d;

  background: #ffe9f1;
  border: 3px solid #af675d;
  border-radius: 18px;

  box-shadow: 0 5px 0 #8c5149;
}


/* Each wooden shelf */

.shelf-row {
  position: relative;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
  align-items: end;
  gap: 24px;

  margin: 0 0 48px;
  padding: 42px 25px 24px;

  min-height: 290px;

  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.12),
      transparent 35%,
      rgba(90, 44, 43, 0.08)
    ),
    #efc2ad;

  border-left: 4px solid #a8655b;
  border-right: 4px solid #a8655b;
}


/* Thick shelf plank */

.shelf-row::after {
  content: "";

  position: absolute;
  left: -12px;
  right: -12px;
  bottom: -18px;

  height: 23px;

  background:
    linear-gradient(
      to bottom,
      #c98270,
      #a96258
    );

  border: 3px solid #804b45;
  border-radius: 4px;

  box-shadow:
    0 7px 0 #70413d,
    0 10px 12px rgba(74, 40, 40, 0.26);
}


/* Shelf category label */

.shelf-label {
  position: absolute;
  top: 10px;
  left: 18px;

  padding: 6px 14px;

  font-family: "Crafty Girls", cursive;
  color: #9f4165;

  background: #fff4d5;
  border: 2px dashed #d58aa7;
  border-radius: 12px;

  transform: rotate(-1deg);

  box-shadow: 2px 3px 0 rgba(167, 98, 125, 0.18);
}


/* Individual books */

.book-slot {
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;

  min-width: 0;
  height: 270px;

  padding: 10px 8px 0;

  box-sizing: border-box;

  transition: transform 0.2s ease;
}

.book-slot:nth-of-type(odd) {
  transform: rotate(-1deg);
}

.book-slot:nth-of-type(even) {
  transform: rotate(1deg);
}

.book-slot:hover {
  transform: translateY(-9px) rotate(0deg);
  z-index: 3;
}


/* Uniform cover size */

.book-slot img {
  display: block;

  width: 175px;
  height: 195px;

  max-width: 100%;

  object-fit: cover;

  border: 3px solid #fff4f6;
  border-radius: 5px;

  box-shadow:
    4px 5px 0 rgba(112, 61, 69, 0.28),
    0 8px 12px rgba(87, 46, 55, 0.18);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.book-slot:hover img {
  box-shadow:
    5px 8px 0 rgba(112, 61, 69, 0.24),
    0 12px 18px rgba(87, 46, 55, 0.2);
}


/* Fixed-height title label */

.book-slot p {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 145px;
  height: 50px;

  margin: 12px 0 0;
  padding: 5px 8px;

  box-sizing: border-box;

  overflow: hidden;

  text-align: center;
  line-height: 1.1;

  font-family: "Edu SA Beginner", cursive;
  font-size: 0.95rem;
  font-weight: 600;
  color: #813d59;

  background: #fff8df;
  border: 2px solid #d98dab;
  border-radius: 10px;

  box-shadow: 2px 3px 0 rgba(137, 71, 92, 0.16);
}


/* Tiny sticker above each title */

.book-slot p::before {
  content: "✦";
  margin-right: 5px;
  color: #e493b4;
}


/* Decorations */

.shelf-decoration {
  position: absolute;
  z-index: 2;

  font-size: 2.3rem;

  filter: drop-shadow(2px 3px 1px rgba(81, 45, 48, 0.22));
}

.shelf-plant {
  right: 25px;
  bottom: 22px;
}

.shelf-candle {
  left: 20px;
  bottom: 21px;
}


/* Footer */

.bookshelf-page .about-footer {
  width: min(720px, 84%);
  margin: 38px auto 50px;
  padding: 16px 20px;

  text-align: center;

  font-family: "Crafty Girls", cursive;
  font-size: 1.15rem;
  color: #9c4569;

  background: #fff4d9;
  border: 2px dashed #dc92af;
  border-radius: 14px;

  box-shadow: 4px 5px 0 rgba(199, 129, 157, 0.2);
}


/* Phone layout */

@media (max-width: 650px) {
  .bookshelf-container {
    width: 96%;
    padding: 20px 12px 35px;
  }

  .bookcase {
    padding: 24px 12px 30px;
    border-width: 7px;
  }

  .bookcase::before {
    font-size: 1rem;
  }

  .shelf-row {
    grid-template-columns: repeat(2, minmax(115px, 1fr));
    gap: 20px 10px;

    padding: 48px 10px 22px;
  }

  .book-slot {
    height: 235px;
  }

  .book-slot img {
    width: 110px;
    height: 160px;
  }

  .book-slot p {
    width: 120px;
    height: 48px;
    font-size: 0.83rem;
  }

  .shelf-decoration {
    display: none;
  }
}

/* Individual book area */

.book-slot {
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;

  width: 165px;
  height: 285px;

  padding: 10px 8px 0;

  box-sizing: border-box;

  transition: transform 0.2s ease;
}

.book-slot:nth-of-type(odd) {
  transform: rotate(-1deg);
}

.book-slot:nth-of-type(even) {
  transform: rotate(1deg);
}

.book-slot:hover {
  transform: translateY(-9px) rotate(0deg);
  z-index: 3;
}


/* Book covers */

.book-slot img {
  display: block;

  width: 145px;
  height: 205px;

  object-fit: contain;
  object-position: center;

  background: #fff4f6;

  border: 3px solid #fff4f6;
  border-radius: 5px;

  box-shadow:
    4px 5px 0 rgba(112, 61, 69, 0.28),
    0 8px 12px rgba(87, 46, 55, 0.18);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.book-slot p {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 155px;
  height: 52px;

  margin: 12px 0 0;
  padding: 5px 8px;

  box-sizing: border-box;
  overflow: hidden;

  text-align: center;
  line-height: 1.1;

  font-family: "Edu SA Beginner", cursive;
  font-size: 0.95rem;
  font-weight: 600;
  color: #813d59;

  background: #fff8df;
  border: 2px solid #d98dab;
  border-radius: 10px;

  box-shadow: 2px 3px 0 rgba(137, 71, 92, 0.16);
}

@media (max-width: 650px) {
  .book-slot {
    width: 130px;
    height: 245px;
  }

  .book-slot img {
    width: 115px;
    height: 165px;
    object-fit: contain;
  }

  .book-slot p {
    width: 125px;
    height: 50px;
    font-size: 0.84rem;
  }
  
}
  
  /* =========================================
   BOOKSHELF PAGE WIDTH REPAIR
   Makes it match the About Me page
   ========================================= */

body .bookshelf-page {
  width: 900px !important;
  max-width: calc(100% - 40px) !important;
  margin: 30px auto !important;
  box-sizing: border-box;
}

body .bookshelf-page .blog-header {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 0 25px !important;
  padding: 25px !important;
  box-sizing: border-box;
  overflow: hidden;
}

body .bookshelf-page .header-content {
  width: 100% !important;
  max-width: 100% !important;
  padding: 20px !important;
  box-sizing: border-box;
}

body .bookshelf-page .blog-banner {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  margin: 0 auto 15px !important;
  object-fit: contain;
}