/* ===================================
   ACTRESS PORTFOLIO - PROFESSIONAL STYLES
   =================================== */

/* CSS Custom Properties */
:root {
    --color-primary: #1a1a2e;
    --color-secondary: #16213e;
    --color-accent: #c9a227;
    --color-accent-light: #d4b84a;
    --color-text: #ffffff;
    --color-text-muted: #a0a0a0;
    --color-bg: #0f0f1a;
    --color-card: rgba(255, 255, 255, 0.03);
    --color-card-hover: rgba(255, 255, 255, 0.06);
    --color-border: rgba(255, 255, 255, 0.1);

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', 'Segoe UI', sans-serif;

    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 30px rgba(201, 162, 39, 0.2);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Selection Styling */
::selection {
    background-color: var(--color-accent);
    color: var(--color-primary);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--color-accent);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent-light);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.2;
}

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

a:hover {
    color: var(--color-accent-light);
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-primary);
}

.btn-primary:hover {
    background: var(--color-accent-light);
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.btn-secondary:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: translateY(-2px);
}

.btn svg {
    width: 18px;
    height: 18px;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all var(--transition-medium);
}

.navbar.scrolled {
    background: rgba(15, 15, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: var(--shadow-soft);
}

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

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text);
    letter-spacing: 0.05em;
}

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

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

.nav-link {
    color: var(--color-text);
    font-size: 0.875rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: width var(--transition-medium);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-text);
    transition: all var(--transition-fast);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-bg) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(201, 162, 39, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(201, 162, 39, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.02"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
}

.hero-subtitle {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--color-text) 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: 1.125rem;
    font-weight: 300;
    color: var(--color-text-muted);
    max-width: 500px;
    margin: 0 auto 2.5rem;
}

.hero-portrait {
    margin: 1.5rem auto 2rem;
    width: 300px;
    max-width: 80vw;
}

.hero-portrait img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: top center;
    display: block;
    box-shadow: var(--shadow-soft);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Animations */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ===================================
   SECTIONS COMMON STYLES
   =================================== */
.section {
    padding: 8rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-number {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-accent);
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--color-accent);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-top: 1.5rem;
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all var(--transition-slow);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   SHOWREEL SECTION
   =================================== */
.showreel-section {
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-primary) 100%);
}

.showreel-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.video-wrapper {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    aspect-ratio: 16/9;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-cover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    transition: background var(--transition-medium);
}

.video-cover:hover .video-cover-overlay {
    background: rgba(0, 0, 0, 0.3);
}

.video-play-btn {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text);
    transition: transform var(--transition-medium);
}

.video-play-btn:hover {
    transform: scale(1.05);
}

.play-icon {
    width: 80px;
    height: 80px;
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    transition: all var(--transition-medium);
    background: rgba(0, 0, 0, 0.3);
}

.play-icon svg {
    width: 32px;
    height: 32px;
    margin-left: 4px;
}

.video-play-btn:hover .play-icon {
    background: var(--color-accent);
    color: var(--color-primary);
}

.video-play-btn span {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-text);
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.video-placeholder:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-glow);
}

.play-button {
    position: relative;
    width: 80px;
    height: 80px;
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    transition: all var(--transition-medium);
    z-index: 1;
}

.play-button svg {
    width: 30px;
    height: 30px;
    margin-left: 5px;
}

.video-placeholder:hover .play-button {
    background: var(--color-accent);
    color: var(--color-primary);
    transform: scale(1.1);
}

.video-placeholder p {
    position: relative;
    z-index: 1;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.showreel-info {
    padding: 2rem;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: 4px;
}

.showreel-info h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--color-accent);
}

.credits-list {
    list-style: none;
}

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

.credits-list li:last-child {
    border-bottom: none;
}

.credits-list .role {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 0.25rem;
}

.credits-list .production {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

/* ===================================
   CV SECTION
   =================================== */
.cv-section {
    background: var(--color-primary);
}

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

.cv-card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    overflow: hidden;
    transition: all var(--transition-medium);
}

.cv-card:hover {
    background: var(--color-card-hover);
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.card-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--color-border);
    background: rgba(201, 162, 39, 0.05);
}

.card-header h3 {
    font-size: 1.125rem;
    color: var(--color-accent);
}

.card-content {
    padding: 1.5rem 2rem;
}

/* Personal Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-item .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
}

.info-item .value {
    font-size: 0.9375rem;
    color: var(--color-text);
}

/* Credits Table */
.credits-table {
    width: 100%;
    border-collapse: collapse;
}

