/* =========================================================
   Wombel TV Landing — main styles (v1.1.0)
   GDPR-safe: system fonts only, no external resources.
   ========================================================= */

:root {
    --wtv-bg:             #0a0a0a;
    --wtv-bg-card:        #141414;
    --wtv-bg-card-hover:  #1c1c1c;
    --wtv-border:         rgba(255, 255, 255, 0.08);
    --wtv-border-hover:   rgba(255, 255, 255, 0.20);
    --wtv-text:           #f5f5f5;
    --wtv-text-muted:     rgba(245, 245, 245, 0.60);
    --wtv-text-subtle:    rgba(245, 245, 245, 0.40);
    --wtv-accent:         #e8b04a;
    --wtv-red:            #ff3e3e;

    --wtv-font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI",
                     Roboto, "Helvetica Neue", Arial, sans-serif;
    --wtv-font-display: "Georgia", "Times New Roman", Times, serif;
}

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

html,
body {
    height: 100%;
}

body {
    background: var(--wtv-bg);
    color: var(--wtv-text);
    font-family: var(--wtv-font-sans);
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%,
            rgba(232, 176, 74, 0.10), transparent 70%),
        radial-gradient(ellipse 80% 60% at 50% 100%,
            rgba(255, 62, 62, 0.06), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.wtv-main {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem 1.5rem;
}

.wtv-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 560px;
    width: 100%;
    margin: 0 auto;
    padding: 3rem 0;
}

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

.wtv-wordmark {
    font-family: var(--wtv-font-display);
    font-size: clamp(3rem, 12vw, 5.25rem);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1;
    margin-bottom: 1.25rem;
}

.wtv-dot {
    color: var(--wtv-accent);
}

.wtv-tagline {
    font-size: clamp(0.8125rem, 2.2vw, 0.9375rem);
    color: var(--wtv-text-muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
}

/* ---------- Link cards ---------- */
.wtv-links {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    width: 100%;
}

.wtv-card {
    display: flex;
    align-items: center;
    gap: 1.125rem;
    padding: 1.125rem 1.375rem;
    background: var(--wtv-bg-card);
    border: 1px solid var(--wtv-border);
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    transition: background 200ms ease,
                border-color 200ms ease,
                transform 200ms ease;
}

.wtv-card:hover,
.wtv-card:focus-visible {
    background: var(--wtv-bg-card-hover);
    border-color: var(--wtv-border-hover);
    transform: translateY(-2px);
}

.wtv-card:focus-visible {
    outline: 2px solid var(--wtv-accent);
    outline-offset: 3px;
}

.wtv-card__iconwrap {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}

.wtv-card--podcast .wtv-card__iconwrap {
    background: rgba(232, 176, 74, 0.12);
    color: var(--wtv-accent);
}

.wtv-card--youtube .wtv-card__iconwrap {
    background: rgba(255, 62, 62, 0.12);
    color: var(--wtv-red);
}

.wtv-icon {
    width: 22px;
    height: 22px;
}

.wtv-card--youtube .wtv-icon {
    width: 24px;
    height: 24px;
}

.wtv-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    min-width: 0;
}

.wtv-card__label {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--wtv-text-subtle);
    font-weight: 600;
}

.wtv-card__title {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--wtv-text);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wtv-arrow {
    width: 18px;
    height: 18px;
    color: var(--wtv-text-subtle);
    flex-shrink: 0;
    transition: transform 200ms ease, color 200ms ease;
}

.wtv-card:hover .wtv-arrow,
.wtv-card:focus-visible .wtv-arrow {
    color: var(--wtv-text);
    transform: translateX(4px);
}

/* ---------- Footer ---------- */
.wtv-footer {
    text-align: center;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
}

.wtv-footer__links {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.wtv-footer__links a {
    color: var(--wtv-text-muted);
    text-decoration: none;
    font-size: 0.8125rem;
    letter-spacing: 0.05em;
    transition: color 180ms ease;
    padding: 0.25rem 0;
    border-bottom: 1px solid transparent;
}

.wtv-footer__links a:hover,
.wtv-footer__links a:focus-visible {
    color: var(--wtv-text);
    border-bottom-color: var(--wtv-accent);
    outline: none;
}

.wtv-footer__copy {
    color: var(--wtv-text-subtle);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

/* ---------- Page view (Impressum etc.) ---------- */
.wtv-main--page {
    padding-top: 1.5rem;
    justify-content: flex-start;
}

.wtv-page-container {
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem 0 4rem;
    flex: 1;
}

.wtv-back {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    color: var(--wtv-text-muted);
    text-decoration: none;
    font-family: var(--wtv-font-display);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 3rem;
    transition: color 180ms ease, transform 180ms ease;
}

.wtv-back:hover,
.wtv-back:focus-visible {
    color: var(--wtv-text);
    outline: none;
}

.wtv-back__icon {
    width: 18px;
    height: 18px;
    transition: transform 180ms ease;
}

.wtv-back:hover .wtv-back__icon,
.wtv-back:focus-visible .wtv-back__icon {
    transform: translateX(-3px);
}

.wtv-page__header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--wtv-border);
}

.wtv-page__title {
    font-family: var(--wtv-font-display);
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.15;
}

.wtv-page__content {
    color: var(--wtv-text);
    font-size: 1rem;
    line-height: 1.7;
}

.wtv-page__content p,
.wtv-page__content ul,
.wtv-page__content ol,
.wtv-page__content blockquote,
.wtv-page__content pre,
.wtv-page__content table {
    margin: 0 0 1.25rem 0;
}

.wtv-page__content h2 {
    font-family: var(--wtv-font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.015em;
    margin: 2.5rem 0 1rem;
}

.wtv-page__content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 2rem 0 0.75rem;
    color: var(--wtv-text);
}

.wtv-page__content h4,
.wtv-page__content h5,
.wtv-page__content h6 {
    font-size: 1rem;
    font-weight: 600;
    margin: 1.5rem 0 0.5rem;
}

.wtv-page__content a {
    color: var(--wtv-accent);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color 180ms ease;
}

.wtv-page__content a:hover,
.wtv-page__content a:focus-visible {
    color: #f5c675;
    outline: none;
}

.wtv-page__content ul,
.wtv-page__content ol {
    padding-left: 1.5rem;
}

.wtv-page__content li {
    margin-bottom: 0.5rem;
}

.wtv-page__content blockquote {
    padding: 0.5rem 0 0.5rem 1rem;
    border-left: 3px solid var(--wtv-border-hover);
    color: var(--wtv-text-muted);
    font-style: italic;
}

.wtv-page__content strong {
    color: var(--wtv-text);
    font-weight: 700;
}

.wtv-page__content code {
    background: var(--wtv-bg-card);
    padding: 0.125rem 0.375rem;
    border-radius: 4px;
    font-size: 0.875em;
}

.wtv-page__content hr {
    border: none;
    border-top: 1px solid var(--wtv-border);
    margin: 2rem 0;
}

.wtv-footer--page {
    border-top: 1px solid var(--wtv-border);
    padding-top: 2rem;
    margin-top: 2rem;
}

/* ---------- WP admin bar tweak ---------- */
#wpadminbar {
    opacity: 0.35;
    transition: opacity 200ms ease;
}
#wpadminbar:hover {
    opacity: 1;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    .wtv-card,
    .wtv-arrow,
    .wtv-back,
    .wtv-back__icon {
        transition: none;
    }
    .wtv-card:hover,
    .wtv-card:focus-visible {
        transform: none;
    }
    .wtv-back:hover .wtv-back__icon,
    .wtv-back:focus-visible .wtv-back__icon {
        transform: none;
    }
}
