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

:root {
    --primary-bg: #ffffff;
    --text-color: #222222;
    --text-light: #666666;
    --overlay-bg: rgba(0, 0, 0, 0.7);
    --border-color: #e5e5e5;
    --grid-spacing: 20px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--primary-bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header and Navigation */
header {
    background: var(--primary-bg);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.main-nav {
    padding: 20px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.nav-links a:hover {
    color: var(--text-light);
}

/* Slideshow Section */
.slideshow-section {
    width: 100%;
    max-height: 600px;
    overflow: hidden;
    background: #000;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 600px;
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
}

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

.fade {
    animation: fadeEffect 1.5s;
}

@keyframes fadeEffect {
    from {opacity: 0.4}
    to {opacity: 1}
}

/* Welcome Bio Section */
.welcome-bio {
    padding: 80px 0;
}

.bio-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.bio-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.bio-text h1 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.bio-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text-color);
}

/* Hero Section (for other pages) */
.hero {
    text-align: center;
    padding: 120px 40px 80px;
    background: var(--primary-bg);
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.hero-content .tagline {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 300;
    letter-spacing: 1px;
}

/* Gallery Sections */
.gallery-section {
    padding: 80px 0;
}

.gallery-section h2 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: 1px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--grid-spacing);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/2;
}

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

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

.placeholder-image {
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 14px;
    transition: transform 0.3s ease;
}

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

/* Resume Section */
.resume-section {
    padding: 80px 0;
    background: #fafafa;
}

.resume-section h2 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: 1px;
}

.resume-content {
    max-width: 800px;
    margin: 0 auto;
}

.bio {
    margin-bottom: 40px;
}

.bio p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
}

.credits h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
}

.credits ul {
    list-style: none;
}

.credits li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

/* Video Section */
.video-section {
    padding: 80px 0;
}

.video-section h2 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: 1px;
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

/* Press Section */
.press-section {
    padding: 80px 0;
    background: #fafafa;
}

.press-section h2 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: 1px;
}

.press-content {
    max-width: 800px;
    margin: 0 auto;
}

.press-item {
    margin-bottom: 40px;
}

.press-item h3 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 10px;
}

.publication {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.excerpt {
    font-style: italic;
    line-height: 1.8;
}

/* Current/Upcoming Section */
.current-section {
    padding: 80px 0;
}

.current-section h2 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: 1px;
}

.projects {
    max-width: 800px;
    margin: 0 auto;
}

.project-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.project-item h3 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 10px;
}

.venue, .dates {
    font-size: 14px;
    color: var(--text-light);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #fafafa;
}

.contact-section h2 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: 1px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-text {
    padding-top: 20px;
}

.representation {
    margin-top: 30px;
}

.representation strong {
    font-weight: 500;
}

.agency-logo {
    max-width: 200px;
    margin-top: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    font-family: inherit;
    font-size: 14px;
}

.contact-form button {
    background: var(--text-color);
    color: white;
    border: none;
    padding: 12px 40px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form button:hover {
    background: #444;
}

/* Footer */
footer {
    background: transparent;
    padding: 15px 0;
}

.footer-content {
    font-size: 14px;
    text-align: right;
}

.copyright {
    margin: 0;
    color: var(--text-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav-container {
        padding: 0 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .slideshow-container {
        height: 400px;
    }

    .bio-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .bio-text h1 {
        font-size: 28px;
    }

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gallery-section h2,
    .resume-section h2,
    .video-section h2,
    .press-section h2,
    .current-section h2,
    .contact-section h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .nav-links {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .hero {
        padding: 80px 20px 60px;
    }

    .hero-content h1 {
        font-size: 28px;
    }
}
