/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Intro Animation Overlay */
.intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    cursor: pointer;
    opacity: 1;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.intro-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
}

.intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    cursor: pointer;
    opacity: 1;
    transition: all 4s ease;
}

.intro-overlay.transitioning {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 25%, #d1d5db 50%, #9ca3af 75%, #6b7280 100%);
    transition: all 4s ease;
}

.intro-overlay.auto-trigger {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 25%, #374151 50%, #1f2937 75%, #111827 100%);
    transition: all 4s ease;
}

.intro-overlay.transitioning .intro-content {
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
    transition: all 3s ease;
}

.intro-overlay.transitioning .intro-hint {
    opacity: 0;
    transform: translateY(30px) scale(0.8);
    transition: all 3s ease;
}

.intro-overlay.auto-trigger .intro-content {
    opacity: 0;
    transform: scale(0.8);
    transition: all 3s ease;
}

.intro-overlay.auto-trigger .intro-hint {
    opacity: 0;
    transform: translateY(20px);
    transition: all 3s ease;
}

/* Transition message */
.transition-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.8rem;
    font-weight: 300;
    text-align: center;
    opacity: 0;
    transition: all 3s ease;
    z-index: 10;
}

.transition-message.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.transition-message.fade-out {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Creative work showcase animations */
.work-showcase {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 3s ease;
    pointer-events: none;
}

.work-showcase.active {
    opacity: 1;
    pointer-events: auto;
}

.work-showcase img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transform: scale(0.8) rotate(-2deg);
    transition: all 2s ease;
    filter: brightness(0.8) contrast(1.1);
}

.work-showcase.active img {
    transform: scale(1) rotate(0deg);
    filter: brightness(1) contrast(1);
}

.work-showcase h3 {
    position: absolute;
    bottom: 25%;
    left: 50%;
    transform: translateX(-50%) translateY(30px);
    color: white;
    font-size: 2rem;
    font-weight: 300;
    text-align: center;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: all 1.5s ease 0.5s;
    letter-spacing: 0.05em;
}

