/* Banned Punjabi Movie — Landing page (matches design) */
:root {
    --bpm-bg: #0a0a0a;
    --bpm-red: #c62828;
    --bpm-red-hot: #e53935;
    --bpm-paper: #e8dcc8;
    --bpm-muted: #a3a3a3;
    --bpm-font: "Noto Sans", Helvetica, Arial, sans-serif;
    --bpm-display: "Anton", "Bebas Neue", Impact, sans-serif;
    --bpm-head: "Oswald", "Bebas Neue", sans-serif;
}

.bpm-landing {
    margin: 0;
    background: var(--bpm-bg);
    color: #fff;
    font-family: var(--bpm-font);
    line-height: 1.45;
    overflow-x: hidden;
}
.bpm-landing a { color: inherit; text-decoration: none; }
.bpm-landing img { max-width: 100%; display: block; }

/* Header */
.bpm-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: linear-gradient(180deg, rgba(0,0,0,.92), transparent);
    transition: background .25s;
}
.bpm-header.scrolled { background: #000; }
.bpm-header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 14px 4%;
    display: flex;
    align-items: center;
    gap: 20px;
}
.bpm-logo { display: flex; flex-direction: column; flex-shrink: 0; }
.bpm-logo-main {
    font-family: var(--bpm-display);
    font-size: clamp(1.1rem, 2.4vw, 1.65rem);
    letter-spacing: 1px;
    line-height: 1;
}
.bpm-logo-main .w { color: #fff; }
.bpm-logo-main .r { color: var(--bpm-red-hot); }
.bpm-logo-tag {
    font-size: .65rem;
    color: var(--bpm-muted);
    margin-top: 4px;
    letter-spacing: .3px;
}
.bpm-logo.sm .bpm-logo-main { font-size: 1.1rem; }

.bpm-nav {
    display: flex;
    gap: 18px;
    flex: 1;
    justify-content: center;
    flex-wrap: wrap;
}
.bpm-nav a {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ddd;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
}
.bpm-nav a:hover,
.bpm-nav a.active { color: #fff; border-bottom-color: var(--bpm-red); }

.bpm-header-actions { display: flex; gap: 10px; align-items: center; }
.bpm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .5px;
    border-radius: 4px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background .2s, transform .15s;
    white-space: nowrap;
}
.bpm-btn:active { transform: scale(.98); }
.bpm-btn-red { background: var(--bpm-red); color: #fff; }
.bpm-btn-red:hover { background: var(--bpm-red-hot); }
.bpm-btn-outline { background: transparent; border-color: rgba(255,255,255,.7); color: #fff; }
.bpm-btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.bpm-btn-dark { background: #111; border-color: rgba(255,255,255,.45); color: #fff; }
.bpm-btn-dark:hover { background: #222; }
.bpm-btn-lg { padding: 14px 26px; font-size: .95rem; }

.bpm-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
}
.bpm-nav-toggle span {
    display: block;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}

/* Hero */
.bpm-hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding: 110px 0 60px;
    overflow: hidden;
}
.bpm-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: grayscale(.35) brightness(.45);
}
.bpm-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.55) 48%, rgba(0,0,0,.35) 100%),
        linear-gradient(180deg, rgba(0,0,0,.5) 0%, transparent 30%, rgba(0,0,0,.85) 100%);
}
.bpm-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 4%;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 40px;
    align-items: center;
    width: 100%;
}
.bpm-hero-copy h1 {
    font-family: var(--bpm-head);
    font-size: clamp(2rem, 5.5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.05;
    margin: 0 0 18px;
    text-transform: uppercase;
    text-shadow: 0 4px 24px rgba(0,0,0,.7);
}
.bpm-hero-copy h1 .red { color: var(--bpm-red-hot); }
.bpm-stamp-bar {
    display: inline-block;
    background: var(--bpm-red);
    color: #111;
    font-family: var(--bpm-display);
    font-size: 1.15rem;
    letter-spacing: 2px;
    padding: 6px 16px;
    margin-bottom: 14px;
    transform: skewX(-6deg);
    box-shadow: 0 4px 0 #7f1d1d;
}
.bpm-punjabi {
    color: #ddd;
    font-size: 1.05rem;
    margin: 0 0 22px;
    max-width: 34rem;
}
.bpm-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 22px;
    margin-bottom: 28px;
}
.bpm-trust-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: #eee;
}
.bpm-trust-item svg { color: var(--bpm-red-hot); flex-shrink: 0; margin-top: 2px; }
.bpm-trust-item strong { display: block; font-size: .82rem; letter-spacing: .3px; }
.bpm-trust-item span { display: block; font-size: .72rem; color: var(--bpm-muted); }
.bpm-hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

