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

body {
    font-family: 'Arial', sans-serif;
    background: #ffffff;
    color: #555;
    overflow-x: hidden;
    font-weight: 300;
}

.container {
    display: flex;
    height: 100vh;
}

/* Sidebar Styles */
.sidebar {
    width: 300px;
    background: #fff;
    border-right: 1px solid #e0e0e0;
    padding: 2rem 1.5rem;
    overflow-y: auto;
    position: fixed;
    height: 100vh;
    z-index: 100;
    scrollbar-width: none;
}

.sidebar::-webkit-scrollbar {
    display: none;
}

.logo h1 {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #555;
    margin-bottom: 0.5rem;
}

.logo .subtitle {
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    color: #000;
    font-weight: 200;
    margin-bottom: 1rem;
}

.category-tabs {
    margin-bottom: 2rem;
}

.category-tab {
    display: flex;
    align-items: center;
    padding: 0.3rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    padding-left: 1rem;
    margin-left: -1rem;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    color: #000;
    font-weight: 200;
}

.category-tab:hover {
    background: rgba(255, 182, 193, 0.1);
    border-left-color: #FFB6C1;
}

.category-tab.active {
    background: rgba(255, 182, 193, 0.15);
    border-left-color: #FFB6C1;
    font-weight: 300;
}

.information-button {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.linkedin-link {
    margin: 0.5rem 0 1rem;
    padding-left: 1rem;
    margin-left: -1rem;
}

.linkedin-link a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    text-decoration: none;
    color: #0a66c2;
}

.linkedin-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border: 1px solid #0a66c2;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.5px;
}

.information-button .project-item {
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.3rem 0;
    border-left: 3px solid transparent;
    padding-left: 1rem;
    margin-left: -1rem;
}

.information-button .project-item:hover {
    background: rgba(255, 182, 193, 0.1);
    border-left-color: #FFB6C1;
}

.information-button .project-name {
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    color: #000;
    font-weight: 200;
}

.subtitle {
    font-size: 0.8rem;
    color: #888;
    letter-spacing: 1px;
    margin-bottom: 3rem;
}

.project-list {
    list-style: none;
    margin-bottom: 3rem;
}

.project-item {
    display: flex;
    align-items: center;
    padding: 0.3rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    padding-left: 1rem;
    margin-left: -1rem;
}

.project-item:hover {
    background: rgba(255, 182, 193, 0.1);
    border-left-color: #FFB6C1;
}

.project-item.active {
    background: rgba(255, 182, 193, 0.15);
    border-left-color: #FFB6C1;
}

.project-name {
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    color: #000;
    font-weight: 200;
    line-height: 1.2;
}

.project-item.active .project-name {
    color: #000;
    font-weight: 300;
}

.project-item.category-hidden {
    display: none;
}

.coming-soon-section {
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.coming-soon-header {
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    color: #bbb;
    font-weight: 200;
    margin-bottom: 1rem;
}

.coming-soon-list {
    list-style: none;
}

.coming-soon-item {
    display: flex;
    align-items: center;
    padding: 0.3rem 0;
    padding-left: 1rem;
    margin-left: -1rem;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    color: #bbb;
    font-weight: 200;
    line-height: 1.2;
    cursor: default;
}

.sidebar-footer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    color: #000;
    font-weight: 200;
}

.sidebar-footer p {
    margin-bottom: 0.5rem;
}

/* Main Content Styles */
.main-content {
    flex: 1;
    margin-left: 300px;
    padding: 2rem;
    overflow-y: auto;
    overflow-x: hidden;
    height: 100vh;
}

.image-gallery {
    width: 100%;
    max-width: calc(100vw - 300px - 4rem);
    margin: 0 auto;
}

.image-grid {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
    position: relative;
    width: 100%;
}

.image-grid.active {
    display: block;
}

.gucci-promo-films .promo-films-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    width: calc(100% - 4rem);
    margin: 2rem;
}

.gucci-promo-films .project-image {
    width: 100%;
    margin: 0;
}

