:root {
  --bg-main: #e6d9ff;
  --bg-card: #ffffff;
  --text-main: #2b2b2b;
  --text-muted: #555555;
  --accent-primary: #4f7c7a;
  --accent-secondary: #c97b84;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;

  background-image: url("https://fashionjournal.com.au/wp-content/uploads/2020/06/fashion-journal-cottagecore-mob.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}


header {
  text-align: center;
  padding: 2.5rem 1.5rem 2rem;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}

footer {
  text-align: center;
  padding: 1.5rem;
  font-size: 0.9rem;
  color: #555;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  margin-bottom: 2rem;
}

header,
main,
footer {
  background-color: #ffffff;
  border-left: 12px solid #e6d9ff;
  border-right: 12px solid #e6d9ff;
}

.banner {
  width: 100%;
  max-width: 900px;
  border-radius: 14px;
  margin-bottom: 1rem;
}

h1, h2 {
  color: var(--accent-primary);
  letter-spacing: 0.04em;
}

h1 {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
}

h2 {
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

p {
  font-size: 1.05rem;
}

main {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem 1.5rem;
  border-radius: 18px;
}


blockquote {
  background-color: var(--bg-card);
  border-left: 6px solid var(--accent-secondary);
  padding: 1.2rem 1.5rem;
  margin: 2.5rem 0;
  font-style: italic;
}

cite {
  display: block;
  margin-top: 0.75rem;
  text-align: right;
  font-style: normal;
  color: var(--text-muted);
}

dl {
  display: grid;
  gap: 1.5rem;
}

dt a {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--accent-primary);
  text-decoration: none;
}

dt a:hover {
  text-decoration: underline;
}

dd {
  margin: 0.5rem 0 0;
  padding: 1rem;
  background-color: var(--bg-card);
  border-radius: 12px;
}

a {
  color: var(--accent-secondary);
  transition: color 0.25s ease;
}

a:hover {
  color: #a85f67;
}

a:focus-visible {
  outline: 3px solid var(--accent-secondary);
  outline-offset: 2px;
}

footer {
  text-align: center;
  padding: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}