/* =========================
   THE PAGE & LEAF STYLES
   ========================= */

/* COLORS + FONTS */
:root {
  --ink: #3C382C;
  --sage: #6B7A5A;
  --eucalyptus: #A3B18A;
  --parchment: #F2E9DA;
  --background: #F5EDE5;

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Lora', serif;
}

/* =========================
   BASE
   ========================= */

body {
  margin: 0;
  background-color: var(--background);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
}

/* =========================
   TYPOGRAPHY
   ========================= */

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 0.5px;
  margin: 0;
}

h1 { font-size: 2.5rem; }

h2 {
  font-size: 1.8rem;
  margin-bottom: 10px; /* spacing fix */
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 15px; /* spacing fix */
}

/* Elegant label-style heading */
h4 {
  font-size: 0.85rem;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--sage);
  margin-top: 30px;
  margin-bottom: 10px;
}

/* Tagline */
.tagline {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--sage);
  margin-top: 8px;
}

/* =========================
   HEADER
   ========================= */
   
header.primary {
  text-align: center;
  padding: 20px;
  padding-bottom: 10px; /* tighter bottom spacing */
  border-bottom: 1px solid rgba(107, 122, 90, 0.2); /* softer line */
  position: relative;
  z-index: 1;
  background-color: var(--background);
}

header.primary img {
  width: 120px;
  margin-bottom: 15px;
}

/* =========================
   NAVIGATION
   ========================= */

nav {
  margin-bottom: 10px;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  justify-content: center;
  gap: 25px;
}

nav ul.styled-list {
  margin: 10px 0; /* Override .styled-list margin for nav only */
  max-width: none;
}

nav a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: 0.2s;
}

nav a:hover {
  color: var(--sage);
}

/* =========================
   SECTIONS (FIXED SPACING)
   ========================= */

section {
  max-width: 800px;
  margin: auto;
  padding: 10px 20px 60px;
  text-align: center;
  display: flow-root; /* ← modern fix for margin collapse */
}

section h2 {
  margin-top: 0;
}

#contactContent {
  padding-top: 30px;
  margin-top: 40px;
}

/* =========================
   CARD
   ========================= */

.card {
  background-color: var(--parchment);
  border-radius: 10px;
  padding: 40px;
}

/* =========================
   BUTTONS
   ========================= */

button,
.button {
  font-family: var(--font-body);
  border: 1px solid var(--sage);
  background: none;
  color: var(--sage);
  padding: 10px 22px;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.2s;
}

button:hover,
.button:hover {
  background-color: var(--sage);
  color: white;
}

/* =========================
   DIVIDER
   ========================= */

.divider {
  width: 60px;
  height: 1px;
  background-color: var(--eucalyptus);
  margin: 20px auto;
}

/* =========================
   FOOTER
   ========================= */

footer {
  text-align: center;
  padding: 20px 20px;
  font-size: 0.85rem;
  color: var(--sage);
  border-top: 1px solid #e6e1d9;
}

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

/* =========================
   TEA LEAF BULLETS
   ========================= */

.styled-list {
  list-style: none;
  padding: 0;
  margin: 20px auto 40px; /* ← spacing fix */
  max-width: 500px;
  text-align: left;
}

.styled-list li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}

.styled-list li::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;

  background-image: url("/Images/tealeafbullet.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

#primaryShopContent {
  padding: 10px 20px 60px;
}