.gucci-promo-films .promo-film-wide {
    aspect-ratio: 16 / 9;
}

.gucci-promo-films .promo-film-wide iframe,
.gucci-promo-films .promo-film-wide video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.project-image {
    width: calc(100% - 4rem);
    aspect-ratio: 16/9;
    border: none;
    box-shadow: none;
    margin: 2rem;
    position: relative;
}

.project-image:first-of-type {
    margin-top: 2rem;
}

.project-image:not(:first-of-type) {
    margin-top: 1rem;
}

.promo-films-grid .project-image:not(:first-of-type) {
    margin-top: 0;
}

.promo-films-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    align-items: start;
}

.promo-films-grid .project-image {
    margin: 0;
}

.gucci-wonderland-steam-organ .ants-grid-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.project-image:last-of-type {
    margin-bottom: 2rem;
}



.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background-color: #f0f0f0;
    border: 1px solid #ddd;
}

.project-image img[src$=".jpg"]:not([src=""]) {
    background-color: transparent;
    border: none;
}

.image-item {
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.image-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.project-description {
    margin-top: 1rem;
    margin-left: 2rem;
    margin-bottom: 2rem;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    color: #999;
    font-weight: 200;
    line-height: 1.8;
    max-width: 800px;
}

.project-description strong {
    font-weight: 300;
    color: #000;
    letter-spacing: 0.8px;
}

/* ANTS Metalworks 3-column grid layout */
.ants-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem;
}

.project-image.ants-portrait {
    margin: 0;
    width: 100%;
    aspect-ratio: 3/4;
}

.light-text {
    color: #888;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        height: auto;
    }

    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        padding: 1rem;
        overflow: visible;
    }

    .logo h1 {
        font-size: 1rem;
    }

    .subtitle {
        font-size: 0.65rem;
        margin-bottom: 1rem;
    }

    .category-tabs {
        gap: 0.8rem;
        margin-bottom: 0.8rem;
    }

    .category-tab {
        font-size: 0.6rem;
    }

    .information-button {
        margin-bottom: 1rem;
        padding-bottom: 0.5rem;
    }

    .main-content {
        margin-left: 0;
        padding: 0.5rem;
        height: auto;
    }

    .project-list {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 0.5rem;
        margin-bottom: 1rem;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
    }

    .project-item {
        flex-shrink: 0;
        white-space: nowrap;
        padding: 0.4rem 0.8rem;
        border-radius: 4px;
        border-left: 3px solid transparent;
        margin-left: 0;
        background: #f8f8f8;
    }

    .project-item.active {
        background: rgba(255, 182, 193, 0.15);
        border-left-color: #FFB6C1;
    }

    .project-name {
        font-size: 0.65rem;
    }

    .coming-soon-section {
        display: none;
    }

    .image-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0.5rem;
    }

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

    .project-image {
        width: 100%;
        margin: 0;
        aspect-ratio: 3/4;
    }

    .ants-grid-container {
        grid-template-columns: repeat(2, 1fr);
        margin: 0;
        gap: 0.5rem;
    }

    .ants-portrait {
        aspect-ratio: 3/4;
    }

    .project-description {
        margin: 1rem 0;
        font-size: 0.65rem;
        padding: 1rem;
    }

    .sidebar-footer {
        position: relative;
        bottom: auto;
        margin-top: 1rem;
    }

    /* Information page mobile */
    .info-content {
        padding: 1rem;
        max-width: 100%;
    }

    .info-content .cv-section {
        margin-bottom: 40px;
    }

    .info-content .cv-role-header {
        flex-direction: column;
        gap: 4px;
    }

    .info-content .cv-role-meta {
        text-align: left;
    }

    /* Splash screen mobile */
    .splash-content {
        padding: 1.5rem;
        max-width: 320px;
    }

    .splash-input,
    .splash-button {
        padding: 12px 14px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .ants-grid-container {
        grid-template-columns: 1fr;
    }

    .project-item {
        padding: 0.35rem 0.6rem;
    }

    .project-name {
        font-size: 0.6rem;
    }

    .promo-films-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Information Section Styles */
.info-content {
    max-width: 680px;
    padding: 2rem;
    background: #fff;
    line-height: 1.6;
    color: #202124;
}

.info-content .cv-contact {
    font-size: 13px;
    color: #5f6368;
    margin-bottom: 40px;
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.info-content .cv-contact-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.info-content .cv-contact-icon {
    color: #f9ab00;
    font-size: 14px;
}

.info-content .cv-role-current {
    font-size: 12px;
    color: #5f6368;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.info-content .cv-statement {
    font-size: 15px;
    color: #202124;
    line-height: 1.85;
    margin-bottom: 0;
}

.info-content .cv-statement strong {
    font-weight: 600;
}

.info-content .cv-statement em {
    font-style: italic;
    color: #3c4043;
}

.info-content .cv-section {
    margin-bottom: 60px;
}

.info-content .cv-section-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #5f6368;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 1px solid #dadce0;
}

.info-content .cv-role {
    margin-bottom: 35px;
}

.info-content .cv-role-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
}