.credits-table tr {
    border-bottom: 1px solid var(--color-border);
    transition: background var(--transition-fast);
}

.credits-table tr:last-child {
    border-bottom: none;
}

.credits-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.credits-table td {
    padding: 1rem 0.5rem;
    font-size: 0.875rem;
}

.credits-table td:first-child {
    padding-left: 0;
}

.credits-table td:last-child {
    padding-right: 0;
}

.credits-table .production {
    font-weight: 500;
    color: var(--color-text);
}

.credits-table .role {
    color: var(--color-accent);
}

.credits-table .director {
    color: var(--color-text-muted);
    text-align: right;
}

/* Training List */
.training-list {
    list-style: none;
}

.training-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.training-list li:last-child {
    border-bottom: none;
}

.training-list strong {
    font-weight: 500;
    color: var(--color-text);
}

.training-list span {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* Skills Tags */
.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.skill-tag {
    padding: 0.5rem 1rem;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 2px;
    font-size: 0.8125rem;
    color: var(--color-accent);
    transition: all var(--transition-fast);
}

.skill-tag:hover {
    background: var(--color-accent);
    color: var(--color-primary);
}

/* CV Download */
.cv-download {
    text-align: center;
    margin-top: 3rem;
}

/* ===================================
   MOTIVATION SECTION
   =================================== */
.motivation-section {
    background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-bg) 100%);
}

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

.motivation-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all var(--transition-medium);
    border-radius: 2px;
}

.tab-btn:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.tab-btn.active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-primary);
}

.motivation-panels {
    position: relative;
}

.motivation-panel {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-medium);
}

.motivation-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.panel-content {
    padding: 3rem;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    position: relative;
}

.quote-mark {
    font-family: var(--font-display);
    font-size: 8rem;
    color: var(--color-accent);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: 20px;
    line-height: 1;
}

.panel-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-accent);
}

.panel-content p {
    margin-bottom: 1.25rem;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-text);
}

.panel-content p:last-child {
    margin-bottom: 0;
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact-section {
    background: var(--color-bg);
}

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

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

.contact-item h4 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.contact-item p,
.contact-item a {
    display: block;
    font-size: 1rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

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

.contact-social h4 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-text);
    transition: all var(--transition-medium);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-primary);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.25rem 1rem 0.75rem;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: 2px;
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

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

.form-group label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    pointer-events: none;
    transition: all var(--transition-fast);
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: 0.25rem;
    font-size: 0.6875rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-form .btn {
    align-self: flex-start;
    margin-top: 1rem;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    padding: 3rem 0;
    background: var(--color-primary);
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.footer p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.footer-note {
    font-size: 0.75rem;
}

/* ===================================
   RESPONSIVE STYLES
   =================================== */
@media (max-width: 1024px) {
    .showreel-container {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: var(--color-primary);
        transition: right var(--transition-medium);
    }

    .nav-menu.active {
        right: 0;
    }

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

    .section {
        padding: 5rem 0;
    }

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

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

    .motivation-tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .tab-btn {
        text-align: center;
    }

    .panel-content {
        padding: 2rem 1.5rem;
    }

    .quote-mark {
        font-size: 5rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

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

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

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

/* ===================================
   LOADING ANIMATION
   =================================== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-bg);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 50px;
    height: 50px;
    border: 2px solid var(--color-border);
    border-top-color: var(--color-accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===================================
   CURSOR EFFECTS (Optional Enhancement)
   =================================== */
.cursor {
    width: 20px;
    height: 20px;
    border: 1px solid var(--color-accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.15s ease;
    display: none;
}

@media (hover: hover) and (pointer: fine) {
    .cursor {
        display: block;
    }
}

.cursor.hover {
    transform: scale(2);
    background: rgba(201, 162, 39, 0.1);
}

/* ===================================
   CREDITS LIST LINKS
   =================================== */
.credit-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

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

/* ===================================
   FILM SECTION
   =================================== */
.film-section {
    background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-bg) 100%);
}

.film-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    grid-auto-rows: 200px;
}

.film-mosaic .mosaic-item:nth-child(1)  { grid-column: span 2; grid-row: span 2; }
.film-mosaic .mosaic-item:nth-child(4)  { grid-column: span 2; }
.film-mosaic .mosaic-item:nth-child(7)  { grid-row: span 2; }
.film-mosaic .mosaic-item:nth-child(10) { grid-column: span 2; }
.film-mosaic .mosaic-item:nth-child(12) { grid-column: span 2; grid-row: span 2; }
.film-mosaic .mosaic-item:nth-child(16) { grid-column: span 2; }

.mosaic-item {
    overflow: hidden;
    cursor: pointer;
    position: relative;
    background: var(--color-secondary);
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.mosaic-item:hover img {
    transform: scale(1.06);
    filter: brightness(1.1);
}

/* ===================================
   THEATRE SECTION
   =================================== */
.theatre-section {
    background: var(--color-bg);
}

.theatre-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.theatre-credits-col {
    position: sticky;
    top: 100px;
}

.section-header-left {
    text-align: left;
    margin-bottom: 2rem;
}

.section-header-left .section-title::after {
    left: 0;
    transform: none;
}

.theatre-credits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.theatre-credits-list li {
    font-size: 0.9375rem;
    color: var(--color-text);
    line-height: 1.5;
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border);
}

.theatre-credits-list li:first-child {
    padding-top: 0;
}

.theatre-credits-list li:last-child {
    border-bottom: none;
}

.theatre-credits-list em {
    color: var(--color-accent);
    font-style: italic;
}

.credit-note {
    display: block;
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    margin-top: 0.25rem;
}

.theatre-mosaic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    grid-auto-rows: 180px;
}

