@import 'fonts.css';
@import 'reset.css';
@import 'variables.css';
@import 'layout.css';
@import 'components.css';
@import 'article.css';
@import 'privacy.css';
/* home.css loaded directly via <link> in each page's HTML */

/* Page Specific Overrides & Compositions */

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    background-color: var(--bg-dark);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 10;
    color: var(--text-on-dark);
    max-width: 800px;
}

.hero-content h1 {
    margin-bottom: var(--space-sm);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    color: var(--text-on-dark);
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

/* Intro Section */
.intro-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: var(--space-md);
}

/* Journal Grid */
.journal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

/* Film Trailer Block */
.film-trailer {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
}

.film-trailer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    transition: transform 6s;
}

.film-block:hover .film-trailer-bg {
    transform: scale(1.05);
    /* very subtle zoom */
}

.btn-play {
    position: relative;
    z-index: 10;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transit-smooth);
}

.btn-play::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 16px;
    border-color: transparent transparent transparent #fff;
    margin-left: 6px;
}

.btn-play:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

/* Newsletter Block */
.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 1rem;
    margin-top: var(--space-md);
}

.newsletter-form .input-minimal {
    flex: 1;
}

/* ── Newsletter Spam-Schutz (Honeypots) ────────────────── */
.nl-honeypot {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

/* ── Newsletter Datenschutz-Checkbox ──────────────────── */
.nl-privacy-wrap {
    display: flex;
    align-items: flex-start;
}
.nl-privacy-label {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    cursor: pointer;
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--text-secondary);
}
.nl-privacy-label input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    accent-color: var(--accent-color, #835c3e);
    cursor: pointer;
}
.nl-privacy-label a {
    color: var(--accent-color, #835c3e);
    text-decoration: underline;
}
.nl-privacy-wrap.nl-privacy-error .nl-privacy-label {
    color: #c0392b;
}
.nl-privacy-wrap.nl-privacy-error input[type="checkbox"] {
    outline: 2px solid #c0392b;
    outline-offset: 1px;
}
.nl-field-error {
    border-color: #c0392b !important;
}

/* Footer */
.site-footer {
    padding: var(--space-lg) 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.site-footer p {
    font-size: 0.85rem;
}