/* Fonts from Google */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=EB+Garamond&family=Special+Elite&display=swap');

:root {
  --morris-grey: #b7ad9a;   /* Morris Room Grey */
  --rojo-marron: #5e2f2a;  /* Rojo Marrón */
  --tungsten: #4a423e;     /* Tungsten */
  --rockweed: #4c3c44;     /* Rockweed */
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--morris-grey);
  font-family: 'EB Garamond', serif;
  color: var(--tungsten);
  line-height: 1.6;
    cursor: url('https://iili.io/KH5FKP4.png') 16 16, auto;
}

button, a {
  cursor: url('https://iili.io/KH5FKP4.png'), auto; /* same as your main cursor */
}


h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: var(--rojo-marron);
}

a {
  color: var(--rockweed);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

p {
  font-size: 1.3em;   /* Increase this value to make text larger */
  line-height: 1.8;   /* Optional: improves readability */
}


.container {
  max-width: 800px;
  margin: auto;
  padding: 20px;
}

/* Slash page */
.splash {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

.splash img {
  max-width: 250px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.enter-button {
  padding: 10px 20px;
  background: var(--rojo-marron);
  color: white;
  border-radius: 5px;
  font-family: 'Special Elite', monospace;
}

.enter-button:hover {
  background: var(--rockweed);
}

/* Home navigation */
.nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.nav-item {
  text-align: center;
}

.nav-item img {
  width: 120px;
  height: auto;
  margin-bottom: 10px;
}

/* Category page */
.post-list {
  list-style: none;
  padding: 0;
}

.post-list li {
  margin: 10px 0;
}

.post-list a {
  font-family: 'Playfair Display', serif;
  font-size: 1.2em;
}

/* Post page */
.post-header {
  margin-bottom: 20px;
  text-align: center;
}

.post-date {
  font-family: 'Special Elite', monospace;
  font-size: 0.9em;
  color: var(--rockweed);
}

.post-image {
  display: block;
  margin: 20px auto;
  max-width: 100%;
  border: 2px solid var(--rockweed);
}

/* Base */
body {
  margin: 0;
  padding: 0;
  background-color: var(--morris-grey);
  font-family: 'EB Garamond', serif;
  color: var(--tungsten);
  position: relative;
}

/* Reset + Base */
body {
  margin: 0;
  padding: 60px 60px; /* leave space for top/bottom & side borders */
  background-color: var(--morris-grey);
  font-family: 'EB Garamond', serif;
  color: var(--tungsten);
  position: relative;
}

