/*
Theme Name: NouLive Child
Template: noulive
Version: 1.0
*/

/* =====================
   GLOBAL
===================== */
body {
    background: #000;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

/* =====================
   HERO
===================== */
.hero {
    height: 80vh;
    background:
        linear-gradient(to bottom, rgba(0,0,0,0.35), #000),
        url('https://images.unsplash.com/photo-1524985069026-dd778a71c7b4');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding-left: 60px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 18px;
    max-width: 500px;
}

.btn-primary {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background: #e50914;
    color: #fff;
    font-weight: bold;
    border-radius: 3px;
}

/* =====================
   SECTIONS
===================== */
.section {
    padding: 40px 60px;
}

.section h2 {
    margin-bottom: 15px;
    font-size: 22px;
}

/* =====================
   NETFLIX ROW (FIX)
===================== */
.netflix-row {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 15px;
}

.netflix-row::-webkit-scrollbar {
    height: 6px;
}
.netflix-row::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 10px;
}

/* =====================
   NETFLIX CARD (THUMBNAILS)
===================== */
.netflix-card {
    min-width: 220px;
    height: 130px;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.netflix-card:hover {
    transform: scale(1.08);
}

/* =====================
   PLAYER PAGE
===================== */
.film-player-page video {
    width: 100%;
    max-width: 1100px;
    border-radius: 8px;
    background: #000;
}

/* =====================
   FOOTER
===================== */
footer {
    text-align: center;
    padding: 30px;
    font-size: 14px;
    color: #999;
}
/* =====================
   PAGE FILM / PLAYER
===================== */

.film-player-page {
    background: #000;
    color: #fff;
    padding: 60px;
    min-height: 80vh;
}

.film-title {
    margin-bottom: 25px;
    font-size: 32px;
}

/* Wrapper responsive 16:9 */
.video-wrapper {
    position: relative;
    padding-top: 56.25%;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    max-width: 1100px;
}

/* Iframe YouTube / Vimeo */
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.no-video {
    color: #e50914;
    font-weight: bold;
}