* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: #fff;          /* fallback color */
  color: #000;
  line-height: 1.5;
  position: relative;        /* needed for pseudo-element background */
}

/* Background image at 30% opacity in black-and-white */
body::before {
  content: "";
  position: fixed;           /* stays in place while scrolling */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/grass.webp') no-repeat center center;
  background-size: cover;
  opacity: 0.1;              /* 30% opacity */
  z-index: -1;               /* behind all page content */
  filter: grayscale(100%);   /* converts image to black-and-white */
}

a {
  text-decoration: none;
  color: inherit;
}

/* =========================
   HEADER
   ========================= */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 15px;
  background: rgba(255, 255, 255, 0.85); /* white at 85% opacity */
  position: sticky;
  top: 0;
  z-index: 50;
}

.logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.35rem;
}

.logo img {
  height: 86px;
  margin-right: 10px;
}

/* New artisan-style header text */
.logo-text {
  font-family: 'Georgia', 'Times New Roman', serif; /* elegant artisan font */
  font-weight: 50;          /* bold, same as Products title */
  font-size: 2rem;         /* match Products title */
  letter-spacing: 2px;       /* subtle artisan feel */
  /text-transform: uppercase;
  color: #000;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.2); /* subtle depth */
}

/* =========================
   NAVIGATION
   ========================= */
nav a {
  margin-left: 18px;
  font-size: 0.95rem;
  color: #000;
}

/* =========================
   CONTAINER
   ========================= */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 48px 24px;
}

/* =========================
   FOOTER
   ========================= */
footer {
  background: #f5f5f5;
  padding: 24px;
  text-align: center;
  font-size: 0.9rem;
}
