/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Work Sans", "Work Sans Placeholder", sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #000;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: "Work Sans", "Work Sans Placeholder", sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    text-decoration: none;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 40px;
    width: auto;
    transition: opacity 0.3s ease;
}

.nav-logo:hover .nav-logo-img {
    opacity: 0.7;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    color: #fff;
    transition: opacity 0.3s ease;
    position: relative;
}

.nav-link:hover {
    opacity: 0.7;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #fff;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-links.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.mobile-nav-link {
    font-size: 1.5rem;
    font-weight: 500;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    padding: 1rem 2rem;
    border-radius: 8px;
}

.mobile-nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.hero-image-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-content {
    text-align: center;
    color: #fff;
    z-index: 3;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-logo {
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.2s forwards;
}

.hero-logo-img {
    height: 80px;
    width: auto;
    max-width: 100%;
}

.hero-title {
    margin-bottom: 2rem;
}

.hero-title-main {
    display: block;
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

.hero-title-sub {
    display: block;
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 500;
    font-style: italic;
    opacity: 0;
    animation: fadeInUp 1s ease 0.8s forwards;
}

.hero-description {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease 1.1s forwards;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 1s ease 1.4s forwards;
}

.hero-cta:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    width: 1px;
    height: 40px;
    background: #fff;
    position: relative;
    animation: scrollPulse 2s infinite;
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    top: 0;
    left: -2px;
    width: 5px;
    height: 5px;
    background: #fff;
    border-radius: 50%;
    animation: scrollMove 2s infinite;
}

/* Manifesto Section */
.manifesto {
    padding: 4rem 0;
    background: #000;
    text-align: center;
}

.manifesto-content {
    max-width: 600px;
    margin: 0 auto;
}

.manifesto-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 500;
}

.manifesto-subtext {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    color: #ccc;
    font-style: italic;
}

.manifesto-button {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.manifesto-button:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
}

/* Films Section */
.films {
    padding: 8rem 0;
    background: #000;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 700;
    color: #fff;
}

.films-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.film-card {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.film-card:hover {
    transform: translateY(-2px);
}

.film-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background: #1a1a1a;
}

.film-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
}

.film-thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.film-card:hover .film-thumbnail-img {
    transform: none;
}

.film-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.film-card:hover .film-overlay {
    opacity: 1;
}

.film-play {
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
}

.film-info {
    text-align: left;
}

.film-company {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.film-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #fff;
    line-height: 1.3;
}

.film-meta {
    font-size: 0.8rem;
    color: #ccc;
    font-weight: 400;
    margin: 0;
}

/* Show All Button */
.show-all-container {
    text-align: center;
    margin-top: 3rem;
}

.show-all-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.show-all-button:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
}

/* About Hero */
.about-hero {
    padding: 8rem 0 4rem;
    background: #000;
    text-align: center;
    margin-top: 80px; /* Account for fixed nav */
}

.about-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.about-hero-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    font-weight: 400;
    margin: 0 auto;
}

/* Manifesto Content */
.manifesto-content {
    max-width: 800px;
    padding: 0 4rem;
}

.manifesto-text {
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #fff;
}

.manifesto-text p {
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: #e0e0e0;
}

.manifesto-text strong {
    color: #fff;
    font-weight: 700;
    background: linear-gradient(135deg, #4A90E2 0%, #6BB6FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.manifesto-text ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
    list-style: disc;
}

.manifesto-text li {
    margin-bottom: 0.8rem;
    font-weight: 400;
    color: #e0e0e0;
    line-height: 1.6;
}

.manifesto-text li strong {
    color: #fff;
    font-weight: 700;
}

.manifesto-image {
    text-align: center;
    margin: 2rem 0;
}

.manifesto-gif {
    max-width: 100%;
    height: auto;
}

/* Contact Hero */
.contact-hero {
    padding: 8rem 0 6rem;
    background: #000;
    text-align: center;
    margin-top: 80px; /* Account for fixed nav */
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.01) 0%, transparent 50%);
    z-index: 1;
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

.contact-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
}

.contact-hero-subtitle {
    font-size: 1.3rem;
    color: #fff;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

.contact-hero-mission {
    font-size: 1.1rem;
    color: #ccc;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 8rem 0;
    background: #111;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: #000;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.01) 0%, transparent 50%, rgba(255, 255, 255, 0.01) 100%);
    z-index: 1;
}

.contact::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.contact .container {
    position: relative;
    z-index: 2;
}

/* Contact Content */
.contact-content {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.contact-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-section:last-of-type {
    border-bottom: none;
}

.contact-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
}

.contact-section-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #ccc;
    margin-bottom: 1rem;
}

