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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #999999;
    background: #000000;
    min-height: 100vh;
    position: relative;
}

/* Background Image Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/background.jpg') center center;
    background-size: cover;
    background-attachment: fixed;
    opacity: 0.15;
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

/* Navigation */
.navigation {
    margin-bottom: 60px;
}

.navigation ul {
    list-style: none;
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.navigation a {
    color: #999999;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    transition: color 0.3s ease;
    padding: 5px 10px;
    border-bottom: 2px solid transparent;
}

.navigation a:hover {
    color: #ffffff;
}

.navigation a.active {
    color: #ffffff;
    border-bottom: 2px solid #D3A656;
}

/* Main Content */
.content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

h2 {
    font-size: 24px;
    font-weight: 300;
    color: #999999;
    margin-bottom: 40px;
}

h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.bio {
    margin-bottom: 50px;
    text-align: left;
}

.bio p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #999999;
}

.contact {
    padding-top: 30px;
    border-top: 1px solid #333;
}

.contact p {
    margin-bottom: 10px;
    color: #999999;
}

.contact a {
    color: #D3A656;
    text-decoration: none;
}

.contact a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* What Page - Filters */
.filters-section {
    margin-bottom: 40px;
}

.filter-group {
    margin-bottom: 20px;
}

.filter-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #999999;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.filters {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-family: inherit;
    color: #999999;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #666;
    color: #ffffff;
}

.filter-btn.active {
    background: #D3A656;
    color: #000;
    border-color: #D3A656;
}

/* Production Cards Grid */
.productions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.production-card {
    background: rgba(24, 26, 31, 0.95);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.production-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(211, 166, 86, 0.3);
    border-color: rgba(211, 166, 86, 0.3);
}

.production-card .image-container {
    position: relative;
    width: 100%;
    height: 200px;
    background: #101010;
    overflow: hidden;
}

.production-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.production-card .no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 18px;
    font-weight: 500;
}

.production-card .card-content {
    padding: 20px;
}

.production-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
    min-height: 50px;
}

.production-card .metadata {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.production-card .year {
    font-size: 16px;
    font-weight: 500;
    color: #D3A656;
}

.production-card .department {
    font-size: 14px;
    color: #999999;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    display: inline-block;
    width: fit-content;
}

.production-card .role {
    font-size: 14px;
    color: #999999;
    font-style: italic;
}

.production-card .imdb-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 15px;
    background: #f5c518;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.production-card .imdb-link:hover {
    background: #e6b616;
}

/* Stats */
.stats {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(24, 26, 31, 0.95);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: #D3A656;
}

.stat-label {
    font-size: 14px;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 36px;
    }
    
    h2 {
        font-size: 20px;
    }
    
    .productions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .navigation ul {
        gap: 20px;
    }
    
    .stats {
        flex-direction: column;
        gap: 15px;
    }
}