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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

header {
    background-color: #000;
    color: #fff;
    padding: 0;
}


.hero {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.banner-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background-image: url('images/header.webp');
    background-size: cover;
    background-position: center;
}

/*.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}*/

#profile-photo {
    display: none;
}

.hero-text {
    text-align: left;
    padding: 2rem;
}

#filmmaker-name {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    display: inline-block;
    background: rgba(0, 0, 0, 0.7);
}

.nav-container {
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.category-toggle {
    display: none;
    width: 100%;
    padding: 1rem;
    background: #fff;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.category-toggle i {
    font-size: 0.9rem;
}

.category-nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.category-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.category-nav a:hover {
    background-color: #f0f0f0;
}

.category-nav a.active {
    background-color: #000;
    color: #fff;
}

main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.video-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 1.5rem;
}

.video-info h2 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.video-info p {
    color: #666;
    font-size: 0.9rem;
}

.bio {
    max-width: 600px;
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #f0f0f0;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.7);
    display: inline-block;
}

footer {
    background-color: #fff;
    padding: 4rem 0;
    margin-top: 4rem;
}

.contact-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.contact-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    transition: transform 0.3s ease, color 0.3s ease;
    padding: 1rem;
}

.contact-link:hover {
    transform: translateY(-5px);
    color: #000;
}

.contact-link i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-link span {
    font-size: 0.9rem;
    font-weight: 500;
}

.category-tags {
    margin-top: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.category-tag {
    font-size: 0.8rem;
    padding: 0.2rem 0.8rem;
    background-color: #f0f0f0;
    border-radius: 15px;
    color: #666;
    text-transform: capitalize;
}

@media (min-width: 769px) {
    .hero {
        text-align: left;
    }
    
    .hero-text {
        position: absolute;
        top: 50%;
        left: 2rem;
        transform: translateY(-50%);
        max-width: 50%;
    }
    
    .banner-image {
        margin-bottom: 0;
    }
    #profile-photo {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-text {
        text-align: center;
    }
    
    .banner-image {

        height: 200px;
        margin-bottom: 0;
        background-position: calc(50% - 50px) 50%;
    }



    #profile-photo {
        width: 200px;
        height: 200px;
        border-radius: 50%;
        margin-top: 1rem;
    }
    
    #filmmaker-name {
        font-size: 2rem;
        margin: 0;
    }

    .bio {
        font-size: 1rem;
        margin: 0 auto;
    }

    .category-toggle {
        display: flex;
    }
    
    .category-nav {
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem;
    }

    .category-nav.show {
        display: flex;
    }
    
    .category-nav a {
        width: 100%;
        text-align: center;
        padding: 0.75rem;
        border-radius: 0;
        background-color: #f8f8f8;
    }

    .category-nav a:hover {
        background-color: #f0f0f0;
    }

    .category-nav a.active {
        background-color: #000;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }

    .contact-section {
        padding: 0 1rem;
    }

    .social-links {
        gap: 1rem;
    }
} 