.info-content .cv-role-info {
    flex: 1;
}

.info-content .cv-role-title {
    font-size: 15px;
    font-weight: 500;
    color: #202124;
}

.info-content .cv-role-company {
    font-weight: 700;
    color: #3c4043;
    font-size: 15px;
}

.info-content .cv-role-meta {
    font-size: 13px;
    color: #5f6368;
    text-align: right;
    white-space: nowrap;
    flex-shrink: 0;
}

.info-content .cv-role-context {
    font-size: 13px;
    color: #3c4043;
    margin-bottom: 12px;
    line-height: 1.6;
    font-style: italic;
}

.info-content .cv-role-bullets {
    list-style: none;
    margin: 0;
    padding: 0;
}

.info-content .cv-role-bullets li {
    font-size: 13px;
    color: #3c4043;
    line-height: 1.75;
    margin-bottom: 10px;
    padding-left: 12px;
    position: relative;
}

.info-content .cv-role-bullets li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #f9ab00;
    font-size: 14px;
}

.info-content .cv-role-bullets li:last-child {
    margin-bottom: 0;
}

.info-content .cv-highlight {
    padding: 14px;
    background: rgba(249, 171, 0, 0.05);
    border-left: 3px solid #f9ab00;
    margin-top: 18px;
    font-size: 13px;
    color: #3c4043;
    line-height: 1.7;
}

.info-content .cv-highlight-title {
    font-weight: 600;
    color: #202124;
    margin-bottom: 5px;
    display: block;
    font-size: 12px;
}

.info-content .cv-divider {
    height: 1px;
    background: #e8eaed;
    margin: 40px 0;
}

.info-content .cv-drivers {
    font-size: 13px;
    color: #3c4043;
    line-height: 1.8;
}

.info-content .cv-driver-item {
    margin-bottom: 11px;
}

.info-content .cv-driver-label {
    display: block;
    font-weight: 600;
    color: #202124;
    margin-bottom: 3px;
}

.contact-info {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    color: #333;
    font-weight: 200;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #FFB6C1;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #FF91A4;
}

/* Password Splash Screen */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.splash-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.splash-content {
    text-align: center;
    padding: 2rem;
    max-width: 400px;
    width: 90%;
}


.splash-password-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.splash-input {
    width: 100%;
    padding: 14px 18px;
    font-size: 14px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    color: #202124;
    text-align: center;
    letter-spacing: 2px;
    outline: none;
    transition: border-color 0.3s ease;
}

.splash-input:focus {
    border-color: #f9ab00;
}

.splash-input::placeholder {
    color: #999;
    letter-spacing: 2px;
}

.splash-button {
    width: 100%;
    padding: 14px 18px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: #f9ab00;
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.splash-button:hover {
    background: #e89a00;
}

.splash-error {
    font-size: 12px;
    color: #d32f2f;
    margin-top: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
    letter-spacing: 1px;
}

.splash-error.show {
    opacity: 1;
}