@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;1,500&family=Poiret+One&display=swap');

/* Subtle paper texture background */
body {
  margin: 0;
  padding: 0;
  background: #faf7f2 url('https://www.transparenttextures.com/patterns/paper-fibers.png');
  font-family: 'EB Garamond', serif;
  color: #2a1e1e;
  line-height: 1.9;
}

/* Header: layered ink look */
header {
  text-align: center;
  padding: 3rem 1rem 2rem;
  background: rgba(255,255,255,0.6);
  border-bottom: 2px solid #c0a97a;
  box-shadow: inset 0 -6px 10px rgba(0,0,0,0.05);
}
header h1 {
  font-family: 'Poiret One', cursive;
  font-size: 3.2rem;
  margin: 0;
  color: #3a2c25;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 1px 1px 0 #d9cbb4;
}
nav {
  margin-top: 1rem;
}
nav a {
  margin: 0 .8rem;
  text-decoration: none;
  font-weight: 500;
  color: #6a5242;
  border-bottom: 1px solid transparent;
  transition: border .3s ease, background .3s ease;
  padding: .2rem .3rem;
  background: rgba(192,169,122,0.1);
  border-radius: 3px;
}
nav a:hover {
  border-bottom: 1px solid #6a5242;
  background: rgba(192,169,122,0.3);
}

/* Main container: parchment block */
main {
  max-width: 740px;
  margin: 3rem auto;
  padding: 2rem;
  background: #fff url('https://www.transparenttextures.com/patterns/old-wall.png');
  border: 1px solid #d9cbb4;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Headings = soft brush marks */
h2 {
  font-family: 'Poiret One', cursive;
  font-size: 2rem;
  margin: 2rem 0 1rem;
  color: #3a2c25;
  letter-spacing: 0.03em;
  border-left: 6px solid #c0a97a;
  padding-left: .5rem;
  background: linear-gradient(90deg, rgba(192,169,122,0.15), transparent 70%);
}

/* Paragraphs */
p {
  font-size: 1.2rem;
  margin: 1.2rem 0;
}

/* Quotes: rough torn-paper effect */
blockquote {
  margin: 2.5rem auto;
  padding: 1.5rem 2rem;
  font-style: italic;
  border-left: 6px solid #c0a97a;
  color: #4a3a2f;
  max-width: 620px;
  background: #fdfaf5 url('https://www.transparenttextures.com/patterns/fibers.png');
  box-shadow: inset 0 0 10px rgba(0,0,0,0.08);
  border-radius: 3px;
}

/* Images: like prints in a gallery */
img.sketch {
  max-width: 100%;
  margin: 2rem auto;
  display: block;
  border: 10px solid #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25), 0 0 20px rgba(192,169,122,0.4) inset;
  background: #fff url('https://www.transparenttextures.com/patterns/handmade-paper.png');
}

/* Footer: quiet embossed note */
footer {
  margin-top: 4rem;
  padding: 2rem;
  text-align: center;
  font-size: 1rem;
  color: #7c6353;
  border-top: 1px solid #d9cbb4;
  background: #f5f0e8 url('https://www.transparenttextures.com/patterns/paper.png');
  box-shadow: inset 0 3px 8px rgba(0,0,0,0.05);
}
