/* Variables */
:root {
    --bg-color: #0a0a0a;
    --text-color: #f5f5f5;
    --accent-color: #e50914;
    --secondary-text: #a0a0a0;
    --nav-bg: #000000;
    --font-main: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
    --transition-speed: 0.3s;
    --container-width: 1200px;
    --section-padding: 100px 0;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed) ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding);
    position: relative;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    margin-bottom: 2rem;
    text-align: center;
    opacity: 0;
    /* For animation */
    transform: translateY(30px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    transition: padding 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: block;
    width: 120px;
}

.logo img {
    width: 100%;
    height: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-color);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    /* Taller for parallax */
    background: url('https://images.unsplash.com/photo-1489599849927-2ee91cede3ba?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    opacity: 0;
    /* For animation */
    transform: translateY(50px);
}

.hero-subtitle {
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--secondary-text);
    opacity: 0;
    /* For animation */
    transform: translateY(30px);
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
}

.scroll-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background-color: var(--text-color);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* About Section */
.about-section {
    background-color: #111;
    padding: 80px 0;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-left {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(229, 9, 20, 0.15);
    display: block;
}

.about-right {
    padding: 0 20px;
}

.about-title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    opacity: 1;
    transform: none;
}

.about-text {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--secondary-text);
    opacity: 1;
    transform: none;
}

.about-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 3rem;
}

.about-card {
    padding: 22px 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.about-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

.journey-section {
    background-color: #0a0a0a;
    padding: 100px 0;
}

.journey-header {
    text-align: center;
    margin-bottom: 60px;
}

.journey-label {
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    font-size: 0.9rem;
    color: var(--text-color);
    letter-spacing: 0.5px;
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

.journey-card {
    background: transparent;
    padding: 0;
    border-radius: 0;
    text-align: center;
    border: none;
}

.journey-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1;
}

.journey-symbol {
    font-size: 2rem;
    color: var(--text-color);
    margin-left: 5px;
}

.journey-card p {
    color: var(--secondary-text);
    font-size: 0.95rem;
    margin-top: 1rem;
}

/* Films Section */
.films-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.film-card {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 2/3;
    opacity: 0;
    transform: translateY(30px);
}

.film-poster {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.film-card:hover .film-poster {
    transform: scale(1.05);
}

.film-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.film-card:hover .film-info {
    transform: translateY(0);
}

.film-info h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.film-info span {
    font-size: 0.8rem;
    color: var(--secondary-text);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: var(--font-display);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--secondary-text);
    font-size: 0.9rem;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.team-card {
    opacity: 0;
    transform: translateY(30px);
}

.team-photo {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    margin-bottom: 20px;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.team-card:hover .team-photo {
    filter: grayscale(0%);
}

.team-card h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.team-card p {
    color: var(--secondary-text);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info .info-item {
    margin-bottom: 30px;
}

.info-item h4 {
    font-family: var(--font-display);
    margin-bottom: 10px;
    color: var(--accent-color);
}

.info-item p {
    color: var(--secondary-text);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--text-color);
    font-family: var(--font-main);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.btn-submit {
    padding: 15px 30px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #c40812;
}

/* Footer */
.footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.social-links {
    margin-bottom: 20px;
}

.social-links a {
    margin: 0 10px;
    font-size: 0.9rem;
    opacity: 0.7;
}

.social-links a:hover {
    opacity: 1;
}

.copyright {
    font-size: 0.8rem;
    color: var(--secondary-text);
}


/* Expertise List - DEPRECATED, kept for reference */
/* Use foundation-grid and foundation-box classes instead */

/* Vision Section */
.vision-section {
    background-color: #151515;
}

.vision-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.vision-quote {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 3rem;
    color: var(--text-color);
    line-height: 1.4;
}

.vision-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 3rem;
}

.vision-item h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.vision-item p {
    color: var(--secondary-text);
    font-size: 0.9rem;
}

.vision-promise {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Journey Section */
.journey-section {
    background-color: #0a0a0a;
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 2rem;
}

.journey-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.journey-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.journey-card h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.journey-card p {
    color: var(--secondary-text);
    font-size: 0.9rem;
}

.journey-summary {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-color);
    margin-top: 2rem;
    font-style: italic;
}

/* Debut Film Section */
.debut-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.debut-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)), url('https://images.unsplash.com/photo-1536440136628-849c177e76a1?q=80&w=2025&auto=format&fit=crop') no-repeat center center/cover;
    z-index: -1;
}

