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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #fafafa;
    color: #1a1a1a;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e5e5;
    padding: 1.5rem 2rem;
    z-index: 100;
}

.nav-home {
    color: #064e3b;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-home:hover {
    color: #065f46;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem 2rem;
}

.page-header {
    text-align: center;
    margin-bottom: 6rem;
}

.page-header h1 {
    font-family: 'Crimson Pro', Georgia, serif;
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -2px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #64748b;
}

.section {
    margin-bottom: 6rem;
}

.section h2 {
    font-family: 'Crimson Pro', Georgia, serif;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: #0a0a0a;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e5e5e5;
}

.project-card {
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #065f46;
    box-shadow: 0 8px 24px rgba(6, 95, 70, 0.1);
}

.project-card.simple {
    border: 1px solid #e5e5e5;
    padding: 2rem;
}

.project-year {
    position: absolute;
    top: -15px;
    left: 2.5rem;
    background: #065f46;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.project-card h3 {
    font-family: 'Crimson Pro', Georgia, serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #0a0a0a;
}

.project-description {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #2d3748;
}

.project-credits {
    background: #f8f9fa;
    padding: 1.25rem;
    border-radius: 6px;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.project-credits strong {
    color: #1a1a1a;
}

.project-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.project-links a {
    color: #065f46;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.project-links a:hover {
    color: #064e3b;
    text-decoration: underline;
}

.footer {
    text-align: center;
    padding: 3rem 0 2rem 0;
    color: #94a3b8;
    font-size: 0.9rem;
    border-top: 1px solid #e5e5e5;
    margin-top: 4rem;
}

/* Image placeholders for films and festival */

.project-image {
    width: 50%;
    max-width: 400px;
    margin: 0 auto 2rem auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.project-image img {
    width: 100%;
    height: auto;
    display: block;
}

.festival-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.festival-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.festival-gallery img:hover {
    transform: scale(1.02);
}


/* Watch Button */
.watch-btn {
    display: inline-block;
    background: #065f46;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    margin: 1rem 0 1.5rem 0;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.watch-btn:hover {
    background: #064e3b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 95, 70, 0.3);
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.video-modal-content {
    position: relative;
    width: 100%;
    max-width: 1200px;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.video-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.3s ease;
}

.video-close:hover {
    color: #065f46;
}

.video-modal-content video {
    width: 100%;
    height: auto;
    display: block;
}


@media (max-width: 768px) {
    .container {
        padding: 6rem 1.5rem 3rem 1.5rem;
    }

    .page-header h1 {
        font-size: 3rem;
    }

    .project-card {
        padding: 2rem 1.5rem;
    }

    .project-year {
        left: 1.5rem;
    }

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

    .festival-gallery img {
        height: 200px;
    }

    .video-modal {
        padding: 1rem;
    }

    .video-close {
        top: -35px;
        font-size: 32px;
    }

}