:root {
  --bg: #f3efe6;
  --surface: #fffaf2;
  --text: #3d3a2f;
  --muted: #6f6a58;
  --moss: #6f8b5b;
  --moss-dark: #4f6a3f;
  --terracotta: #c46a4a;
  --terracotta-dark: #9f4f35;
  --border: #d8ccb6;
}

body {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  justify-content: center;

  background: url("/images/background.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

body > div {
  width: 100%;
  max-width: 800px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;

  background: rgba(255, 250, 242, 0.9);
  backdrop-filter: blur(2px);
}

@import url("https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap");

h1 {
  text-align: center;
  font-family: "Great Vibes", cursive;
  font-size: 4rem;
}

a {
  color: var(--terracotta-dark);
  text-decoration: none;
}

a:hover {
  color: var(--moss-dark);
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  padding: 0;
  margin: 0;
}

.nav-links li {
  white-space: nowrap;
  font-size: 1.5rem;
  font-weight: 600;
}

object {
  filter: brightness(0) saturate(100%) invert(0) sepia(1) hue-rotate(40deg);
}


p.footer {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  margin: 10;
  text-align: center;
}

h2 {
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-family: "Great Vibes", cursive;
  font-size: 2.5rem;
  color: #9f4f35;
}






.update-log {
  background: #fffaf2;
  border: 1px solid #d8ccb6;
  border-radius: 16px;
  padding: 1.5rem;
  margin-top: 2rem;
}

.update-log h2 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 1rem;
  font-family: "Great Vibes", cursive;
  font-size: 2.5rem;
  color: #9f4f35;
}

.update-log ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.update-log li {
  display: flex;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid #eadfcd;
}

.update-log li:last-child {
  border-bottom: none;
}

.update-log .date {
  flex: 0 0 90px;
  font-weight: 700;
  color: #6f8b5b;
}

.update-log .update {
  color: #3d3a2f;
  line-height: 1.5;
}









.book-reviews {
  background: #fffaf2;
  border: 1px solid #d8ccb6;
  border-radius: 16px;
  padding: 1.5rem;
  margin-top: 2rem;
}

.book-reviews h2 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 2rem;
  font-family: "Great Vibes", cursive;
  font-size: 2.5rem;
  color: #9f4f35;
}

.book-review {
  margin-bottom: 2.5rem;
}

.book-review:last-child {
  margin-bottom: 0;
}

.review-container {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.book-cover {
  flex: 0 0 140px;
  width: 140px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

.review-content {
  flex: 1;
  min-width: 0;
}

.book-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #3d3a2f;
  margin: 0 0 0.25rem 0;
  font-family: Georgia, "Times New Roman", serif;
}

.book-author {
  font-size: 1rem;
  font-style: italic;
  color: #6f6a58;
  margin: 0 0 0.5rem 0;
}

.review-date {
  font-size: 0.875rem;
  color: #6f8b5b;
  font-weight: 600;
  margin: 0 0 1rem 0;
}

.review-text {
  line-height: 1.6;
  color: #3d3a2f;
  margin: 0;
}

/* Responsive design for smaller screens */
@media (max-width: 600px) {
  .review-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .book-cover {
    flex: 0 0 120px;
    width: 120px;
  }
  
  .book-title {
    font-size: 1.25rem;
  }
}







.art-gallery {
  background: #fffaf2;
  border: 1px solid #d8ccb6;
  border-radius: 16px;
  padding: 1.5rem;
  margin-top: 2rem;
}

.art-gallery h2 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 2rem;
  font-family: "Great Vibes", cursive;
  font-size: 2.5rem;
  color: #9f4f35;
}

.art-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.art-piece {
  display: flex;
  flex-direction: column;
}

.art-figure {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.art-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  object-fit: cover;
  display: block;
  background: #f3efe6;
}

.art-info {
  padding: 0 0.5rem;
}

.art-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #3d3a2f;
  margin: 0 0 0.25rem 0;
  font-family: Georgia, "Times New Roman", serif;
}

.art-medium {
  font-size: 0.95rem;
  font-style: italic;
  color: #6f6a58;
  margin: 0 0 0.25rem 0;
}

.art-date {
  font-size: 0.875rem;
  color: #6f8b5b;
  font-weight: 600;
  margin: 0;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
  .art-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .art-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}








.blog {
  background: #fffaf2;
  border: 1px solid #d8ccb6;
  border-radius: 16px;
  padding: 1.5rem;
  margin-top: 2rem;
}

.blog h2 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 2rem;
  font-family: "Great Vibes", cursive;
  font-size: 2.5rem;
  color: #9f4f35;
}

.blog-post {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #eadfcd;
}

.blog-post:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.post-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #3d3a2f;
  margin: 0 0 0.5rem 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.3;
}

.post-meta {
  font-size: 0.875rem;
  color: #6f8b5b;
  font-weight: 600;
  margin: 0 0 1rem 0;
}

.post-content {
  line-height: 1.7;
  color: #3d3a2f;
  margin: 0 0 1rem 0;
}

.post-content:last-of-type {
  margin-bottom: 0;
}

/* Responsive design for smaller screens */
@media (max-width: 600px) {
  .blog {
    padding: 1rem;
  }

  .post-title {
    font-size: 1.25rem;
  }
  
  .blog-post {
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
  }
}





.about {
  background: #fffaf2;
  border: 1px solid #d8ccb6;
  border-radius: 16px;
  padding: 2rem;
  margin-top: 2rem;
}

