/* VIDEO-PRODUKTION - FILM REEL / STORYBOARD DESIGN */

:root {
    /* Warm & Friendly Colors */
    --brown: #5C4033;
    --brown-dark: #3E2723;
    --orange: #D2691E;
    --orange-light: #E89B5F;
    --beige: #F5E6D3;
    --cream: #FFF8DC;
    --white: #FFFFFF;
    --black: #1A1A1A;
    --warm-gray: #8B7D6B;

    /* Film Colors */
    --film-black: #2B2B2B;
    --film-gray: #4A4A4A;
    --rec-red: #FF0000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: var(--cream);
    color: var(--brown-dark);
    font-weight: 300;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.accent {
    color: var(--orange);
}

/* FILM STRIP NAVIGATION */
.film-strip-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--film-black);
    z-index: 1000;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.film-perforations {
    width: 40px;
    height: 70px;
    background: var(--film-black);
    position: relative;
}

.film-perforations::before,
.film-perforations::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--black);
    border-radius: 2px;
}

.film-perforations.left::before {
    top: 10px;
    left: 10px;
}

.film-perforations.left::after {
    bottom: 10px;
    left: 10px;
}

.film-perforations.right::before {
    top: 10px;
    right: 10px;
}

.film-perforations.right::after {
    bottom: 10px;
    right: 10px;
}

.nav-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 70px;
    background: linear-gradient(to bottom, #3A3A3A 0%, #2B2B2B 100%);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-icon {
    font-size: 1.8rem;
}

.brand-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--white);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--beige);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link.active,
.nav-link:hover {
    color: var(--orange);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--orange);
}

.rec-indicator {
    color: var(--rec-red);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.3; }
}

