/* ==========================================================================
   Sputnik Kino — spk2
   Modern CSS (Grid + Flexbox, no framework)
   ========================================================================== */

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }

/* --- Custom Properties --- */
:root {
    --font-main: 'Roboto Condensed', 'Helvetica Neue', Helvetica, sans-serif;
    --color-text: #0a0a0a;
    --color-bg: #fff;
    --color-border: #000;
    --color-muted: #666;
    --color-light: #f5f5f5;
    --color-overlay: rgba(0, 0, 0, 0.5);
    --max-width: 70rem;
    --gap: 1.5rem;
    --radius: 0;
}

/* --- Base --- */
body {
    font-family: var(--font-main);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-text);
    background: var(--color-bg);
    padding-bottom: 60px; /* space for fixed footer */
}

a { color: var(--color-text); }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }

ul, ol { list-style: none; }

/* --- Typography --- */
h1 { font-size: 1.625rem; font-weight: 700; line-height: 1.2; margin-bottom: 0.3em; }
h2 { font-size: 1.375rem; font-weight: 700; line-height: 1.3; margin-bottom: 0.5em; }
h3 { font-size: 1.125rem; font-weight: 700; line-height: 1.3; margin-bottom: 0.4em; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
    max-width: var(--max-width);
    margin: 1.5em auto 1em;
    padding: 0 1rem;
}

.header-inner {
    display: flex;
    height: 7em;
    border: 1px solid var(--color-border);
}

.header-logo {
    flex: 1 1 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-image: url(../img/peace.png); */
    background-origin: content-box;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
    padding: 12px;
}

.header-logo img { max-height: 100%; }

.header-right {
    flex: 0 0 30%;
    border-left: 1px solid var(--color-border);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    /* padding: 0.625em 0.5em; */
}

.header-search {
    display: flex;
    width: 100%;
}

.header-search input {
    width: 100%;
    height: 23px;
    border: 1px solid var(--color-border);
    padding: 2px 5px 2px 25px;
    font-family: var(--font-main);
    font-size: 0.9rem;
    background: url(../img/icon_magnifyingglass.png) no-repeat left center / 17px;
}

.header-search input:focus {
    outline: 2px solid var(--color-border);
    outline-offset: 1px;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   NAVIGATION — Desktop (matching spk style)
   ========================================================================== */
.main-nav {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-inner {
    position: relative;
    margin-left: -0.2em;
}

.nav-list {
    display: flex;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 1000;
}

.nav-list > li {
    position: relative;
    float: left;
    border: 1px solid transparent;
    margin-right: 0;
}

/* Spacing between top-level items — mirrors spk inline margins */
.nav-list > li:nth-child(1) { margin-right: 3em; }                          /* Home */
.nav-list > li:nth-child(2) { margin-right: 2em; min-width: 160px; }        /* Filme */
.nav-list > li:nth-child(3) { margin-right: 1em; min-width: 190px; }        /* Events */
.nav-list > li:nth-child(4) { margin-right: 0;   min-width: 210px; } /* Sputnik */
.nav-list > li:nth-child(4):hover,
.nav-list > li:nth-child(4):hover a,
.nav-list > li:nth-child(4):hover .submenu,
.nav-list > li:nth-child(4):hover .submenu a { cursor: url(../img/icon_sputnik_cursor.png), auto; }

.nav-list > li > a {
    display: block;
    font-weight: 700;
    font-size: 2.25em;
    padding: 2px 10px 7px 11px;
    text-decoration: none;
    white-space: nowrap;
    width: 100%;
}

.nav-list > li > a:link,
.nav-list > li > a:visited {
    text-decoration: none;
}

.nav-list > li > a:hover {
    text-decoration: underline;
}

/* Hover: show border around item */
.nav-list > li:hover {
    border-color: var(--color-border);
    background-color: rgba(255, 255, 255, 0.9);
}

/* If item has submenu: remove bottom border on hover so submenu connects */
.nav-list > li.has-submenu:hover {
    border-bottom-color: transparent;
}

/* Active state */
.nav-list > li > a.active {
    border: none; /* active handled by parent li if needed */
}

/* Submenu */
.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: -1px;
    z-index: 1001;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--color-border);
    border-top: none;
    min-width: calc(100% + 2px);
    box-sizing: border-box;
    list-style: none;
    margin: 0;
    padding: 0;
}

.has-submenu:hover .submenu { display: block; }