.work-showcase.active h3 {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.work-showcase .work-description {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 300;
    text-align: center;
    opacity: 0;
    transition: all 1.5s ease 1s;
    max-width: 60%;
    line-height: 1.6;
}

.work-showcase.active .work-description {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Floating particles effect */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

/* Creative transitions */
.work-showcase.entering {
    animation: workEnter 3s ease-out;
}

.work-showcase.exiting {
    animation: workExit 2s ease-in;
}

@keyframes workEnter {
    0% {
        opacity: 0;
        transform: scale(0.5) rotate(-10deg);
    }
    30% {
        opacity: 0.3;
        transform: scale(0.8) rotate(-5deg);
    }
    70% {
        opacity: 0.8;
        transform: scale(1.05) rotate(1deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes workExit {
    0% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
    30% {
        opacity: 0.8;
        transform: scale(0.95) rotate(2deg);
    }
    70% {
        opacity: 0.3;
        transform: scale(0.85) rotate(4deg);
    }
    100% {
        opacity: 0;
        transform: scale(0.8) rotate(5deg);
    }
}

.intro-content {
    text-align: center;
}

.intro-title {
    font-size: 3.5rem;
    font-weight: 300;
    color: #333;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateY(30px);
    animation: titleSlideIn 2s ease-out 0.5s forwards;
}

.intro-subtitle {
    font-size: 1.5rem;
    color: #666;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: subtitleSlideIn 1.5s ease-out 2.5s forwards;
}

.intro-hint {
    position: absolute;
    bottom: 10%;
    font-size: 0.9rem;
    color: #999;
    font-weight: 300;
    opacity: 0;
    animation: hintFadeIn 1s ease-out 7.5s forwards, hintPulse 2s ease-in-out infinite 8s;
    cursor: pointer;
}

/* Intro Animation Keyframes */
@keyframes titleSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes subtitleSlideIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hintFadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes hintPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Container */
.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #f0f0f0;
    z-index: 1000;
}

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

.nav-brand a {
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
    color: #333;
}

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

.nav-link {
    text-decoration: none;
    color: #666;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #333;
}

/* Main content */
.main-content {
    margin-top: 80px;
    min-height: calc(100vh - 160px);
    padding: 40px 0;
}

/* Page header */
.page-header {
    margin-bottom: 60px;
    padding: 0 20px;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: #333;
}

.page-description {
    font-size: 1.1rem;
    color: #666;
    font-weight: 300;
}

/* Works grid */
.works-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 60px;
}

.work-item {
    transition: transform 0.3s ease;
    margin-bottom: 0;
}

.work-item:hover {
    transform: none;
}

.work-item a {
    text-decoration: none;
    color: inherit;
}

.work-item h2 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #333;
    transition: color 0.3s ease;
    padding: 0 20px;
    margin-top: 20px;
}

.work-item:hover h2 {
    color: #000;
}

.work-image {
    overflow: visible;
    border-radius: 0;
    background-color: #f8f8f8;
    width: 100%;
    position: relative;
}



.work-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.work-item:hover .work-image img {
    transform: none;
}

/* Footer */
.footer {
    border-top: 1px solid #f0f0f0;
    padding: 40px 0;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .works-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .work-image img {
        height: auto;
    }
    
    /* Intro animation responsive */
    .intro-title {
        font-size: 2.5rem;
    }
    
    .intro-subtitle {
        font-size: 1.2rem;
    }
    
    .intro-hint {
        font-size: 0.8rem;
        bottom: 8%;
    }
}

@media (max-width: 480px) {
    .nav-container {
        flex-direction: column;
        height: auto;
        padding: 15px 20px;
    }
    
    .nav-menu {
        margin-top: 10px;
        gap: 0.8rem;
    }
    
    .main-content {
        margin-top: 100px;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.nav-link:focus,
.work-item a:focus {
    outline: 2px solid #333;
    outline-offset: 2px;
}

/* About page styles */
.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.about-text h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #333;
}

.about-text h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin: 2rem 0 1rem 0;
    color: #333;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.about-text ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.about-text li {
    margin-bottom: 0.5rem;
    color: #555;
}

.about-image {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-section {
    border-top: 1px solid #f0f0f0;
    padding-top: 40px;
    margin-top: 40px;
}

.contact-section h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #333;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #555;
}

/* Responsive design for about page */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        position: static;
        order: -1;
    }
    
    .about-text h2 {
        font-size: 1.6rem;
    }
}

/* Shows page styles */
.shows-content {
    max-width: 800px;
    margin: 0 auto;
}

.show-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 40px;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid #f0f0f0;
}

.show-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.show-date {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    padding-top: 5px;
}

.show-details h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #333;
}

.show-location {
    font-weight: 500;
    color: #666;
    margin-bottom: 1rem;
}

.show-description {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.show-duration {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

/* Responsive design for shows page */
@media (max-width: 768px) {
    .show-item {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .show-date {
        font-size: 1rem;
        padding-top: 0;
    }
    
    .show-details h3 {
        font-size: 1.3rem;
    }
}

/* Press page styles */
.press-content {
    max-width: 800px;
    margin: 0 auto;
}

.press-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 40px;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid #f0f0f0;
}

.press-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.press-date {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    padding-top: 5px;
}

.press-details h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #333;
}

.press-publication {
    font-weight: 500;
    color: #666;
    margin-bottom: 1rem;
}

.press-description {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.press-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.press-link:hover {
    color: #000;
}

/* Conversations page styles */
.conversations-content {
    max-width: 800px;
    margin: 0 auto;
}

.conversation-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 40px;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid #f0f0f0;
}

.conversation-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.conversation-date {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    padding-top: 5px;
}

.conversation-details h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #333;
}

.conversation-platform {
    font-weight: 500;
    color: #666;
    margin-bottom: 1rem;
}

.conversation-description {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.conversation-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.conversation-link:hover {
    color: #000;
}

/* Responsive design for press and conversations pages */
@media (max-width: 768px) {
    .press-item,
    .conversation-item {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .press-date,
    .conversation-date {
        font-size: 1rem;
        padding-top: 0;
    }
    
    .press-details h3,
    .conversation-details h3 {
        font-size: 1.3rem;
    }
} 