.debut-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.coming-soon {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.debut-title {
    font-family: var(--font-display);
    font-size: 4rem;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.debut-subtitle {
    font-size: 1.5rem;
    color: var(--secondary-text);
    margin-bottom: 2rem;
    font-weight: 300;
}

.debut-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: #ddd;
}

.debut-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 3rem;
}

.highlight-item {
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.debut-note {
    font-size: 1.2rem;
    font-family: var(--font-display);
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.debut-footer {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Why Us Section */
.why-section {
    background-color: #111;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.02);
    padding: 20px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.why-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.check-icon {
    color: var(--accent-color);
    font-size: 1.2rem;
    font-weight: bold;
}

.why-item p {
    margin: 0;
    font-size: 1rem;
}

/* Contact Updates */
.contact-intro {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-family: var(--font-display);
}

/* Modal (Keep existing styles just in case, or hide if unused) */
.modal-overlay {}

.vision-item p {
    color: var(--secondary-text);
    font-size: 0.9rem;
}

.vision-promise {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Journey Section */
.journey-section {
    background-color: #0a0a0a;
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 2rem;
}

.journey-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.journey-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.journey-card h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.journey-card p {
    color: var(--secondary-text);
    font-size: 0.9rem;
}

.journey-summary {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-color);
    margin-top: 2rem;
    font-style: italic;
}

/* Debut Film Section */
.debut-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.debut-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)), url('https://images.unsplash.com/photo-1536440136628-849c177e76a1?q=80&w=2025&auto=format&fit=crop') no-repeat center center/cover;
    z-index: -1;
}

.debut-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.coming-soon {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.debut-title {
    font-family: var(--font-display);
    font-size: 4rem;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.debut-subtitle {
    font-size: 1.5rem;
    color: var(--secondary-text);
    margin-bottom: 2rem;
    font-weight: 300;
}

.debut-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: #ddd;
}

.debut-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 3rem;
}

.highlight-item {
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.debut-note {
    font-size: 1.2rem;
    font-family: var(--font-display);
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.debut-footer {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Why Us Section */
.why-section {
    background-color: #111;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.02);
    padding: 20px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.why-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.check-icon {
    color: var(--accent-color);
    font-size: 1.2rem;
    font-weight: bold;
}

.why-item p {
    margin: 0;
    font-size: 1rem;
}

/* Contact Updates */
.contact-intro {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-family: var(--font-display);
}

/* Modal (Keep existing styles just in case, or hide if unused) */
.modal-overlay {
    display: none;
    /* Hidden for now as we removed the grid */
}

/* Responsive Updates */
/* Responsive Updates */
@media (max-width: 768px) {

    /* Navigation */
    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
        /* Above the sidebar */
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        /* Sidebar width */
        max-width: 300px;
        background-color: #000000;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    /* Hero Section */
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    /* About Section */
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-title {
        font-size: 2rem;
    }

    .about-cards {
        gap: 12px;
    }

    /* Typography & Spacing */
    .section-title {
        font-size: 2rem;
    }

    .about-legacy p {
        font-size: 1.5rem;
        /* Smaller than desktop but still prominent */
    }

    .debut-title {
        font-size: 2.5rem;
    }

    .vision-quote {
        font-size: 1.2rem;
    }

    /* Grids */
    .journey-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .journey-number {
        font-size: 2.5rem;
    }

    .services-grid,
    .why-grid,
    .vision-points {
        grid-template-columns: 1fr;
        /* Stack items vertically */
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .logo {
        width: 100px;
    }
}