/* Lucky Foot - CSS Last Updated 21 Feb 2026 */

:root {
  --main-bg-color: #112A40;
  --main-color: #F8A0D0;
  --secondary-color: #A876E9;
  --tertiary-color: #F9C177;
  font-size: clamp(1rem, 1rem + 1vw, 1.25rem);
  line-height: 1.6;
}

::selection {
  color: var(--main-bg-color);
  background: var(--tertiary-color);
}

html {
  font-size: 100%;
}
  
body {
  margin: 0 auto;
  padding: 0 1rem;
  max-width: 666px;
  background: var(--main-bg-color);
  color: var(--main-color);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: clamp(1rem, 0.875rem + 0.25vw, 1.125rem);
  line-height: 1.6;
}

/* Headings */

.site-title {
  font-size: clamp(2.4rem, 1.8rem + 2.2vw, 3.6rem);
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
  font-style: italic;
  font-size: clamp(1.5rem, 8vw + 0.1rem, 3.6rem);
}

.site-title a:before {
  content: "★ ";
  font-style: normal;
}

.site-title a:after {
  content: " ★";
  font-style: normal;
}

.site-title a {
  color: var(--main-color);
  text-decoration: none;
  color: var(--main-bg-color);
  background: var(--tertiary-color);
}

p.slogan {
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0;
}

article h1 {
  color: var(--tertiary-color);
}

h1 {
  font-size: clamp(2rem, 1.5rem + 2vw, 3.5rem);
  line-height: 1.2;
}

h2 {
  font-size: clamp(1.5rem, 1.25rem + 1vw, 2.5rem);
  line-height: 1.3;
}

h3 {
  font-size: clamp(1.25rem, 1rem + 0.75vw, 2rem);
  line-height: 1.4;
}

h4 {
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.5rem);
  line-height: 1.4;
}

p {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  line-height: 1.6;
}

.small-text {
  font-size: clamp(0.75rem, 0.75rem + 0.15vw, 1rem);
  line-height: 1;
}

blockquote {
  border-left: solid 0.5em var(--secondary-color);
  padding-left: 0.5em;
  margin-block-start: 0;
  margin-inline-start: 0;
  font-style: italic;
  color: var(--tertiary-color);
}

a {
  color: var(--secondary-color);
}

a:hover {
  color: var(--main-bg-color);
  background: var(--main-color);
}

nav.main-nav ul, nav.footer-nav ul {
  list-style-type: none;
  padding-inline-start: 0;
  display: flex;
}

nav.main-nav ul li, nav.footer-nav ul li {
  margin-right: 20px;
}

nav.main-nav ul li:last-child, nav.footer-nav ul li:last-child {
  margin-right: 0px;
}

nav.pagination {
  display: flex;
  justify-content: space-between;
}

.post-date {
  color: var(--tertiary-color);
  font-variant: small-caps;
}

.pawprint {
  color: transparent;
  text-shadow: 0 0 0 var(--secondary-color);
}