.submenu li {
    border: none;
    margin: 0;
    clear: both;
}

.submenu li:hover {
    border: none;
    background-color: transparent;
}

.submenu li a {
    display: block;
    font-size: 1.5em;
    font-weight: 700;
    padding: 4px 12px;
    text-decoration: none;
    white-space: nowrap;
    text-align: left;
}

.submenu li a:hover { text-decoration: underline; }

/* ==========================================================================
   MOBILE NAVIGATION
   ========================================================================== */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--color-overlay);
    z-index: 8950;
}

.mobile-nav-overlay.visible { display: block; }

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: rgba(240, 240, 240, 0.97);
    z-index: 9000;
    overflow-y: auto;
    padding: 2rem 1.5rem;
    box-shadow: -2px 0 12px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-nav.visible {
    display: block;
    transform: translateX(0);
}

.mobile-nav ul { padding: 0; }

.mobile-nav li { border-bottom: 1px solid #ddd; }

.mobile-nav li a {
    display: block;
    padding: 0.8rem 0;
    font-size: 1.2rem;
    font-weight: 400;
    text-decoration: none;
    color: var(--color-text);
}

.mobile-nav li a:hover { text-decoration: underline; }

/* ==========================================================================
   MAIN LAYOUT — 2-Column Grid
   ========================================================================== */
.site-main {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1.5rem 1rem;
    padding-top: 5em; /* space below absolute-positioned nav */
}

.main-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: var(--gap);
    align-items: start;
}

.content-area { min-width: 0; }

/* ==========================================================================
   CONTENT — Shared
   ========================================================================== */
.content-section {
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 1.5em;
    margin-bottom: 1.5em;
}

.content-section:last-child { border-bottom: none; }

.section-title {
    font-size: 1.625rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.2em;
}

.section-title a { text-decoration: none; }
.section-title a:hover { text-decoration: underline; }

.section-subtitle {
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--color-muted);
    margin-bottom: 0.3em;
}

.section-text {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 1em;
    overflow-wrap: break-word;
}

.section-text a { font-weight: 400; }

.event-content .section-text { white-space: pre-line; }

/* Error message */
.error-message {
    padding: 1em;
    background: var(--color-light);
    margin-bottom: 1em;
    font-weight: 300;
}

/* ==========================================================================
   HOMEPAGE — Movie Tiles
   ========================================================================== */
.movie-tiles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.movie-tile {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    border: 1px solid var(--color-border);
}

.movie-tile a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.movie-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.movie-tile-info {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.92);
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 1rem;
}

.movie-tile:hover img { transform: scale(1.05); opacity: 0.3; }
.movie-tile:hover .movie-tile-info { opacity: 1; }

.movie-tile-title {
    margin-bottom: 0.3em;
    font-size: 2rem;
    font-weight: normal;
    line-height: 2.4rem;

}

.movie-tile-subtitle {
    font-size: 1rem;
    font-weight: 300;
}

/* ==========================================================================
   FILM TOOLBAR (Flyer-Link + Filter in einer Zeile)
   ========================================================================== */
.film-toolbar {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0.75em 0;
    margin-bottom: 1em;
    border-bottom: 1px solid var(--color-border);
}

.programmflyer-link {
    flex-shrink: 0;
    white-space: nowrap;
}

.programmflyer-link a {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-text);
    text-decoration: none;
}

.programmflyer-link a:hover {
    opacity: 0.7;
}

/* ==========================================================================
   FILM FILTERS
   ========================================================================== */
.film-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 0.4em;
}

.filter-label {
    font-weight: 700;
    font-size: 0.9rem;
}

.filter-group select {
    font-family: var(--font-main);
    font-size: 0.9rem;
    padding: 3px 6px;
    border: 1px solid var(--color-border);
    background: var(--color-bg);
    cursor: pointer;
}

.filter-group select:focus {
    outline: 2px solid var(--color-border);
    outline-offset: 1px;
}

.filter-reset {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--color-muted);
}

/* ==========================================================================
   FILM LIST
   ========================================================================== */
.film-list-item {
    display: grid;
    grid-template-columns: 270px 1fr;
    gap: 1.5rem;
    padding: 1.75rem 0 1.75rem;
    /* border-bottom: 1px solid var(--color-border); */
}
.film-list-item:last-child { border-bottom: none; }

.film-list-image img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.film-list-content { min-width: 0; }

