/* ================================
   SAMuRA – Global Theme Stylesheet
   ================================ */

/* --- Colours --- */
:root {
  --samura-aqua: #00b8b8;
  --samura-dark: #1a1a1a;
  --samura-light: #f5f5f5;
  --samura-grey: #777;
  --samura-border: #e0e0e0;
}

/* --- Global Reset --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* --- Body --- */
body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: var(--samura-aqua);
  color: white;
  line-height: 1.6;
  padding-bottom: 4rem;
}

/* --- Headings --- */
h1, h2, h3, h4 {
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
}

/* --- Links --- */
a {
  color: var(--samura-aqua);
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  text-decoration: underline;
}

/* --- Buttons --- */
.button {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: var(--samura-aqua);
  color: white;
  border-radius: 4px;
  font-size: 0.95rem;
  transition: background 0.2s ease;
}

.button:hover {
  background: #009999;
}

/* --- Containers --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

/* --- Cards --- */
.card {
  background: white;
  padding: 1.5rem;
  border: 1px solid var(--samura-border);
  border-radius: 6px;
  margin-bottom: 1.5rem;
}

/* --- Footer --- */
footer {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--samura-grey);
  font-size: 0.9rem;
}
header h1 {
    color: white !important;
}

header p {
    color: white !important;
}
.policy-doc-btn {
    color: white !important;
}

.policy-doc-btn {
    color: white !important;
}

.policy-doc-btn,
.policy-doc-btn:link,
.policy-doc-btn:visited,
.policy-doc-btn:hover,
.policy-doc-btn:active {
    color: white !important;
}
.submission-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    color: #222;
    line-height: 1.6;
    font-family: Georgia, "Times New Roman", serif;
    background: rgba(255,255,255,0.85);
}

h1, h2, h3 {
    font-weight: 600;
    margin-top: 40px;
}

pre.process-flow {
    background: #f7f7f7;
    padding: 20px;
    border-left: 4px solid #cc0000;
    font-size: 1.1rem;
    white-space: pre-wrap;
}

.caption {
    font-style: italic;
    margin-top: 10px;
}

.submission-footnote {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    font-size: 0.9rem;
    color: #555;
}

.red {
    color: #cc0000;
    font-weight: bold;
}

.step-aqua {
    color: #006b6b;
    font-weight: 700;
}

.legal-text {
    color: #222;
    font-size: 1.05rem;
    line-height: 1.6;
}
.submission-wrapper h1,
.submission-wrapper h2,
.submission-wrapper h3 {
    color: #006b6b !important;
    font-weight: 700;
}
/* Form styling */
.samura-form label {
    display: block;
    margin-top: 20px;
    font-weight: 600;
    color: #006b6b;
}

.samura-form input[type="text"],
.samura-form input[type="email"],
.samura-form input[type="file"],
.samura-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    border: 1px solid #aaa;
    border-radius: 4px;
    font-size: 1rem;
}

.samura-button {
    margin-top: 30px;
    padding: 12px 20px;
    background-color: #006b6b;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
}

.samura-button:hover {
    background-color: #004f4f;
}
.artist-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.artist-list li {
    margin-bottom: 12px;
    font-size: 20px;
}

.artist-list a {
    color: #0a6f6f;
    text-decoration: none;
    font-weight: bold;
}

.artist-list a:hover {
    text-decoration: underline;
}
/* SAMuRA – Vormveld groottes */
.submission-form textarea {
    width: 100%;
    min-height: 300px;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #0a6f6f;
    border-radius: 4px;
    box-sizing: border-box;
    margin-bottom: 20px;
}
textarea[name="biography"] {
    min-height: 380px;
}