/* Modern Star Wars-inspired theme without copyrighted assets */
:root {
    --bg: #0a0d14;
    --accent: #2bb3ff;
    --text: #e6e6e6;
    --card: #111826;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

header {
    background: #000;
    padding: 20px;
    text-align: center;
    border-bottom: 2px solid var(--accent);
}

header h1 {
    margin: 0;
    font-weight: 300;
    letter-spacing: 2px;
}

nav a {
    color: var(--accent);
    margin: 0 10px;
    text-decoration: none;
    font-size: 1.1rem;
}

.hero {
    text-align: center;
    padding: 80px 20px;
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--accent);
}

.content, .gallery {
    max-width: 900px;
    margin: auto;
    padding: 20px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery .item {
    background: var(--card);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #1c2333;
}

.gallery img {
    max-width: 100%;
    border-radius: 6px;
}

button {
    background: var(--accent);
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
}

button:disabled {
    opacity: 0.5;
}

footer {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    border-top: 1px solid #1c2333;
}

/* Contact form layout */
.contact-section {
    padding-top: 40px;
    padding-bottom: 40px;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form .field {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
}

.contact-form .required {
    color: #ff6b6b;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #333a4a;
    background: #05070d;
    color: var(--text);
    box-sizing: border-box;
    font-size: 1rem;
}

.contact-form textarea {
    min-height: 160px;
    resize: vertical;
}

.contact-form button {
    margin-top: 10px;
}

.hero-image {
    width: 220px;
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 0 auto 20px auto;
    border: 2px solid var(--accent);
}

.home-bio {
    max-width: 900px;        /* limits line length */
    margin: 20px auto;       /* centers the block */
    text-align: center;      /* centers text */
    line-height: 1.6;        /* improves readability */
    padding: 0 20px;         /* adds side breathing room */
}

.appearances-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.appearances-list li {
    margin-bottom: 18px;
    border-bottom: 1px solid #1c2333;
    padding-bottom: 10px;
}

.appearances-list li:last-child {
    border-bottom: none;
}

.appearances-list span {
    font-size: 0.95rem;
    opacity: 0.9;
}

