/* ===== Public Theme — Flesh to Fiction (black/gold) ===== */
:root {
  --bg: #000;
  --text: #f2f2f2;
  --gold: #e0b248;
  --gold-hover: #f6cf6a;
  --panel: #1c1c1c;
  --border: #e0b248;
}

html, body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== Header ===== */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .5rem 2rem;
  border-bottom: 2px solid var(--border);
}

.trust-icon {
  height: 100px;
  width: auto;
}

.title-block {
  text-align: center;
  flex-grow: 1;
}
.title-block h1 {
  margin: 0;
  font-size: 2rem;
  color: var(--gold);
}
.title-block .tagline {
  margin-top: .3rem;
  font-size: .9rem;
  color: #ccc;
}

/* ===== Menu (sticky top nav) ===== */
.menu {
  background: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: .2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 6px 16px rgba(0,0,0,.35);
}
.menu a,
.menu a:visited {
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
  font-weight: bold;
  font-size: .95rem;
  padding: .2rem .5rem;
}
.menu a:hover,
.menu a.active {
  background: var(--gold);
  color: #000;
  border-radius: 6px;
}

/* ===== Footer ===== */
.site-footer {
  background: #111;
  border-top: 1px solid var(--gold);
  text-align: center;
  padding: 1.5rem 0;
  margin-top: 2rem;
}

/* links directly inside the footer */
.site-footer a {
  color: var(--gold);               /* always gold */
  text-decoration: none;
  font-weight: 600;
  padding: 0 0.4rem;
  transition: color 0.2s ease;
}

.site-footer a:hover,
.site-footer a:focus {
  color: #ffcc66;                   /* brighter gold on hover */
  text-decoration: underline;
}

.site-footer .copyright {
  font-size: 0.9rem;
  color: #888;
}
/* ===== Links ===== */
main a,
.container a,
.notice a,
.card a,
.form-card a {
  color: var(--gold);
}
main a:hover,
.container a:hover,
.notice a:hover,
.card a:hover,
.form-card a:hover {
  color: var(--gold-hover);
  text-decoration: underline;
  background: transparent;
}
main a:visited,
.container a:visited,
.notice a:visited,
.card a:visited,
.form-card a:visited {
  color: var(--gold);
}
a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ===== Cards / Notices ===== */
.notice {
  background: var(--panel);
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  box-shadow: 0 0 15px rgba(0,0,0,.35);
}
.card,
.form-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 0 18px rgba(0,0,0,.35);
}

/* ===== Buttons ===== */
.btn {
  background: var(--gold);
  color: #000;
  padding: .65rem 1rem;
  border: 0;
  border-radius: 10px;
  font-weight: 800;
  cursor: pointer;
}
.btn:hover {
  filter: brightness(1.05);
}
a.btn,
a.btn:visited {
  display: inline-block;
  padding: .5rem .9rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}
a.btn.gold {
  background: var(--gold);
  color: #000;
  border-color: #caa03b;
}
a.btn:hover {
  filter: brightness(1.1);
  text-decoration: none;
}

/* ===== Form controls (dark) ===== */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="date"],
input[type="number"],
input[type="search"],
input[type="file"],
select,
textarea {
  width: 100%;
  padding: .6rem;
  border-radius: 8px;
  border: 1px solid #3a3a3a;
  background: #0e0e0e;
  color: var(--text);
}
input[type="file"] {
  color: #ddd;
}
input[type="number"] {
  appearance: auto;
  -moz-appearance: auto;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: auto;
  margin: 0;
}
input::placeholder,
textarea::placeholder {
  color: #9aa !important;
}
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-text-fill-color: #f2f2f2 !important;
  -webkit-box-shadow: 0 0 0 1000px #0e0e0e inset !important;
  box-shadow: 0 0 0 1000px #0e0e0e inset !important;
  transition: background-color 5000s ease-in-out 0s !important;
}
input[type="file"]::-webkit-file-upload-button,
input[type="file"]::file-selector-button {
  background: #222;
  color: #f2f2f2;
  border: 1px solid #444;
  border-radius: 8px;
  padding: .35rem .6rem;
  cursor: pointer;
}

/* ===== Thank You Page ===== */
.thankyou-box {
  background-color: #1c1c1c;
  border: 1px solid var(--gold);
  padding: 2rem;
  border-radius: 10px;
  max-width: 700px;
  margin: 2rem auto;
  text-align: center;
}
.thankyou-box h2 {
  color: var(--gold);
  margin-top: 0;
}
.thankyou-actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.thankyou-box .btn {
  background: var(--gold);
  color: #000;
  padding: 0.65rem 1.2rem;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: filter 0.2s;
}
.thankyou-box .btn:hover {
  filter: brightness(1.1);
}
.thankyou-box .note {
  margin-top: 1rem;
  color: #bbb;
  font-size: 0.95rem;
}

/* ===== Utilities ===== */
.hidden {
  display: none !important;
  visibility: hidden;
  height: 0;
  width: 0;
  overflow: hidden;
  position: absolute;
  left: -9999px;
}
.login-actions {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}
/* ===== Footer (final override) ===== */
footer.site-footer a,
footer.site-footer a:visited,
footer.site-footer .footer-links a {
  color: var(--gold) !important;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

footer.site-footer a:hover,
footer.site-footer a:focus {
  color: #ffcc66 !important;      /* brighter gold on hover */
  text-decoration: underline;
}

footer.site-footer .copyright {
  font-size: 0.9rem;
  color: #888;
}