/* ==========================================================================
   FILM DETAIL
   ========================================================================== */
.film-detail {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 1.5rem;
}

.film-detail-sidebar { min-width: 0; }
.film-detail-main { min-width: 0; }

/* Image Slider */
.film-slider {
    position: relative;
    overflow: hidden;
    margin-bottom: 1em;
}

.film-slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.film-slider-track img {
    flex: 0 0 100%;
    width: 100%;
    height: 200px;
    object-fit: contain;
    cursor: pointer;
}

.film-slider-nav {
    position: absolute;
    bottom: 0.5em;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 0.25em;
    pointer-events: none;
}

.film-slider-btn {
    background: rgba(0,0,0,0.4);
    border: none;
    color: #fff;
    padding: 2px 8px;
    cursor: pointer;
    font-size: 1.2em;
    pointer-events: auto;
}

.film-slider-btn:hover { background: rgba(0,0,0,0.7); }

/* Film Lightbox */
.film-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.92);
    z-index: 20000;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
}

.film-lightbox.is-open { display: flex; }

.film-lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    display: block;
}

/* Film Metadata */
.film-meta {
    margin-bottom: 1em;
    font-weight: 300;
    line-height: 1.8;
}

.film-meta b { font-weight: 700; }

/* Show Times */
.film-shows {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
    margin-bottom: 1em;
}

.show-box {
    width: 3.2em;
    text-align: center;
    font-size: 0.85rem;
}

.show-box-date {
    border: 1px solid var(--color-border);
    border-bottom: none;
    padding: 3px 2px;
    font-weight: 300;
}

.show-box-date b { font-weight: 700; }

.show-box-buy {
    border: 1px solid var(--color-border);
    padding: 3px 2px;
}

.show-box-buy a {
    text-decoration: none;
    font-weight: 400;
}

.show-box-buy a:hover { text-decoration: underline; }

/* Language indicators */
.lang-omu { background: url(../img/icon_sprache_omu.png) no-repeat right top / 13px; }
.lang-omeu { background: url(../img/icon_sprache_omeu.png) no-repeat right top / 13px; }
.lang-ov { background: url(../img/icon_sprache_ov.png) no-repeat right top / 13px; }

/* Language Legend */
.lang-legend {
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.6;
    margin-top: 1em;
}

.lang-legend table { border-collapse: collapse; }
.lang-legend td { padding: 2px 8px 2px 0; vertical-align: top; background: none; border: none; }
.lang-legend img { vertical-align: middle; }

/* Trailer Embed */
.trailer-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin-top: 1em;
}

.trailer-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ==========================================================================
   EVENTS
   ========================================================================== */
.event-item {
    display: flex;
    gap: 1rem;
    padding-bottom: 1.5em;
    margin-bottom: 1.5em;
    border-bottom: 1px solid var(--color-border);
}

.event-item:last-child { border-bottom: none; }

.event-image { flex: 0 0 160px; }
.event-image img { max-width: 100%; height: auto; }
.event-content { flex: 1; min-width: 0; }

/* --- Concerts: stack image above text on desktop --- */
.event-item.event-item--concert {
    flex-direction: column;
    align-items: flex-start; /* keep content left-aligned */
}
.event-item.event-item--concert .event-image {
    flex: 0 0 auto; /* override fixed column width */
    /* max-width: 420px;  larger possible preview for concerts */
    margin: 0 0 1rem;
    align-self: center; /* center image within the stacked layout */
}

/* ==========================================================================
   NEWS
   ========================================================================== */
.news-item {
    padding-bottom: 1.5em;
    margin-bottom: 1.5em;
    border-bottom: 1px solid var(--color-border);
}

.news-item:last-child { border-bottom: none; }

.news-date {
    font-size: 0.85rem;
    color: var(--color-muted);
    margin-bottom: 0.3em;
}

/* ==========================================================================
   COMING SOON
   ========================================================================== */
.coming-soon-item {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 1rem;
    padding-bottom: 1.5em;
    margin-bottom: 1.5em;
    border-bottom: 1px solid var(--color-border);
}

.coming-soon-item:last-child { border-bottom: none; }
.coming-soon-image img { width: 100%; height: auto; }

/* ==========================================================================
   SCHEDULE SIDEBAR
   ========================================================================== */
.schedule {
    margin-top: 0;
}

.schedule-dates {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    align-items: baseline;
    margin-bottom: 0.5em;
}

