/**
 * bio/assets/css/public.css – Styling för publik filmstudio-sida
 * ID: BIO_PUBLIC_CSS
 *
 * Folkets Hus Degerfors-profil (djupröd + varm bakgrund), biografkänsla
 * via mörk hero med filmtitelprägel.
 */

/* === FÄRGVARIABLER === */
:root {
    --fh-red:        #C8102E;
    --fh-red-dark:   #A50D24;
    --fh-velvet:     #3D0A10;
    --fh-velvet-mid: #5C0F18;
    --fh-accent:     #FFFFFF;
    --fh-accent-soft:#F5EDE0;
    --fh-coal:       #1C1C1C;
    --fh-bg:         #F8F5F0;
    --fh-warm-bg:    #EDE8E3;
    --fh-text:       #222222;
    --fh-gold:       #D4A75A;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--fh-bg);
    color: var(--fh-text);
}

.text-muted { color: #5a6473 !important; }

/* === HERO === */
.hero-header {
    background: linear-gradient(135deg, var(--fh-velvet) 0%, var(--fh-velvet-mid) 100%);
    color: #fff;
    padding: 4rem 0 3rem;
    margin-bottom: 0;
    border-bottom: 4px solid var(--fh-gold);
    position: relative;
}

.hero-header h1 {
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.hero-header .season-badge {
    display: inline-block;
    color: var(--fh-gold);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.hero-header .lead {
    color: #fff;
    font-weight: 400;
    opacity: 0.95;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.btn-membership {
    background: var(--fh-gold);
    color: var(--fh-velvet);
    border: none;
    font-weight: 700;
    padding: 0.9rem 2rem;
    font-size: 1.1rem;
    border-radius: 6px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.25);
    transition: transform 0.15s, box-shadow 0.15s;
}
.btn-membership:hover,
.btn-membership:focus {
    background: #e0b872;
    color: var(--fh-velvet);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

/* === SEKTIONER === */
.section {
    padding: 3rem 0;
}
.section-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--fh-velvet);
}

/* === FILMKORT === */
.film-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    background: #fff;
    height: 100%;
}
.film-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(155,29,32,0.15);
}
.film-card .poster {
    aspect-ratio: 2 / 3;
    background: #222;
    background-size: cover;
    background-position: center;
}
.film-card .poster-placeholder {
    aspect-ratio: 2 / 3;
    background: linear-gradient(135deg, var(--fh-velvet), var(--fh-coal));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fh-gold);
    font-size: 3rem;
}
.film-card .card-body {
    padding: 1rem 1.25rem 1.25rem;
}
.film-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--fh-text);
}
.film-card .meta {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}
.film-card .screenings {
    font-size: 0.9rem;
    color: var(--fh-velvet);
    font-weight: 600;
}

/* === ÅLDERSMÄRKE === */
.age-badge {
    display: inline-block;
    min-width: 2.2em;
    padding: 0.15em 0.55em;
    border-radius: 50%;
    font-weight: 800;
    font-size: 0.85rem;
    text-align: center;
    color: #fff;
    background: #6b7280;
}
.age-badge.btl { background: #2e7d32; }
.age-badge.r7  { background: #f9a825; color: #000; }
.age-badge.r11 { background: #ef6c00; }
.age-badge.r15 { background: #c62828; }
.age-badge.unknown { background: #6b7280; }

/* === INFO-BLOCK === */
.info-block {
    background: var(--fh-warm-bg);
    border-radius: 10px;
    padding: 2rem;
}

/* === FOOTER === */
footer.site-footer {
    background: var(--fh-coal);
    color: #ccc;
    padding: 2.5rem 0 2rem;
    margin-top: 3rem;
}
footer.site-footer a {
    color: #fff;
    text-decoration: none;
}
footer.site-footer a:hover {
    text-decoration: underline;
}

/* === FILMDETALJ === */
.film-detail-hero {
    background: linear-gradient(135deg, var(--fh-velvet), var(--fh-coal));
    color: #fff;
    padding: 3rem 0;
}
.film-detail-hero h1 {
    font-weight: 800;
    color: #fff;
}
.film-detail-hero .meta {
    color: var(--fh-gold);
    font-size: 1rem;
    letter-spacing: 1px;
}
.screening-row {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}
