/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: #1a1a1a;
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: normal;
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    padding: 0.5rem 0;
}

nav a:hover, 
nav a.active {
    color: #c9a961;
}

/* Main Content */
main {
    min-height: 80vh;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.hero-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    margin: 0 auto 2rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-placeholder {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    margin: 0 auto 2rem;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #666;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero h1, .hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: normal;
}

.hero .tagline {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2rem;
    font-style: italic;
}

.hero .subtitle {
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

/* Sections */
.section {
    padding: 3rem 0;
}

.section-white {
    background: white;
}

.section-dark {
    background: #1a1a1a;
    color: white;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-weight: normal;
}

.section-dark .section-title {
    color: white;
}

/* Credits Grid */
.credits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.credit-item {
    background: white;
    padding: 1.5rem;
    border-left: 4px solid #c9a961;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.credit-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.credit-year {
    font-weight: bold;
    color: #c9a961;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.credit-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0.5rem 0;
    color: #1a1a1a;
}

.credit-role {
    color: #666;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.credit-director {
    font-size: 0.9rem;
    color: #888;
}

/* Bio Content */
.bio-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    line-height: 1.8;
}

.bio-content p {
    margin-bottom: 1.5rem;
}

.bio-content h3 {
    color: #1a1a1a;
    margin: 2rem 0 1rem 0;
    font-size: 1.3rem;
}

/* Showreel */
.showreel-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-description {
    background: white;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: left;
}

/* Contact Section */
.contact-info {
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item {
    background: white;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-item h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.contact-item a {
    color: #c9a961;
    text-decoration: none;
    font-weight: bold;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Credits Table */
.credits-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.credits-table th,
.credits-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.credits-table th {
    background: #1a1a1a;
    color: white;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.credits-table tr:hover {
    background: #f9f9f9;
}

.credits-table .year {
    font-weight: bold;
    color: #c9a961;
    width: 80px;
}

.credits-table .title {
    font-weight: bold;
}

.credits-table .role {
    font-style: italic;
    color: #666;
}

/* Footer */
footer {
    background: #000;
    color: white;
    text-align: center;
    padding: 2rem 0;
    font-size: 0.9rem;
}

footer a {
    color: #c9a961;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero h1, .hero h2 {
        font-size: 2rem;
    }
    
    .hero .tagline {
        font-size: 1.1rem;
    }
    
    .hero-image,
    .hero-image-placeholder {
        width: 250px;
        height: 250px;
    }
    
    .bio-content {
        padding: 2rem;
    }
    
    .credits-table {
        font-size: 0.9rem;
    }
    
    .credits-table th,
    .credits-table td {
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .bio-content {
        padding: 1.5rem;
    }
}
.contact-item p {
    color: #333;
}