/* ========================================
   RESET & BASE STYLES
   ======================================== */

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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #4a4a4a;
    --accent-color: #2c5f8d;
    --background-color: #ffffff;
    --text-color: #1a1a1a;
    --light-gray: #f5f5f5;
    --border-color: #e0e0e0;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ========================================
   NAVIGATION
   ======================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--accent-color);
}

/* ========================================
   CONTAINER
   ======================================== */

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

/* ========================================
   SECTION TITLE
   ======================================== */

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 0 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-text {
    text-align: left;
}

.hero-name {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
    line-height: 1.1;
}

.hero-subtitle {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-tagline {
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-weight: 300;
    margin: 0;
}

.union-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, rgba(44, 95, 141, 0.1) 0%, rgba(44, 95, 141, 0.05) 100%);
    color: var(--accent-color);
    border: 1.5px solid var(--accent-color);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition);
    white-space: nowrap;
}

.union-pill:hover {
    background: var(--accent-color);
    color: white;
    transform: scale(1.05);
}

.hero-bio {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    max-width: 600px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background: white;
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-button svg {
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateY(4px);
}

/* ========================================
   REEL SECTION
   ======================================== */

.reel {
    padding: 3rem 0 2rem;
    background-color: var(--background-color);
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

.reel-actions {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.download-reel-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.download-reel-btn:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.download-reel-btn svg {
    flex-shrink: 0;
}

/* ========================================
   CREDITS/SEO SECTION
   ======================================== */

.credits-seo {
    padding: 2rem 0 2rem;
    background-color: var(--background-color);
}

.credits-content {
    max-width: 900px;
    margin: 0 auto;
}

.credit-item {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.credit-item:last-of-type {
    border-bottom: none;
}

.credit-item h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.credit-item h3 a {
    color: var(--primary-color);
    transition: var(--transition);
}

.credit-item h3 a:hover {
    color: var(--accent-color);
}

.credit-details {
    font-size: 1rem;
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.credit-role {
    font-weight: 600;
}

.credit-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--secondary-color);
}

.skills-section {
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--light-gray);
    border-radius: 8px;
}

.skills-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.skills-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}

.skills-list li {
    padding: 0.5rem 1rem;
    background-color: white;
    border-radius: 4px;
    border-left: 3px solid var(--accent-color);
    font-size: 0.95rem;
    color: var(--secondary-color);
}

/* ========================================
   HEADSHOTS SECTION
   ======================================== */

.headshots {
    padding: 3rem 0 2rem;
    background-color: var(--light-gray);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

/* ========================================
   LIGHTBOX
   ======================================== */

.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.close-lightbox {
    position: absolute;
    top: 2rem;
    right: 3rem;
    font-size: 3rem;
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.close-lightbox:hover {
    color: var(--accent-color);
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact {
    padding: 3rem 0 6rem;
    background-color: var(--background-color);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-block h3 {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.email-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-link {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.contact-link:hover {
    text-decoration: underline;
}

.copy-email-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    background-color: var(--light-gray);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--secondary-color);
}

.copy-email-btn:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

.copy-email-btn:active {
    transform: translateY(0);
}

.copy-email-btn svg {
    display: block;
}

/* Copy Success Tooltip */
.copy-tooltip {
    position: fixed;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    pointer-events: none;
    z-index: 10000;
    opacity: 0;
    transform: translateY(10px) scale(0.9);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4),
                0 2px 6px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.copy-tooltip.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.copy-tooltip svg {
    display: block;
    flex-shrink: 0;
}

.copy-tooltip span {
    letter-spacing: 0.3px;
}

.representation {
    line-height: 1.8;
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: transparent;
    color: var(--primary-color);
    transition: var(--transition);
    cursor: pointer;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon svg {
    width: 32px;
    height: 32px;
}

.social-icon-tiktok {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: transparent;
    padding: 0;
    transition: var(--transition);
    cursor: pointer;
}

.social-icon-tiktok:hover {
    transform: translateY(-3px);
}

.social-icon-tiktok img {
    display: block;
    height: 32px;
    width: 32px;
}

.social-icon-imdb,
.social-icon-backstage {
    background-color: transparent;
    padding: 0;
    width: auto;
    height: 32px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.social-icon-imdb:hover,
.social-icon-backstage:hover {
    background-color: transparent;
    transform: translateY(-3px);
}

.social-icon-backstage img {
    display: block;
    height: 16px;
    width: auto;
    border-radius: 0;
}

.social-icon-imdb img {
    display: block;
    height: 24px;
    width: auto;
    border-radius: 0;
}

.download-resume {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 4px;
    font-weight: 500;
    transition: var(--transition);
    width: fit-content;
}

.download-resume:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

/* ========================================
   CONTACT FORM
   ======================================== */

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--secondary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-group textarea {
    resize: vertical;
}

.submit-button {
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.submit-button:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.submit-button:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.form-message {
    display: none;
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
}

.form-message-success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.form-message-error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    padding: 3rem 0;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.footer p {
    margin: 0.5rem 0;
    opacity: 0.8;
}

.last-updated {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }

    .hero-name {
        font-size: 3rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
    }

    .nav-link {
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .hero {
        padding: 5rem 0 1.5rem;
    }

    .hero-name {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }

    .hero-tagline {
        font-size: 1.25rem;
    }

    .union-pill {
        font-size: 0.7rem;
        padding: 0.35rem 0.85rem;
    }

    .hero-bio {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.9rem 1.75rem;
        font-size: 0.95rem;
    }

    .skills-list {
        grid-template-columns: 1fr;
    }

    .reel {
        padding: 2rem 0 1.5rem;
    }
    
    .headshots {
        padding: 2rem 0 1.5rem;
    }
    
    .credits-seo {
        padding: 1.5rem 0 1.5rem;
    }
    
    .contact {
        padding: 2rem 0 4rem;
    }

    .close-lightbox {
        top: 1rem;
        right: 1.5rem;
        font-size: 2.5rem;
    }
}

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

    .nav-container {
        padding: 0 1rem;
    }

    .nav-logo {
        font-size: 1.25rem;
    }

    .nav-menu {
        gap: 0.65rem;
    }

    .nav-link {
        font-size: 0.7rem;
        white-space: nowrap;
    }

    .hero-name {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        align-items: center;
    }

    .hero-tagline {
        font-size: 0.95rem;
    }

    .union-pill {
        font-size: 0.65rem;
        padding: 0.3rem 0.75rem;
    }

    .hero-bio {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .credit-item h3 {
        font-size: 1.25rem;
    }

    .skills-section {
        padding: 1.5rem;
    }

    .gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .cta-button {
        padding: 0.875rem 1.75rem;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   PERFORMANCE OPTIMIZATIONS
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