/* Hero art */
.bpm-hero-art {
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bpm-paper {
    background: var(--bpm-paper);
    color: #1a1a1a;
    width: min(100%, 340px);
    padding: 36px 28px 32px;
    transform: rotate(3deg);
    box-shadow: 0 16px 40px rgba(0,0,0,.55);
    position: relative;
}
.bpm-paper::before,
.bpm-paper::after {
    content: '';
    position: absolute;
    width: 48px;
    height: 18px;
    background: rgba(255,255,200,.35);
    top: 10px;
}
.bpm-paper::before { left: 18px; transform: rotate(-8deg); }
.bpm-paper::after { right: 22px; transform: rotate(10deg); }
.bpm-banned-stamp {
    font-family: var(--bpm-display);
    color: var(--bpm-red);
    font-size: 3.2rem;
    letter-spacing: 3px;
    border: 5px solid var(--bpm-red);
    display: inline-block;
    padding: 2px 14px;
    transform: rotate(-12deg);
    margin-bottom: 18px;
    opacity: .92;
}
.bpm-paper p {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0;
}
.bpm-seal {
    position: absolute;
    left: 8%;
    bottom: 12%;
    width: 110px;
    height: 110px;
    border: 4px double var(--bpm-red-hot);
    border-radius: 50%;
    color: var(--bpm-red-hot);
    font-family: var(--bpm-display);
    font-size: .85rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.1;
    background: rgba(0,0,0,.45);
    transform: rotate(-18deg);
}
.bpm-reel {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 10px solid #333;
    background:
        radial-gradient(circle at center, #111 28%, transparent 29%),
        repeating-conic-gradient(from 0deg, #222 0 20deg, #444 20deg 40deg);
    box-shadow: 0 8px 30px rgba(0,0,0,.5);
    opacity: .85;
}

/* Search */
.bpm-search-bar {
    background: #151515;
    border-top: 1px solid #2a2a2a;
    border-bottom: 1px solid #2a2a2a;
    padding: 18px 4%;
}
.bpm-search-form {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #1e1e1e;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 8px 12px;
}
.bpm-search-icon { color: #888; flex-shrink: 0; }
.bpm-search-form input {
    flex: 1;
    min-width: 0;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1rem;
    padding: 10px 4px;
    outline: none;
}
.bpm-search-form select {
    background: #2a2a2a;
    color: #fff;
    border: 1px solid #444;
    border-radius: 4px;
    padding: 10px 12px;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .5px;
}
.bpm-search-go { padding: 10px 16px; }

/* Movies section */
.bpm-movies-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 4% 20px;
}
.bpm-section-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 18px;
    gap: 12px;
}
.bpm-section-head h2 {
    font-family: var(--bpm-head);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    letter-spacing: 1px;
    margin: 0;
}
.bpm-view-all {
    color: var(--bpm-red-hot);
    font-weight: 700;
    font-size: .85rem;
    letter-spacing: .5px;
}
.bpm-view-all:hover { text-decoration: underline; }

.bpm-slider-wrap { position: relative; }
.bpm-slider-track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 8px 4px 24px;
}
.bpm-slider-track::-webkit-scrollbar { display: none; }
.bpm-slider-btn {
    position: absolute;
    top: 35%;
    z-index: 5;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: rgba(198,40,40,.95);
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,.4);
}
.bpm-slider-btn.prev { left: -8px; }
.bpm-slider-btn.next { right: -8px; }
.bpm-slider-btn:hover { background: var(--bpm-red-hot); }