.schedule-date {
    font-weight: 700;
    font-size: 1.2em;
    padding-right: 8px;
}

.schedule-date a { text-decoration: none; }
.schedule-date a:hover { text-decoration: underline; }
.schedule-date.is-active { text-decoration: underline; }

.schedule-nav {
    font-weight: 700;
    font-size: 1.1em;
    padding-right: 8px;
    cursor: pointer;
}

.schedule-nav a { text-decoration: none; }

.schedule-shows { margin-top: 0.625em; }

.schedule-shows table {
    width: 100%;
    border-collapse: collapse;
}

.schedule-shows td {
    font-size: 1rem;
    padding: 0 10px 8px 0;
    vertical-align: top;
    background: none;
    border: none;
}

.schedule-shows tr:nth-of-type(2n) { background: none; }

.schedule-shows a { text-decoration: none; }
.schedule-shows a:hover { text-decoration: underline; }

/* Spielwoche / program week styles */
.program-week .day-header { font-weight: 700; margin: 0.5em 0; }
.program-week .week-shows { width: 100%; border-collapse: collapse; margin-top: 0.5em; }
.program-week .week-shows td { padding: 0.25rem 0.5rem; vertical-align: top; }
.program-week .show-time { width: 4.2rem; white-space: nowrap; color: #666; }
.program-week .show-auditorium { color: #666; font-size: 0.95em; padding-bottom: 0.25rem; }
.program-week .show-meta { color: #444; font-size: 0.9em; margin-top: 0.25rem; }

/* per-day table */
.program-week .day-table { margin-bottom: 1.25rem; border: 1px solid #efefef; border-radius: 4px; overflow: hidden; }
.program-week .day-table .day-header { background: none; padding: 0.75rem; font-size: 1.35rem; font-weight: 700; color: #222; }
.program-week .spielwoche-header { font-size: 1.45rem; font-weight: 700; margin: 0.5rem 0 1rem; color: #111; }
.program-week .day-table td { border-top: 1px solid #eee; }
.program-week .day-table .show-time { width: 5.2rem; font-weight: 600; }
.program-week .day-table .show-title a { color: inherit; text-decoration: none; }
.program-week .day-table .show-title a:hover { text-decoration: underline; }

/* ==========================================================================
   TICKETS (Kinoheld Widget)
   ========================================================================== */
.tickets-notice {
    font-weight: 400;
    margin-bottom: 1em;
}

.tickets-widget iframe {
    width: 100%;
    height: 830px;
    border: none;
    display: block;
}

/* ==========================================================================
   NEWSLETTER FORM
   ========================================================================== */
.newsletter-form label {
    display: block;
    font-weight: 700;
    margin-bottom: 0.3em;
}

.newsletter-form input[type="email"],
.newsletter-form input[type="text"] {
    width: 100%;
    padding: 8px;
    border: 1px solid var(--color-border);
    font-family: var(--font-main);
    font-size: 1rem;
    margin-bottom: 1em;
}

.newsletter-form input:focus {
    outline: 2px solid var(--color-border);
    outline-offset: 1px;
}

.newsletter-form .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5em;
    margin-bottom: 1em;
    font-weight: 300;
}

.newsletter-form .checkbox-label input { margin-top: 4px; }

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--color-bg);
    color: var(--color-text);
    border: 1px solid var(--color-border);
    font-family: var(--font-main);
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.btn:hover { background: var(--color-text); color: var(--color-bg); }

/* ==========================================================================
   CMS PAGE CONTENT
   ========================================================================== */
.page-content h2 {
    font-size: 1.5em;
    font-weight: 700;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

.page-content h3 {
    font-size: 1.25em;
    font-weight: 700;
    margin-top: 1em;
    margin-bottom: 0.4em;
}

.page-content p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 1em;
}

.page-content ul, .page-content ol {
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 1em;
    padding-left: 1.5em;
    list-style-type: disc;
}

.page-content li { margin-bottom: 0.4em; }

/* ==========================================================================
   404 PAGE
   ========================================================================== */
.error-page {
    text-align: center;
    padding: 4rem 1rem;
}

.error-page h1 { font-size: 3rem; margin-bottom: 0.5em; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.92);
    /* keep horizontal inset so .footer-inner border aligns with header's inner border */
    z-index: 10000;
    /* padding: 6px 1rem; */
}

.footer-inner {
    max-width: 68rem; /* reduced from var(--max-width) to make footer-inner narrower */
    margin: 0 auto;
    padding: 0; /* content uses full width of the centered frame */
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--color-border);
    border-left: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
    border-bottom: none;
}


.footer-left { display: flex; flex: 1 1 auto; flex-wrap: wrap; align-items: center; gap: 0.5rem; }

.footer-right { flex: 0 1 auto; display:flex; gap:1rem; align-items:center; padding-right: 1.5rem; }

.footer-social {
    display: flex;
    gap: 5px;
    align-items: center;
}

/* constrain footer partner logos so they never overflow the centered box */
.footer-right img {
    max-width: 90px; /* keep logos compact so they don't push layout */
    width: auto;
    height: auto;
    max-height: 48px;
    display: block;
}
.footer-right img:nth-child(3) {
    max-width: 120px; /* allow the last (Indiekino) logo to be wider */
}

.footer-social a { display: inline-flex; }
.footer-social img { width: 20px; height: 20px; }

.footer-contact {
    display: flex;
    gap: 0;
    font-size: 0.8rem;
}

.footer-contact span { margin-left: 1rem; }
.footer-contact a { color: var(--color-text); }

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.footer-links li {
    border: 1px solid var(--color-border);
    border-left: none;
    font-size: 0.8rem;
}

.footer-links li:first-child { border-left: 1px solid var(--color-border); }

.footer-links a {
    display: block;
    padding: 1px 8px;
    text-decoration: none;
    text-align: center;
}

.footer-links a:hover { text-decoration: underline; }

.footer-right {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

/* ==========================================================================
   RESPONSIVE — Tablet (< 960px)
   ========================================================================== */
@media (max-width: 960px) {
    .main-grid {
        grid-template-columns: 1fr;
    }

    .sidebar { order: -1; }

    .film-detail {
        grid-template-columns: 1fr;
    }

    .film-detail-sidebar {
        max-width: 350px;
    }

    .footer-right { display: none; }
    .footer-contact { display: none; }
}

/* ==========================================================================
   RESPONSIVE — Mobile (< 640px)
   ========================================================================== */
@media (max-width: 640px) {
    /* Header */
    .header-logo {
        background-image: none;
        padding: 8px;
    }

    /* mobile: remove header margins/padding so header aligns with viewport */
    .site-header { margin: 0; padding: 0; }

    .header-search { display: none; }

    .hamburger {
        display: flex;
        font-size: 2em;
    }

    .header-right {
        justify-content: center;
        align-items: center;
    }

    /* Navigation */
    .main-nav { display: none; }

    /* Content */
    .movie-tiles { grid-template-columns: 1fr; }

    .film-list-item {
        grid-template-columns: 1fr;
    }

    /* mobile: film list image should use full width */
    .film-list-image {
        max-width: 100%;
        width: 100%;
        margin: 0;
    }
    .film-list-image img {
        height: auto; /* remove fixed 220px height on small screens */
    }

    .film-toolbar { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    .film-filters { gap: 0.5rem; justify-content: flex-start; }
    .filter-group { width: 100%; }
    .filter-group select { flex: 1; }

    .coming-soon-item { grid-template-columns: 1fr; }
    .coming-soon-image { max-width: 200px; }

    .program-week .show-time { width: 3rem; font-size: 0.85em; }
    .program-week .day-table .show-time { width: 3rem; }
    .program-week .show-auditorium { white-space: nowrap; }

    .event-item { flex-direction: column; }
    .event-image {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }
    .event-image img {
        width: 100%;
    }

    /* Slider: nur erstes Bild, kein Wechsel */
    .film-slider-track img:not(:first-child) { display: none; }
    .film-slider-nav { display: none; }

    /* Lightbox disabled on mobile */
    .film-lightbox { display: none !important; }
    .film-slider-track img { cursor: default; }

    /* Footer */
    .footer-inner { flex-direction: column; align-items: center; }
    .footer-links { justify-content: center; }
    .footer-social { display: none; }
    .footer-right { display: flex; justify-content: center; padding: 4px 0; }
    .footer-noshow { display: none; }
}

/* ==========================================================================
   PRINT
   ========================================================================== */
@media print {
    .site-footer, .sidebar, .main-nav, .hamburger, .header-search { display: none; }
    body { padding-bottom: 0; }
}

.footer-icon {
    padding-top: 3px;
}

.rss a,
.rss a:hover {
    text-decoration: none;
}
