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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid #333;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    padding: 5px 0;
}

.nav-link:hover,
.nav-link.active {
    color: #cccccc;
}

/* Sections */
.section {
    padding: 120px 0 80px;
    min-height: 100vh;
    background-color: #000000;
}

.welcome-section {
    padding-top: 140px;
}

h1 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: #333;
}

h2 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 50px;
    text-align: center;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Welcome Section */
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}

.hero-img {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
    background-color: #222;
}

.hero-img:hover {
    transform: scale(1.02);
    opacity: 0.9;
}

.hero-img.loading {
    opacity: 0.5;
    background: linear-gradient(90deg, #333 25%, #444 50%, #333 75%);
    background-size: 200% 100%;
    animation: loading-shimmer 1.5s infinite;
}

@keyframes loading-shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.bio-section {
    padding-left: 40px;
}

.bio-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #555;
}

/* Headshots Section */
.headshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    align-items: start;
}

.headshot {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
    background-color: #222;
}

.headshot:hover {
    transform: scale(1.02);
    opacity: 0.9;
}

.headshot.loading {
    opacity: 0.5;
    background: linear-gradient(90deg, #333 25%, #444 50%, #333 75%);
    background-size: 200% 100%;
    animation: loading-shimmer 1.5s infinite;
}

/* Resume Section */
.resume-content {
    max-width: 800px;
    margin: 0 auto;
}

.resume-section {
    margin-bottom: 50px;
}

.credit {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}

.role {
    font-weight: 500;
}

.production {
    font-style: italic;
}

.theater {
    color: #666;
}

.training-item,
.award {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.program,
.award-name {
    font-weight: 500;
}

.institution,
.award-year {
    color: #666;
}

/* Video Section */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

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

video {
    width: 100%;
    height: auto;
    max-height: 300px;
}

.video-caption {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
    align-items: start;
}

.gallery-img {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
    background-color: #222;
}

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

.gallery-img.loading {
    opacity: 0.5;
    background: linear-gradient(90deg, #333 25%, #444 50%, #333 75%);
    background-size: 200% 100%;
    animation: loading-shimmer 1.5s infinite;
}

/* Clickable image styles */
.clickable-img {
    cursor: pointer;
}

.clickable-img:hover {
    opacity: 0.8;
}

/* Press Section */
.press-content {
    max-width: 700px;
    margin: 0 auto;
}

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

blockquote {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #555;
}

cite {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Projects Section */
.projects-content {
    max-width: 800px;
    margin: 0 auto;
}

.project-item {
    margin-bottom: 40px;
    padding: 30px;
    border: 1px solid #eee;
    background-color: #fafafa;
}

.project-role {
    font-weight: 500;
    margin-bottom: 10px;
}

.project-details {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-description {
    line-height: 1.6;
    color: #555;
}

/* Contact Section */
.contact-section {
    background-color: #000000;
}

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

.contact-info {
    font-size: 1rem;
    line-height: 1.8;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    font-family: inherit;
    font-size: 1rem;
    background-color: white;
}

.contact-form button {
    padding: 15px 30px;
    background-color: #333;
    color: white;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
}

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

/* Footer */
.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 30px 0;
}

.footer p {
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .nav-link {
        font-size: 12px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .bio-section {
        padding-left: 0;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

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

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

    .credit {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .training-item,
    .award {
        flex-direction: column;
        gap: 5px;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

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

    .section {
        padding: 100px 0 60px;
    }

    .welcome-section {
        padding-top: 120px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

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

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

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

    .hero-img {
        height: 200px;
    }

    .headshot {
        height: 350px;
    }

    .gallery-img {
        height: 250px;
    }
}