.bpm-movie-card {
    flex: 0 0 auto;
    width: min(180px, 42vw);
}
.bpm-movie-card a { display: block; }
.bpm-card-poster {
    position: relative;
    aspect-ratio: 2/3;
    border-radius: 6px;
    overflow: hidden;
    background: #222;
    margin-bottom: 10px;
}
.bpm-card-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s;
}
.bpm-movie-card:hover .bpm-card-poster img { transform: scale(1.05); }
.bpm-card-shade {
    position: absolute;
    inset: auto 0 0;
    height: 45%;
    background: linear-gradient(transparent, rgba(0,0,0,.85));
}
.bpm-tag {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2;
    background: var(--bpm-red);
    color: #fff;
    font-family: var(--bpm-display);
    font-size: .7rem;
    letter-spacing: 1px;
    padding: 3px 8px;
}
.bpm-card-title {
    font-family: var(--bpm-head);
    font-size: .95rem;
    margin: 0 0 4px;
    text-transform: uppercase;
    letter-spacing: .3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.bpm-card-banned {
    color: var(--bpm-red-hot);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .5px;
    margin: 0 0 6px;
}
.bpm-card-meta {
    display: flex;
    gap: 10px;
    font-size: .72rem;
    color: var(--bpm-muted);
}
.bpm-empty {
    padding: 40px;
    text-align: center;
    color: var(--bpm-muted);
    background: #151515;
    border-radius: 8px;
}
.bpm-empty a { color: var(--bpm-red-hot); }

/* Benefits */
.bpm-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1280px;
    margin: 10px auto 0;
    padding: 28px 4%;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    background: #0f0f0f;
}
.bpm-benefit {
    display: flex;
    gap: 12px;
    align-items: center;
}
.bpm-benefit-icon {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.bpm-benefit strong { display: block; font-size: .95rem; }
.bpm-benefit span { display: block; font-size: .75rem; color: var(--bpm-muted); }

/* Join bar */
.bpm-join-bar {
    background: linear-gradient(90deg, #5c1212, #8b1e1e 40%, #5c1212);
    padding: 22px 4%;
}
.bpm-join-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
}
.bpm-fist { font-size: 2rem; }
.bpm-join-inner p {
    flex: 1;
    margin: 0;
    font-family: var(--bpm-head);
    font-size: clamp(.95rem, 2vw, 1.25rem);
    letter-spacing: .5px;
    min-width: 200px;
}

/* Footer */
.bpm-footer {
    background: #000;
    padding: 36px 4% 28px;
    border-top: 1px solid #222;
}
.bpm-footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}
.bpm-footer-links { display: flex; flex-wrap: wrap; gap: 16px; }
.bpm-footer-links a { color: var(--bpm-muted); font-size: .85rem; }
.bpm-footer-links a:hover { color: #fff; }
.bpm-copy { color: #666; font-size: .75rem; margin: 0; }

/* Inner pages (About / Contact) */
.bpm-page {
    padding: 120px 4% 60px;
    min-height: 70vh;
    background:
        radial-gradient(ellipse at top, rgba(198,40,40,.18), transparent 55%),
        #0a0a0a;
}
.bpm-page-inner {
    max-width: 820px;
    margin: 0 auto;
}
.bpm-eyebrow {
    color: var(--bpm-red-hot);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: .75rem;
    margin: 0 0 12px;
}
.bpm-page h1 {
    font-family: var(--bpm-head);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.15;
    margin: 0 0 16px;
    text-transform: uppercase;
}
.bpm-lead {
    color: #ccc;
    font-size: 1.05rem;
    margin: 0 0 32px;
    max-width: 40rem;
}
.bpm-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 36px;
}
.bpm-page-grid h2 {
    font-family: var(--bpm-head);
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin: 0 0 10px;
    color: #fff;
}
.bpm-page-grid p,
.bpm-page-grid li {
    color: var(--bpm-muted);
    font-size: .95rem;
}
.bpm-page-grid ul {
    margin: 0;
    padding-left: 1.1rem;
}
.bpm-page-grid li { margin-bottom: 6px; }
.bpm-page-cta { display: flex; flex-wrap: wrap; gap: 12px; }

.bpm-contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 520px;
}
.bpm-contact-form label { display: flex; flex-direction: column; gap: 6px; }
.bpm-contact-form span {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .5px;
    color: #bbb;
}
.bpm-contact-form input,
.bpm-contact-form textarea {
    background: #151515;
    border: 1px solid #333;
    border-radius: 4px;
    color: #fff;
    padding: 12px 14px;
    font: inherit;
}
.bpm-contact-form input:focus,
.bpm-contact-form textarea:focus {
    outline: none;
    border-color: var(--bpm-red);
}
.bpm-alert {
    padding: 12px 14px;
    border-radius: 4px;
    margin-bottom: 18px;
    font-size: .9rem;
}
.bpm-alert.ok { background: rgba(46,125,50,.25); border: 1px solid #2e7d32; }
.bpm-alert.err { background: rgba(198,40,40,.2); border: 1px solid var(--bpm-red); }

/* Responsive */
@media (max-width: 980px) {
    .bpm-hero-inner { grid-template-columns: 1fr; }
    .bpm-hero-art { min-height: 260px; order: -1; }
    .bpm-paper { width: min(100%, 300px); }
    .bpm-benefits { grid-template-columns: repeat(2, 1fr); }
    .bpm-page-grid { grid-template-columns: 1fr; }
}
@media (max-width: 800px) {
    .bpm-nav-toggle { display: flex; margin-left: auto; }
    .bpm-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        flex-direction: column;
        background: #0a0a0a;
        padding: 12px 0;
        border-bottom: 1px solid #333;
        gap: 0;
    }
    body.bpm-nav-open .bpm-nav { display: flex; }
    .bpm-nav a { padding: 14px 5%; border-bottom: 1px solid #1e1e1e; }
    .bpm-header-actions .bpm-btn { padding: 8px 12px; font-size: .72rem; }
    .bpm-header-actions .bpm-btn svg { display: none; }
}
@media (max-width: 600px) {
    .bpm-hero { min-height: auto; padding: 96px 0 40px; }
    .bpm-search-form { flex-wrap: wrap; }
    .bpm-search-form select { width: 100%; }
    .bpm-search-go { width: 100%; }
    .bpm-benefits { grid-template-columns: 1fr; }
    .bpm-join-inner { flex-direction: column; text-align: center; }
    .bpm-slider-btn { display: none; }
    .bpm-hero-ctas .bpm-btn { width: 100%; }
}
