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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    font-size: 16px;
}

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

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

/* Logo */
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #000;
    border-bottom: none;
    transition: opacity 0.3s ease;
}

.logo a:hover {
    opacity: 0.7;
    border-bottom: none;
}

.logo-kw {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.05em;
    color: #000;
    padding: 0.25rem 0.5rem;
    border: 2px solid #000;
    border-radius: 4px;
    background-color: transparent;
    transition: all 0.3s ease;
}

.logo a:hover .logo-kw {
    background-color: #000;
    color: #fff;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: #000;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: #000;
    transition: width 0.3s ease;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

/* Main content */
.main-content {
    margin-top: 80px;
    min-height: 100vh;
}

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

/* Sections */
.section {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.section.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Typography */
.page-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: #000;
    letter-spacing: -0.02em;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

h2 {
    font-size: 1.5rem;
    font-weight: 500;
    margin: 3rem 0 1.5rem 0;
    color: #000;
    letter-spacing: -0.01em;
}

p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #333;
}

em {
    font-style: italic;
    color: #000;
}

strong {
    font-weight: 600;
    color: #000;
}

/* Links */
a {
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #ccc;
    transition: border-bottom-color 0.3s ease;
}

a:hover {
    border-bottom-color: #000;
}

a:visited {
    color: #333;
}

/* External links in work items */
.work-item a,
.event-item a,
.project-item a,
.press-item a {
    border-bottom: 1px solid #ddd;
}

.work-item a:hover,
.event-item a:hover,
.project-item a:hover,
.press-item a:hover {
    border-bottom-color: #000;
}

/* Content sections */
.content {
    font-size: 1rem;
}

/* About section specific styles */
.about-content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    margin-top: 2rem;
}

.profile-image {
    flex-shrink: 0;
    width: 280px;
}

.profile-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-image img:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.about-text {
    flex: 1;
}

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

/* Work items */
.work-item,
.event-item,
.project-item,
.press-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f5f5f5;
}

.work-item:last-child,
.event-item:last-child,
.project-item:last-child,
.press-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.work-item p,
.event-item p,
.project-item p,
.press-item p {
    margin-bottom: 0;
    line-height: 1.6;
}

/* Lists */
.translation-list,
.pitching-list,
.reviews-list,
.events-list,
.editorial-list {
    margin-bottom: 2rem;
}

.translation-list:last-child,
.pitching-list:last-child,
.reviews-list:last-child,
.events-list:last-child,
.editorial-list:last-child {
    margin-bottom: 0;
}

/* Responsive design */
@media (max-width: 768px) {
    .navigation {
        padding: 15px 20px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .nav-links li a {
        font-size: 12px;
    }
    
    /* Logo responsive */
    .logo-kw {
        font-size: 1.2rem;
        padding: 0.2rem 0.4rem;
    }
    
    .container {
        padding: 40px 20px;
    }
    
    .page-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    h2 {
        font-size: 1.3rem;
        margin: 2rem 0 1rem 0;
    }
    
    .main-content {
        margin-top: 70px;
    }
    
    /* About section responsive */
    .about-content {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        text-align: left;
    }
    
    .profile-image {
        width: 250px;
    }
    
    .about-text {
        text-align: left;
    }
    
    /* Footer responsive */
    .footer {
        padding: 1.5rem 0;
    }
    
    .contact-links {
        gap: 25px;
        flex-wrap: wrap;
    }
    
    .contact-item {
        min-width: 110px;
        font-size: 0.9rem;
    }
    
    .email-contact {
        font-size: 1rem;
    }
    
    .contact-icon {
        width: 20px;
        height: 20px;
    }
    
    .contact-label {
        font-size: 0.8rem;
    }
    
    .contact-value {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .nav-links {
        gap: 15px;
    }
    
    .nav-links li a {
        font-size: 11px;
    }
    
    /* Logo for small screens */
    .logo-kw {
        font-size: 1.4rem;
        padding: 0.2rem 0.4rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 30px 15px;
    }
    
    /* About section for small screens */
    .about-content {
        gap: 1.5rem;
    }
    
    .profile-image {
        width: 200px;
    }
    
    /* Footer for small screens */
    .footer {
        padding: 1rem 0;
    }
    
    .footer h2 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .contact-links {
        gap: 1rem;
    }
    
    .email-contact {
        flex-direction: row;
        gap: 8px;
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .email-contact .contact-icon {
        width: 18px;
        height: 18px;
        margin-bottom: 0;
    }
    
    .social-contacts {
        gap: 20px;
        flex-direction: column;
    }
    
    .social-contact {
        min-width: 100px;
        font-size: 0.8rem;
    }
    
    .social-contact .contact-icon {
        width: 24px;
        height: 24px;
    }
    
    .contact-label {
        font-size: 0.7rem;
    }
    
    .contact-value {
        font-size: 0.8rem;
    }
}

/* Footer */
.footer {
    background-color: #fafafa;
    border-top: 1px solid #eee;
    margin-top: 4rem;
    padding: 2rem 0;
}

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

.footer h2 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #000;
    letter-spacing: -0.01em;
}

.contact-links {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-size: 1rem;
    transition: opacity 0.3s ease;
    padding: 8px;
    border-radius: 4px;
    gap: 8px;
    text-align: center;
    min-width: 140px;
}

.contact-item:hover {
    opacity: 0.7;
}

.email-contact {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.email-contact span {
    font-size: 1rem;
}

.social-contact {
    font-size: 1rem;
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: #333;
}

.social-contact .contact-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 4px;
}

.contact-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.contact-value {
    font-size: 1rem;
    color: #333;
    font-weight: 400;
}

/* Print styles */
@media print {
    .navigation,
    .footer,
    .logo {
        display: none;
    }
    
    .main-content {
        margin-top: 0;
    }
    
    .section {
        display: block !important;
        page-break-before: always;
    }
    
    .section:first-child {
        page-break-before: auto;
    }
    
    body {
        font-size: 12px;
        line-height: 1.4;
    }
    
    .page-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    h2 {
        font-size: 1.2rem;
        margin: 1.5rem 0 0.5rem 0;
    }
}