/* links.zohner.com — Shared Stylesheet */
/* European minimal design — static HTML link hub */

@font-face {
    font-family: 'iA Writer Quattro';
    src: url('fonts/iAWriterQuattroS-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'iA Writer Quattro';
    src: url('fonts/iAWriterQuattroS-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'iA Writer Quattro';
    src: url('fonts/iAWriterQuattroS-Italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

:root {
    --bg: #fafafa;
    --text: #1a1a1a;
    --text-muted: #888;
    --border: #e5e5e5;
    --border-light: #eee;
    --accent: #1a1a1a;
    --accent-hover: #333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'iA Writer Quattro', 'JetBrains Mono', 'SF Mono', 'Monaco', monospace;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    min-height: 100vh;
    padding: 2rem 1rem;
}

.container {
    max-width: 480px;
    margin: 0 auto;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 2rem;
}

.header-photo {
    width: 140px;
    height: 140px;
    object-fit: cover;
    margin-bottom: 1rem;
    filter: grayscale(100%);
}

.header-name {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.header-tagline {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.header-location {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Sections */
.section {
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

/* Links */
.links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.link {
    display: block;
    padding: 0.875rem 1rem;
    background: #fff;
    border: 1px solid var(--border);
    color: var(--text);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.15s ease;
}

.link:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.link-highlight {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.link-highlight:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
}

.link-label {
    display: block;
}

.link-subtitle {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.link-highlight .link-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* Connect section — label/value pairs */
.connect-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.connect-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: #fff;
    border: 1px solid var(--border);
    font-size: 0.875rem;
}

.connect-item a {
    color: var(--text);
    text-decoration: none;
}

.connect-item a:hover {
    text-decoration: underline;
}

.connect-label {
    color: var(--text-muted);
}

.connect-value {
    text-align: right;
}

/* Divider */
.divider {
    border: none;
    border-top: 1px solid var(--border-light);
    margin: 1.5rem 0;
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

.footer a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
}

.footer a:hover {
    color: var(--text);
}

/* Production page specific */
.production-header {
    text-align: center;
    margin-bottom: 2rem;
}

.production-title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.production-subtitle {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.production-venue {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.production-dates {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Primary CTA button */
.cta-primary {
    display: block;
    padding: 1.25rem 1rem;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    transition: background 0.15s ease;
}

.cta-primary:hover {
    background: var(--accent-hover);
}

/* Artist list */
.artist-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.artist-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: #fff;
    border: 1px solid var(--border);
    font-size: 0.875rem;
}

.artist-item a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.75rem;
}

.artist-item a:hover {
    text-decoration: underline;
}

/* Contact row */
.contact-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.contact-row a {
    color: var(--text);
    text-decoration: none;
}

.contact-row a:hover {
    text-decoration: underline;
}

.contact-row span {
    color: var(--text-muted);
}

/* Social icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding-bottom: 1rem;
}

.social-icons a {
    color: var(--text-muted);
    transition: color 0.15s ease;
}

.social-icons a:hover {
    color: var(--text);
}