.contact-link {
    color: #4A90E2;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #6BB6FF;
    text-decoration: underline;
}


/* Contact Form */
.contact-form-section {
    max-width: 600px;
    margin: 0 auto 4rem;
    padding: 2rem 0;
}

.contact-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.contact-form-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    font-size: 1rem;
}

.contact-form-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.button-arrow {
    transition: transform 0.3s ease;
}

.contact-form-button:hover .button-arrow {
    transform: translateX(5px);
}

/* Contact Signature */
.contact-signature {
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.signature-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #fff;
    font-weight: 500;
    margin-bottom: 1rem;
    font-style: italic;
}

.signature-author {
    font-size: 1.1rem;
    color: #ccc;
    font-weight: 600;
}


/* Footer */
.footer {
    padding: 3rem 0;
    background: #000;
    color: #fff;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-social-link {
    color: #4A90E2;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    color: #6BB6FF;
    text-decoration: underline;
}

.footer-separator {
    color: #666;
    font-weight: 300;
}

.footer-text {
    font-size: 0.9rem;
    opacity: 0.7;
    margin: 0;
}

/* Project Page Specific Styles */
.project-hero {
    height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px; /* Account for fixed nav */
}

.project-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.project-hero-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.project-hero-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
    position: relative;
    overflow: hidden;
}

.project-hero-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="techPattern" width="20" height="20" patternUnits="userSpaceOnUse"><rect width="20" height="20" fill="%23ffffff" opacity="0.05"/><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23techPattern)"/></svg>');
    opacity: 0.3;
}

.project-hero-content {
    text-align: center;
    color: #fff;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.project-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

.project-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    font-style: italic;
    opacity: 0;
    animation: fadeInUp 1s ease 0.8s forwards;
}

.project-content {
    padding: 6rem 0;
    background: #000;
}

