﻿/* --- NETFLIX HERO CUSTOM STYLES --- */

/* Cinematic Gradient: Darkens the left side significantly to make text pop */
.netflix-gradient {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0) 100%) !important;
    opacity: 1 !important;
}

/* Red Logo Symbol */
.n-red-symbol {
    color: #E50914;
    font-weight: 900;
    font-size: 2.2rem;
    line-height: 1;
    margin-right: 10px;
    font-family: 'Arial Black', sans-serif;
}

.n-series-tag {
    color: #b3b3b3;
    letter-spacing: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Massive Netflix Title */
.netflix-title {
    font-size: clamp(3.5rem, 8vw, 6.5rem); /* Responsive sizing */
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Metadata Styling */
/* Metadata Container - ensures overall legibility */
.netflix-meta {
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff; /* Forces white text for everything in this row */
}

/* The "Match Score" - keeps it green */
.match-score {
    color: #46d369 !important;
    margin-right: 15px;
}

/* The individual "Easter Egg" boxes */
.meta-tag {
    background-color: rgba(0, 0, 0, 0.2); /* Subtle dark backing */
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #ffffff !important;
    padding: 2px 8px; /* Slightly more padding for a cleaner look */
    font-size: 0.85rem;
    border-radius: 2px;
    margin-right: 12px;
    display: inline-block; /* Ensures they align properly */
    text-transform: uppercase;
}

/* Plot Text */
.netflix-description {
    font-size: 1.2rem;
    max-width: 550px;
    line-height: 1.4;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Netflix Play Button */
.btn-netflix-play {
    background-color: #ffffff;
    color: #000000 !important;
    border: none;
    font-weight: 700;
    padding: 10px 28px;
    border-radius: 4px;
    font-size: 1.1rem;
    transition: all 0.3s;
}

    .btn-netflix-play:hover {
        background-color: rgba(255, 255, 255, 0.75);
        transform: scale(1.05);
    }

/* Netflix Info Button */
.btn-netflix-info {
    background-color: rgba(109, 109, 110, 0.7);
    color: #ffffff !important;
    border: none;
    font-weight: 700;
    padding: 10px 28px;
    border-radius: 4px;
    font-size: 1.1rem;
    transition: all 0.3s;
}

    .btn-netflix-info:hover {
        background-color: rgba(109, 109, 110, 0.4);
        transform: scale(1.05);
    }

/* Responsive Fixes */
@media (max-width: 768px) {
    .netflix-title {
        font-size: 3rem;
    }

    .netflix-description {
        font-size: 1rem;
    }

    .netflix-gradient {
        background: rgba(0, 0, 0, 0.6) !important; /* Darken full image on mobile */
    }
}

.photo-credit {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(0, 0, 0, 0.6); /* Slightly darker for better link contrast */
    color: rgba(255, 255, 255, 0.7);
    padding: 6px 15px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 2px;
    z-index: 10;
    border-right: 3px solid #e50914; /* Netflix Red */
}

.photographer-link {
    color: #fff; /* White text for the link */
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-left: 3px;
}

    .photographer-link:hover {
        color: #e50914; /* Turns Netflix Red on hover */
        text-decoration: none;
    }

/* Ensure the camera icon stays muted while the name pops */
.photo-credit i {
    opacity: 0.8;
}

@media (max-width: 767px) {
    .photo-credit {
        bottom: 15px;
        right: 15px;
    }
}