/*
Theme Name: NewRoad Cinema
Theme URI: https://example.com/newroad-cinema
Author: Antigravity
Author URI: https://example.com
Description: Cinematic wide-screen variation of NewRoad Studio theme.
Version: 2.0
Text Domain: newroad-cinema
*/

@import url('https://fonts.googleapis.com/css2?family=Syncopate:wght@400;700&family=Montserrat:wght@300;400;700;900&display=swap');

:root {
    --bg-black: #050505;
    --accent: #ffffff;
    --text-dim: rgba(255, 255, 255, 0.6);
    --transition-slow: cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-black);
    color: var(--accent);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.4s var(--transition-slow);
}

/* Header - Ultra Minimalist */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: transform 0.6s var(--transition-slow), background 0.6s ease;
}

.site-header.header-scrolled {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    padding: 20px 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-branding .site-title-text {
    font-family: 'Syncopate', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

.main-navigation a {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.5;
}

.main-navigation a:hover {
    opacity: 1;
    letter-spacing: 4px;
}

/* Cinema Hero */
.cinema-hero-section {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: brightness(0.7) contrast(1.1);
}

.cinema-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.4) 110%);
}

.cinema-hero-content {
    position: absolute;
    bottom: 15%;
    left: 60px;
    z-index: 2;
    max-width: 900px;
}

.cinema-hero-title {
    font-family: 'Syncopate', sans-serif;
    font-size: 6vw;
    font-weight: 700;
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: -2px;
}

/* Cinema Works Section */
.cinema-content-section {
    position: relative;
    z-index: 2;
    background: var(--bg-black);
    padding: 100px 0;
    box-shadow: 0 -50px 100px rgba(0, 0, 0, 0.8);
}

.cinema-works-header {
    padding: 0 60px 80px;
}

.cinema-works-title {
    font-family: 'Syncopate', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 8px;
    border-left: 2px solid var(--accent);
    padding-left: 30px;
}

/* Cinema Grid */
.cinema-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 0 10px;
    gap: 10px;
}

.cinema-card {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #111;
}

.cinema-card:nth-child(3n+1) {
    grid-column: span 2;
    aspect-ratio: 21 / 9;
}

.cinema-card-inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.cinema-card-thumbnail {
    width: 100%;
    height: 100%;
    transition: transform 1.2s var(--transition-slow);
}

.cinema-card-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.4) brightness(0.8);
    transition: all 0.8s ease;
}

.cinema-card:hover .cinema-card-thumbnail {
    transform: scale(1.05);
}

.cinema-card:hover .cinema-card-thumbnail img {
    filter: grayscale(0) brightness(1);
}

.cinema-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    opacity: 1;
    transition: opacity 0.6s ease;
}

.cinema-card-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
}

.cinema-card-category {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-dim);
    display: block;
    margin-bottom: 10px;
}

.cinema-card-title {
    font-family: 'Syncopate', sans-serif;
    font-size: 2vw;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(100px);
    transition: all 1.2s var(--transition-slow);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-fade {
    opacity: 0;
    transition: opacity 2s ease;
}

.reveal-fade.revealed {
    opacity: 1;
}

/* Footer */
.site-footer {
    background: #000;
    padding: 120px 60px;
    border-top: 1px solid #111;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer-social a {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-right: 40px;
    opacity: 0.5;
}

.footer-social a:hover {
    opacity: 1;
}

@media (max-width: 991px) {
    .cinema-grid {
        grid-template-columns: 1fr;
    }

    .cinema-card:nth-child(3n+1) {
        aspect-ratio: 16 / 10;
    }

    .cinema-hero-title {
        font-size: 10vw;
    }

    .cinema-card-title {
        font-size: 5vw;
    }

    .site-header {
        padding: 20px 30px;
    }
}