@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;700&family=Libre+Caslon+Text:wght@400;700&display=swap');

body {
  color: #222;
  font-family: 'Libre Caslon Text', 'Times New Roman', Times, serif;
  background: #f7f7fa;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}

header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 2rem 0 1rem 0;
  margin-bottom: 2rem;
  text-align: center;
}
header h1 {
  font-size: 3.125rem;
  color: #2d1400 !important;
  margin: 0;
  font-family: 'Libre Caslon Text', 'EB Garamond', 'Caslon', serif;
}
nav ul {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
}
nav a {
  color: #520400;
  font-family: 'Libre Caslon Text', serif;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
nav a:hover, nav a.active {
  background: #eae4df;
  color: #3d2107;
  text-decoration: none;
}
main {
  min-height: 60vh;
}
.card,
footer,
button, .btn {
  font-family: 'Libre Caslon Text', 'Times New Roman', Times, serif;
}
.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 1.5rem;
  margin-bottom: 2rem;
}
h1, h2, h3, h4, h5, h6 {
  color: #210F04 !important;
  font-family: 'Libre Caslon Text', 'EB Garamond', 'Caslon', serif;
  font-weight: 700;
}
footer {
  background: #fff;
  border-top: 1px solid #e0e0e0;
  text-align: center;
  padding: 1.5rem 0;
  color: #888;
  margin-top: 2rem;
}
button, .btn {
  background: #515A47 !important;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.7rem 1.2rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
button:hover, .btn:hover {
    background: #515A47 !important;
}
img {
  max-width: 100%;
  border-radius: 8px;
  margin: 1rem 0;
}
@media (max-width: 600px) {
  .container {
    padding: 1rem;
  }
  header h1 {
    font-size: 2.125rem;
  }
  nav ul {
    gap: 1rem;
  }
  .card {
    padding: 1rem;
  }
}
p {
  line-height: 1.7;
}
a[href="/"],
a[href="/shop/"],
a[href="/contact/"],
a[href="/about/"],
a[href="/portfolio/"] {
  color: #210F04 !important;
  font-family: 'Libre Caslon Text', serif !important;
  font-weight: 700;
  text-decoration: none;
}