/* Mobile Toggle Button */
.navbar-toggler {
    display: none;
    background: transparent;
    border: none;
    padding: 10px;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.toggler-icon {
    width: 25px;
    height: 3px;
    background: var(--orange);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.navbar-toggler:hover .toggler-icon {
    background: var(--orange-light);
}

/* Navbar Collapse */
.navbar-collapse {
    display: flex;
    align-items: center;
    gap: 30px;
}

.navbar-collapse.collapsing,
.navbar-collapse.collapse.show {
    display: flex;
}

/* HERO: SPLIT-SCREEN VIDEO PLAYER */
.hero-splitscreen {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding-top: 70px;
    background: var(--film-black);
    position: relative;
}

.split-video {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.video-frame {
    width: 100%;
    height: 100%;
    position: relative;
}

.video-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.video-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 15px;
    border-radius: 4px;
}

.timecode {
    font-family: 'Courier New', monospace;
    color: var(--white);
    font-size: 1rem;
    letter-spacing: 2px;
}

.hero-center {
    padding: 60px;
    text-align: center;
    background: rgba(245, 230, 211, 0.95);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 10;
    min-width: 500px;
}

.play-button-large {
    width: 120px;
    height: 120px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(210, 105, 30, 0.4);
}

.play-button-large:hover {
    transform: scale(1.1);
    background: var(--orange-light);
}

.play-icon {
    font-size: 3rem;
    color: var(--white);
    margin-left: 8px;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.title-line {
    display: block;
    color: var(--brown-dark);
}

.accent-text {
    color: var(--orange);
}

.hero-tagline {
    font-size: 1.2rem;
    color: var(--warm-gray);
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.btn-cta {
    display: inline-block;
    background: var(--brown);
    color: var(--white);
    padding: 18px 50px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-cta:hover {
    background: var(--brown-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(92, 64, 51, 0.3);
}

/* SERVICES: CLAPPERBOARD CARDS */
.services-clapperboard {
    padding: 120px 0;
    background: var(--white);
}

.section-title-film {
    text-align: center;
    margin-bottom: 80px;
}

.scene-number {
    display: block;
    font-size: 0.9rem;
    color: var(--warm-gray);
    letter-spacing: 3px;
    margin-bottom: 10px;
    font-weight: 700;
}

.scene-number.white {
    color: var(--beige);
}

.section-title-film h2 {
    font-size: 4rem;
    color: var(--brown-dark);
}

.section-title-film.white h2 {
    color: var(--white);
}

.clapperboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.clapperboard {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.clapperboard:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.clapper-top {
    background: var(--film-black);
    padding: 15px;
    position: relative;
}

.clapper-stripes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: repeating-linear-gradient(
        45deg,
        var(--white),
        var(--white) 10px,
        var(--film-black) 10px,
        var(--film-black) 20px
    );
}

.clapper-info {
    margin-top: 15px;
}

.info-row {
    display: flex;
    gap: 10px;
    font-size: 0.75rem;
    color: var(--white);
    margin-bottom: 5px;
    font-family: 'Courier New', monospace;
}

.label {
    color: var(--warm-gray);
    font-weight: 700;
}

.value {
    color: var(--beige);
}

.clapper-content {
    padding: 40px 30px;
    text-align: center;
    background: var(--beige);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.clapper-content h3 {
    font-size: 2rem;
    color: var(--brown-dark);
    margin-bottom: 15px;
}

.clapper-content p {
    color: var(--warm-gray);
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
}

.service-features li {
    padding: 8px 0;
    color: var(--brown-dark);
    font-size: 0.95rem;
}

.price-tag {
    background: var(--orange);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
}

/* PORTFOLIO: STORYBOARD GRID */
.portfolio-storyboard {
    padding: 120px 0;
    background: var(--beige);
}

.storyboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.storyboard-frame {
    background: var(--white);
    border: 3px solid var(--film-black);
    padding: 20px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.storyboard-frame:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.frame-number {
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--orange);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(210, 105, 30, 0.4);
}

.frame-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 2px solid var(--film-gray);
}

.frame-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.storyboard-frame:hover .frame-image img {
    transform: scale(1.1);
}

.frame-info h4 {
    font-size: 1.5rem;
    color: var(--brown-dark);
    margin-bottom: 10px;
}

.frame-desc {
    color: var(--warm-gray);
    margin-bottom: 15px;
    line-height: 1.6;
}

.frame-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.meta-item {
    background: var(--beige);
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 0.85rem;
    color: var(--brown);
    font-weight: 500;
}

.showreel-cta {
    text-align: center;
    margin-top: 80px;
}

.showreel-cta p {
    font-size: 1.3rem;
    color: var(--brown-dark);
    margin-bottom: 25px;
}

.btn-showreel {
    display: inline-block;
    background: var(--brown);
    color: var(--white);
    padding: 18px 50px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-showreel:hover {
    background: var(--brown-dark);
    transform: translateY(-3px);
}

/* PROCESS: DIRECTOR'S TIMELINE */
.process-timeline {
    padding: 120px 0;
    background: var(--white);
}

.director-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.timeline-marker {
    text-align: center;
    position: relative;
}

.marker-icon {
    width: 80px;
    height: 80px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(210, 105, 30, 0.3);
}

.marker-line {
    width: 4px;
    height: 100%;
    background: var(--beige);
    margin: 10px auto 0;
}

.timeline-item:last-child .marker-line {
    display: none;
}

.timeline-content {
    padding: 20px 0;
}

.scene-slate {
    display: inline-block;
    background: var(--film-black);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.timeline-content h3 {
    font-size: 2.5rem;
    color: var(--brown-dark);
    margin-bottom: 15px;
}

.timeline-content p {
    color: var(--warm-gray);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.timeline-points {
    list-style: none;
}

.timeline-points li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--brown-dark);
}

.timeline-points li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-size: 0.8rem;
}

/* CONTACT: FILM SET THEME */
.contact-filmset {
    padding: 120px 0;
    background: var(--brown-dark);
    position: relative;
    overflow: hidden;
}

.film-set-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 50px,
        rgba(0, 0, 0, 0.1) 50px,
        rgba(0, 0, 0, 0.1) 51px
    );
}

.director-chair-section {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.chair-left {
    text-align: center;
}

.director-chair {
    width: 200px;
    margin: 0 auto 30px;
}

.chair-back {
    width: 200px;
    height: 180px;
    background: var(--brown);
    border-radius: 20px 20px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 -20px 40px rgba(0, 0, 0, 0.3);
}

.chair-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--beige);
    transform: rotate(-90deg);
}

.chair-seat {
    width: 220px;
    height: 40px;
    background: var(--brown);
    border-radius: 0 0 40px 40px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.chair-caption {
    font-size: 1.3rem;
    color: var(--beige);
    line-height: 1.6;
    font-style: italic;
}

.contact-center {
    text-align: center;
}

.contact-intro {
    font-size: 1.2rem;
    color: var(--beige);
    margin-bottom: 15px;
}

.contact-title {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 50px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 25px;
    background: rgba(245, 230, 211, 0.1);
    border: 2px solid var(--beige);
    padding: 25px 35px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: var(--beige);
    transform: translateX(10px);
}

.btn-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-info {
    text-align: left;
    flex: 1;
}

.btn-label {
    display: block;
    font-size: 0.85rem;
    color: var(--beige);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.btn-value {
    display: block;
    font-size: 1.3rem;
    color: var(--white);
    font-weight: 500;
}

.contact-btn:hover .btn-value {
    color: var(--brown-dark);
}

.contact-btn:hover .btn-label {
    color: var(--warm-gray);
}

.location-info {
    border-top: 1px solid rgba(245, 230, 211, 0.2);
    padding-top: 30px;
}

.location-text {
    font-size: 1.2rem;
    color: var(--beige);
    margin-bottom: 10px;
}

.availability {
    font-size: 1rem;
    color: var(--orange);
    font-weight: 500;
}

/* FOOTER */
.footer-filmstrip {
    background: var(--film-black);
    padding: 60px 0 30px;
    position: relative;
}

.film-perforations.bottom-left,
.film-perforations.bottom-right {
    position: absolute;
    bottom: 20px;
}

.film-perforations.bottom-left {
    left: 20px;
}

.film-perforations.bottom-right {
    right: 20px;
}

.footer-content {
    text-align: center;
}

.footer-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.footer-links {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 30px;
}

.footer-links a {
    color: var(--beige);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--orange);
}

.footer-copy {
    color: var(--warm-gray);
    font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-splitscreen {
        grid-template-columns: 1fr;
        grid-template-rows: 300px auto;
    }

    .hero-center {
        min-width: auto;
        padding: 40px 30px;
    }

    .split-video.right {
        display: none;
    }

    .hero-title {
        font-size: 3rem;
    }

    .clapperboard-grid {
        grid-template-columns: 1fr;
    }

    .storyboard-grid {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .marker-line {
        display: none;
    }

    .director-chair-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 968px) {
    .navbar-toggler {
        display: flex;
    }

    .navbar-collapse {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--film-black);
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .navbar-collapse:not(.show) {
        display: none;
    }

    .navbar-collapse.show {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        text-align: center;
    }

    .nav-action {
        text-align: center;
    }

    .film-perforations {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-content {
        padding: 15px 20px;
    }

    .film-perforations {
        display: none;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .section-title-film h2 {
        font-size: 2.5rem;
    }

    .contact-title {
        font-size: 2.5rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}
