/* The Queen Remains – theme from logo: gold, red, dark, edgy */
:root {
  --gold: #c9a227;
  --gold-light: #e4c04a;
  --red: #a83a3a;
  --red-bright: #c94a4a;
  --brown: #2a1810;
  --bg-dark: #1a1210;
  --bg-card: #251a16;
  --text: #f0e6dc;
  --text-muted: #a09080;
  --outline: #3d2a20;
  --font-display: "Special Elite", "Courier New", monospace;
  --font-body: "Crimson Text", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(201, 162, 39, 0.08), transparent),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(168, 58, 58, 0.06), transparent);
}

/* Google Fonts loaded in HTML */
h1, h2, h3, .nav a, .btn {
  font-family: var(--font-display);
}

a {
  color: var(--gold-light);
  text-decoration: none;
}
a:hover {
  color: var(--gold);
  text-decoration: underline;
}

/* Header */
.site-header {
  background: var(--brown);
  border-bottom: 3px solid var(--gold);
  padding: 0.75rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4), 0 0 40px rgba(201, 162, 39, 0.15);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
}
.logo-link img {
  height: 56px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}
.nav a {
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}
.nav a:hover {
  color: var(--gold);
  text-decoration: none;
}

/* Main content */
main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.page-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--gold);
  margin: 0 0 1.5rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: var(--red);
  color: var(--text);
  border: 2px solid var(--gold);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn:hover {
  background: var(--gold);
  color: var(--brown);
  text-decoration: none;
}

/* Footer */
.site-footer {
  background: var(--brown);
  border-top: 2px solid var(--outline);
  padding: 1.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Placeholder image block */
.placeholder-img {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--outline) 100%);
  border: 2px dashed var(--gold);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  padding: 1rem;
}
.placeholder-img.square {
  aspect-ratio: 1;
}

/* Cards */
.card {
  background: var(--bg-card);
  border: 1px solid var(--outline);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.card-title {
  margin: 0;
  font-size: 1.25rem;
  color: var(--gold);
}

/* Section labels */
.section-label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--red-bright);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--outline);
}
.section-label:first-of-type {
  margin-top: 0;
}