.project-text {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.project-description {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #fff;
    font-weight: 700;
}

.project-story {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
    font-style: italic;
}

.project-video {
    margin: 4rem 0;
}

.video-container {
    position: relative;
    aspect-ratio: 16/9;
    max-width: 1000px;
    margin: 0 auto;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.video-placeholder:hover {
    background: linear-gradient(135deg, #2d2d2d 0%, #3d3d3d 100%);
    transform: scale(1.02);
}

.video-play-button {
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.video-placeholder:hover .video-play-button {
    transform: scale(1.1);
}

.video-label {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.project-credits {
    margin: 4rem 0;
    text-align: center;
}

.credits-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    color: #fff;
}

.credits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.credit-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.credit-role {
    font-size: 0.9rem;
    color: #ccc;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.credit-name {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 700;
}

.project-gallery {
    margin: 4rem 0;
}

.gallery-title {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
    color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
}

.gallery-placeholder::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: #666;
    border-radius: 4px;
}

.related-films {
    padding: 4rem 0;
    background: #111;
}

.related-title {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
    color: #fff;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.related-film {
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
    display: block;
}

.related-film:hover {
    transform: translateY(-5px);
}

.related-thumbnail {
    aspect-ratio: 16/9;
    overflow: hidden;
    margin-bottom: 1rem;
    border-radius: 8px;
}

.related-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.related-info {
    text-align: left;
}

.related-film-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #fff;
}

.related-film-subtitle {
    font-size: 0.9rem;
    color: #ccc;
    font-style: italic;
}

/* All Films Page Specific Styles */
.all-films-hero {
    padding: 8rem 0 4rem;
    background: #000;
    text-align: center;
    margin-top: 80px; /* Account for fixed nav */
}

.all-films-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.all-films-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.all-films-content {
    padding: 4rem 0;
    background: #000;
}

.all-films-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.back-to-home {
    padding: 3rem 0;
    background: #111;
    text-align: center;
}

.back-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.back-button:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

@keyframes scrollMove {
    0% {
        top: 0;
        opacity: 1;
    }
    100% {
        top: 35px;
        opacity: 0;
    }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Container adjustments */
    .container {
        padding: 0 1rem;
    }

    /* Navigation Mobile */
    .nav-container {
        padding: 0.8rem 1rem;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-logo-img {
        height: 35px;
    }

    /* Hero Section Mobile */
    .hero {
        height: 100vh;
        padding: 0 1rem;
    }

    .hero-content {
        padding: 0 1rem;
        max-width: 100%;
    }

    .hero-logo-img {
        height: 60px;
    }

    .hero-title-main {
        font-size: clamp(2rem, 8vw, 3rem);
        line-height: 1.1;
    }

    .hero-title-sub {
        font-size: clamp(0.9rem, 4vw, 1.2rem);
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-cta {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Manifesto Section Mobile */
    .manifesto {
        padding: 3rem 0;
    }

    .manifesto-content {
        padding: 0 1rem;
    }

    .manifesto-text {
        font-size: 1rem;
        line-height: 1.5;
    }

    .manifesto-subtext {
        font-size: 0.9rem;
    }

    .manifesto-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    /* Films Section Mobile */
    .films {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .films-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .film-company {
        font-size: 1.2rem;
    }

    .film-title {
        font-size: 0.9rem;
    }

    .film-meta {
        font-size: 0.75rem;
    }

    .show-all-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }

    /* About Hero Mobile */
    .about-hero {
        padding: 6rem 0 3rem;
        margin-top: 70px;
    }

    .about-hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .about-hero-subtitle {
        font-size: 1rem;
    }

    /* Manifesto Content Mobile */
    .manifesto-content {
        padding: 0 1rem;
    }

    .manifesto-text {
        font-size: 1rem;
        line-height: 1.6;
    }

    .manifesto-text h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .manifesto-text h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .manifesto-text p {
        margin-bottom: 1rem;
    }

    .manifesto-text ul {
        margin: 1rem 0;
        padding-left: 1rem;
    }

    .manifesto-text li {
        margin-bottom: 0.5rem;
        font-size: 0.95rem;
    }

    .manifesto-gif {
        max-width: 100%;
        height: auto;
    }

    /* Contact Hero Mobile */
    .contact-hero {
        padding: 6rem 0 4rem;
        margin-top: 70px;
    }

    .contact-hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .contact-hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
    }

    .contact-hero-mission {
        font-size: 1rem;
    }

    /* Contact Section Mobile */
    .contact {
        padding: 4rem 0;
    }

    .contact-content {
        margin-bottom: 3rem;
    }

    .contact-section {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }

    .contact-section-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .contact-section-description {
        font-size: 1rem;
        line-height: 1.6;
    }

    /* Contact Form Mobile */
    .contact-form-section {
        margin-bottom: 3rem;
        padding: 1rem 0;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.95rem;
    }

    .contact-form-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Contact Signature Mobile */
    .contact-signature {
        padding: 2rem 0;
    }

    .signature-text {
        font-size: 1.1rem;
        line-height: 1.5;
    }

    .signature-author {
        font-size: 1rem;
    }

    /* Footer Mobile */
    .footer {
        padding: 2rem 0;
    }

    .footer-content {
        gap: 1rem;
    }

    .footer-social {
        flex-direction: column;
        gap: 0.8rem;
    }

    .footer-social-link {
        font-size: 0.9rem;
    }

    .footer-separator {
        display: none;
    }

    .footer-text {
        font-size: 0.8rem;
    }

    /* Project Page Mobile */
    .project-hero {
        height: 60vh;
        margin-top: 70px;
    }

    .project-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .project-subtitle {
        font-size: clamp(1rem, 4vw, 1.4rem);
    }

    .project-content {
        padding: 4rem 0;
    }

    .project-description {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .project-story {
        font-size: 1rem;
        line-height: 1.6;
    }

    .video-container {
        margin: 2rem 0;
    }

    .credits-title {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .credits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-title {
        font-size: 1.3rem;
        margin-bottom: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .related-title {
        font-size: 1.3rem;
        margin-bottom: 2rem;
    }

    .related-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .related-film-title {
        font-size: 1.1rem;
    }

    .related-film-subtitle {
        font-size: 0.85rem;
    }

    /* All Films Page Mobile */
    .all-films-hero {
        padding: 6rem 0 3rem;
        margin-top: 70px;
    }

    .all-films-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .all-films-subtitle {
        font-size: 1rem;
    }

    .all-films-content {
        padding: 3rem 0;
    }

    .all-films-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }

    .back-to-home {
        padding: 2rem 0;
    }

    .back-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }
}

/* About Me Section */
.about-me {
    padding: 3rem 0;
    background: transparent;
}

.about-me-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.about-me-photo {
    width: 120px;
    height: 120px;
    object-fit: cover;
}

.about-me-text {
    flex: 1;
    text-align: left;
}

.about-me-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
    font-family: "Work Sans", sans-serif;
}

.about-me-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.about-me-content p:last-child {
    margin-bottom: 0;
}

.about-me-content a {
    color: #4a9eff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s ease;
}

/* Mobile responsiveness for About Me */
@media (max-width: 768px) {
    .about-me {
        padding: 2rem 0;
    }
    
    .about-me-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .about-me-photo {
        width: 80px;
        height: 80px;
    }
    
    .about-me-text {
        text-align: center;
    }
    
    .about-me-title {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .about-me-content p {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
}
