@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&display=swap');

.tagline {
  text-align: center;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
  margin: 0 0 1.5rem;
  text-shadow:
    0.4px 0.4px 0 white,
    -0.4px 0.4px 0 white,
    0.4px -0.4px 0 white,
    -0.4px -0.4px 0 white,
    0.4px 0 0 white,
    -0.4px 0 0 white,
    0 0.4px 0 white,
    0 -0.4px 0 white;
  background: black;
}

.banner {
  background-image: url('/static/mantel.jpg');
  background-size: cover;
  background-position: center;
  padding: 1rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

:root {
  --bg: #faf8f5;
  --text: #2b2b2b;
  --accent: #063970;
  --max-width: 660px;
}

.chef-kiss {
  height: 4.8em;
  width: auto;
  vertical-align: middle;
  margin-left: 0.3em;
  transform: scaleX(-1);
}

body {
  font-family: Georgia, serif;
  font-size: 18px;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
  padding: 1rem;
  color: #222;
}

h1 {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.8rem, 6vw, 3.5rem);
  margin: 0 auto 1.5rem;
  color: #7a1f1f;
  text-shadow:
    2px 2px 0 white,
    -2px 2px 0 white,
    2px -2px 0 white,
    -2px -2px 0 white,
    2px 0 0 white,
    -2px 0 0 white,
    0 2px 0 white,
    0 -2px 0 white;
}

.h1-blog{
  font-family: 'Playfair Display', serif;  
  text-align: left;

}

ul {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  border-radius: 4px;
}


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

a:hover {
  text-decoration: underline;
}

small {
  color: var(--text);
  opacity: 0.55;
  margin-left: 8px;
}

p {
  max-width: var(--max-width);
  margin: 1rem auto;
  text-align: left;
}

nav {
  text-align: center;
}

@media (max-width: 480px) {
  body {
    font-size: 20px;
  }

  h1 {
    font-size: 1.8rem;
  }
}


article img, .post img, img {
  display: block;
  margin: 1.5rem auto;
  max-width: 100%;
  width: 500px;
  height: auto;
  border-radius: 6px;
}