.about h2 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 2rem;
  font-family: "Great Vibes", cursive;
  font-size: 2.5rem;
  color: #9f4f35;
}

/* Intro paragraph */
.about-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #3d3a2f;
  text-align: center;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Main grid layout */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
  align-items: start;
}

.about-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Text blocks */
.about-text-block h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #3d3a2f;
  margin: 0 0 0.75rem 0;
  font-family: Georgia, "Times New Roman", serif;
}

.about-text-block p {
  line-height: 1.7;
  color: #3d3a2f;
  margin: 0 0 1rem 0;
}

.about-text-block p:last-child {
  margin-bottom: 0;
}

/* Images */
.about-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.about-image--tall {
  height: 500px;
  object-fit: cover;
}

.about-image--small {
  height: 200px;
  flex: 1;
  object-fit: cover;
}

/* Row of small images */
.about-image-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Full-width image section */
.about-full-width {
  margin-bottom: 2.5rem;
}

.about-caption {
  font-size: 0.875rem;
  color: #6f6a58;
  font-style: italic;
  margin-top: 0.75rem;
  text-align: center;
}

/* Closing section */
.about-closing {
  background: #f3efe6;
  border: 1px solid #eadfcd;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
}

.about-closing h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #3d3a2f;
  margin: 0 0 1rem 0;
  font-family: Georgia, "Times New Roman", serif;
}

.about-closing p {
  line-height: 1.7;
  color: #3d3a2f;
  margin: 0 0 1rem 0;
}

.about-closing p:last-child {
  margin-bottom: 0;
}

.about-link {
  color: #9f4f35;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid #c46a4a;
  transition: all 0.2s ease;
}

.about-link:hover {
  color: #c46a4a;
  border-bottom-color: #9f4f35;
}

/* Responsive design */
@media (max-width: 768px) {
  .about {
    padding: 1.5rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-image--tall {
    height: 350px;
  }

  .about-intro {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 600px) {
  .about {
    padding: 1rem;
  }

  .about h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .about-image--small {
    height: 150px;
  }

  .about-closing {
    padding: 1rem;
  }
}








.buttons {
  background: #fffaf2;
  border: 1px solid #d8ccb6;
  border-radius: 16px;
  padding: 2rem;
  margin-top: 2rem;
}

.buttons h2 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 2rem;
  font-family: "Great Vibes", cursive;
  font-size: 2.5rem;
  color: #9f4f35;
}

/* Button Areas */
.buttons-area {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #eadfcd;
}

.buttons-area:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.buttons-area h3,
.links-area h3,
.webrings-area h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #3d3a2f;
  margin: 0 0 0.5rem 0;
  font-family: Georgia, "Times New Roman", serif;
}

.buttons-description {
  color: #6f6a58;
  margin: 0 0 1.5rem 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Button Container */
.buttons-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.button-link {
  display: inline-block;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.button-link:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 2px 4px rgba(61, 58, 47, 0.2));
}

.button-link img {
  display: block;
  border: 1px solid #d8ccb6;
  border-radius: 4px;
  background: #f3efe6;
}

/* Button Code Block */
.button-code {
  background: #f3efe6;
  border: 1px solid #eadfcd;
  border-radius: 8px;
  padding: 1rem;
  font-size: 0.85rem;
}

.button-code p {
  margin: 0 0 0.5rem 0;
  color: #3d3a2f;
  font-weight: 600;
}

.button-code code {
  background: #fffaf2;
  border: 1px solid #d8ccb6;
  border-radius: 4px;
  padding: 0.5rem;
  display: block;
  overflow-x: auto;
  color: #3d3a2f;
  font-family: "Courier New", monospace;
  font-size: 0.8rem;
  word-break: break-all;
}

/* Links Area */
.links-area {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #eadfcd;
}

.links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.links-list li {
  margin: 0;
  padding: 0;
}

.link-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #9f4f35;
  text-decoration: none;
  border-bottom: 2px solid #c46a4a;
  transition: all 0.2s ease;
  display: inline-block;
}

.link-title:hover {
  color: #c46a4a;
  border-bottom-color: #9f4f35;
}

.link-description {
  color: #6f6a58;
  margin: 0.5rem 0 0 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Webrings Area */
.webrings-area {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.webring-item {
  background: #f3efe6;
  border: 1px solid #eadfcd;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.webring-item:last-child {
  margin-bottom: 0;
}

.webring-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #3d3a2f;
  margin: 0 0 0.5rem 0;
  font-family: Georgia, "Times New Roman", serif;
}

.webring-description {
  color: #6f6a58;
  margin: 0 0 1rem 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.webring-nav {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.webring-link {
  padding: 0.5rem 1rem;
  background: #fffaf2;
  border: 1px solid #d8ccb6;
  border-radius: 6px;
  color: #9f4f35;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.webring-link:hover {
  background: #d8ccb6;
  color: #3d3a2f;
  border-color: #9f4f35;
}

/* Responsive Design */
@media (max-width: 600px) {
  .buttons {
    padding: 1.5rem;
  }

  .buttons h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .buttons-container {
    gap: 1rem;
    justify-content: center;
  }

  .button-link:hover {
    transform: scale(1.05);
  }

  .webring-nav {
    flex-direction: column;
  }

  .webring-link {
    width: 100%;
    text-align: center;
  }
}