.theatre-mosaic .mosaic-item:nth-child(5n+1)  { grid-column: span 2; }
.theatre-mosaic .mosaic-item:nth-child(7n+4)  { grid-row: span 2; }
.theatre-mosaic .mosaic-item:nth-child(11n+8) { grid-column: span 2; }

/* ===================================
   WATCH SECTION
   =================================== */
.watch-list {
    max-width: 600px;
    margin: 0 auto;
}

.watch-item {
    padding: 2rem;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    margin-bottom: 1.5rem;
    transition: background var(--transition-medium);
}

.watch-item:hover {
    background: var(--color-card-hover);
}

.watch-link {
    display: block;
    text-decoration: none;
}

.watch-title {
    font-size: 1.25rem;
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--color-text);
    margin: 0;
    transition: color var(--transition-fast);
}

.watch-item:hover .watch-title {
    color: var(--color-accent);
}

.watch-password {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-top: 0.75rem;
    letter-spacing: 0.05em;
}

/* ===================================
   FURTHER PORTFOLIO SECTION
   =================================== */
.portfolio-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    grid-auto-rows: 220px;
}

.portfolio-mosaic .mosaic-item:nth-child(1)  { grid-column: span 2; grid-row: span 2; }
.portfolio-mosaic .mosaic-item:nth-child(5)  { grid-column: span 2; }
.portfolio-mosaic .mosaic-item:nth-child(8)  { grid-row: span 2; }
.portfolio-mosaic .mosaic-item:nth-child(11) { grid-column: span 2; }
.portfolio-mosaic .mosaic-item:nth-child(14) { grid-column: span 2; grid-row: span 2; }
.portfolio-mosaic .mosaic-item:nth-child(19) { grid-column: span 2; }
.portfolio-mosaic .mosaic-item:nth-child(23) { grid-column: span 2; }

/* ===================================
   PLACEHOLDER SECTIONS
   =================================== */
.coming-soon {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 1rem;
    letter-spacing: 0.1em;
    padding: 3rem 0;
}

/* ===================================
   LIGHTBOX
   =================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.93);
    cursor: pointer;
}

.lightbox-close {
    position: absolute;
    top: 1.25rem;
    right: 1.75rem;
    background: none;
    border: none;
    color: var(--color-text);
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    z-index: 1;
    transition: color var(--transition-fast);
    padding: 0;
}

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

.lightbox-img {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
}

/* ===================================
   RESPONSIVE – FILM & THEATRE
   =================================== */
@media (max-width: 1024px) {
    .theatre-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .theatre-credits-col {
        position: static;
    }
}

@media (max-width: 768px) {
    .film-mosaic {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px;
    }

    .film-mosaic .mosaic-item:nth-child(1)  { grid-column: span 2; grid-row: span 1; }
    .film-mosaic .mosaic-item:nth-child(12) { grid-column: span 1; grid-row: span 1; }

    .theatre-mosaic {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 140px;
    }

    .portfolio-mosaic {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px;
    }

    .portfolio-mosaic .mosaic-item:nth-child(1)  { grid-column: span 2; grid-row: span 1; }
    .portfolio-mosaic .mosaic-item:nth-child(14) { grid-column: span 1; grid-row: span 1; }
}
