/* =========================
   Basic settings
========================= */

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
   font-family: Arial, Helvetica, sans-serif;
    padding: 0;
    width: 100%;
    min-height: 100%;
}

body {
    background: white;
    color: black;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
}


/* =========================
   Header
========================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 90px;

    padding: 0 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    z-index: 100;
}


/* Artist name */

.artist-name {
    color: black;
    text-decoration: none;

    font-size: 22px;
    line-height: 1;
}


/* Navigation */

.main-navigation {
    display: flex;
    align-items: center;
    gap: 24px;
}

.work-dropdown {
    font-size: 14px;
}

.main-navigation a {
    color: black;
    text-decoration: none;
    white-space: nowrap;
}

.main-navigation a:hover {
    opacity: 0.5;
}


.work-menu {
    position: relative;
}

.work-dropdown {
    position: absolute;

    top: 100%;
    right: 0;

    display: flex;
    flex-direction: column;

    gap: 8px;

    min-width: 180px;

    padding: 14px 16px;

    background: rgba(255, 255, 255, 0.788);

    border: 1px solid rgba(0, 0, 0, 0.3);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(-5px);

    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        visibility 0.2s ease;

    z-index: 200;
}

.work-menu:hover .work-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateY(0);
}

.work-dropdown a {
    display: block;

    color: black;
    text-decoration: none;
    white-space: nowrap;
}

.work-dropdown a:hover {
    opacity: 0.5;
}


/* =========================
   Overview
========================= */

.overview {
    position: relative;

    width: 100%;
    height: calc(100vh - 90px);

    overflow: hidden;
}


/* =========================
   Slider buttons
========================= */

.slider-button {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    z-index: 50;

    width: 50px;
    height: 50px;

    border: none;

    background: transparent;

    color: black;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;
}

.slider-button:hover {
    opacity: 0.5;
}


.slider-prev {
    left: 35px;
}

.slider-next {
    right: 35px;
}


/* =========================
   Homepage Artwork Slider
========================= */

.artwork-scroll {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;

    gap: 8vw;

    overflow-x: auto;
    overflow-y: hidden;

    padding-left: 10vw;
    padding-right: 10vw;

    scroll-snap-type: x mandatory;

    scrollbar-width: none;
}

.artwork-scroll::-webkit-scrollbar {
    display: none;
}


/* =========================
   Each Homepage Artwork
========================= */

.overview-artwork {
    position: relative;

    flex: 0 0 100%;

    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    scroll-snap-align: center;
}


/* =========================
   Homepage Image Container
========================= */

.image-container {
    position: relative;

    max-width: 70vw;
    max-height: 70vh;

    display: inline-block;
}


/* =========================
   Homepage Artwork Image
========================= */

.overview-artwork img {
    display: block;

    max-width: 70vw;
    max-height: 70vh;

    width: auto;
    height: auto;

    object-fit: contain;
}


/* =========================
   Artwork title
========================= */

.artwork-title {
    position: absolute;

    left: 18px;
    bottom: 18px;

    color: white;

    font-size: 14px;
    line-height: 1.2;

    z-index: 2;

    pointer-events: none;
}


/* =========================
   Instagram
========================= */

.instagram {
    position: relative;

    display: block;

    left: auto;
    bottom: auto;

    margin: 80px 30px 30px;

    color: black;
    text-decoration: none;

    font-size: 14px;

    z-index: 100;
}

.instagram:hover {
    opacity: 0.5;
}


/* =========================
   Select Work Page
========================= */

.select-work-page {
    width: 100%;
    min-height: 100vh;

    padding-top: 150px;
    padding-bottom: 100px;

    display: flex;
    justify-content: center;
}


.project-list {
    width: 80vw;

    display: flex;
    flex-direction: column;

    align-items: center;

    gap: 22px;
}


.project-link {
    color: black;

    text-decoration: none;

    font-size: 14px;

    line-height: 1.3;

    transition: opacity 0.2s ease;
}


.project-link:hover {
    opacity: 0.45;
}


/* =========================
   Project Page
========================= */

.project-page {
    width: 100%;

    padding-top: 130px;
    padding-bottom: 120px;
}


/* =========================
   Project Header
========================= */

.project-header {
    width: 100%;

    text-align: center;

    padding: 40px 20px 100px;
}


.project-header h1 {
    margin: 0;

    font-size: 24px;

    font-weight: normal;

    line-height: 1.2;
}


.project-statement {
    width: 85vw;
    max-width: 1000px;

    margin: 45px auto 0;
}


.project-statement p {
    margin: 0;

    font-size: 14px;

    line-height: 1.6;
}


/* =========================
   Project Images
========================= */

.project-images {
    width: 100%;

    display: flex;
    flex-direction: column;

    align-items: center;

    gap: 160px;

    padding: 0 5vw;
}


.project-image {
    margin: 0;

    width: 100%;

    display: flex;
    flex-direction: column;

    align-items: center;
}


.project-image figcaption {
    width: 75vw;

    margin-top: 12px;

    font-size: 11px;

    line-height: 1.5;

    text-align: left;

    color: black;
}


.project-image:has(.portrait-image) figcaption {
    width: 43vw;
}


.project-image img {
    display: block;

    width: 75vw;

    height: auto;

    object-fit: contain;
}


.project-image img.portrait-image {
    width: 43vw;
}


/* =========================
   Artwork Information
========================= */

.artwork-information {
    width: 100%;

    max-width: 700px;

    margin: 150px auto 0;

    padding: 0 20px;
}


.artwork-information h2 {
    margin: 0 0 40px;

    font-size: 16px;

    font-weight: normal;
}


.artwork-info-item p {
    margin: 0 0 8px;

    font-size: 14px;

    line-height: 1.5;
}


/* =========================
   Fullscreen Image Viewer
========================= */

.image-lightbox {
    position: fixed;
    inset: 0;

    width: 100vw;
    height: 100vh;

    background: rgba(255, 255, 255, 0.96);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    z-index: 99999;

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transition: opacity 0.2s ease;

    cursor: zoom-out;
}


.image-lightbox.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


.image-lightbox img {
    display: block !important;

    width: auto !important;
    height: auto !important;

    max-width: 130vw !important;
    max-height: 130vh !important;

    object-fit: contain;

    cursor: zoom-out;
}


/* =========================
   Printmaking Categories
========================= */

.printmaking-categories {
    width: 100%;

    min-height: 45vh;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12vw;
}


.printmaking-category {
    color: black;

    text-decoration: none;

    font-size: 18px;
}


.printmaking-category:hover {
    opacity: 0.5;
}


/* =========================
   Printmaking Artwork Images
========================= */

.project-images .project-image {
    width: 45vw;
    max-width: 600px;

    margin: 0 auto;
}

.project-images .project-image img {
    width: 100%;
    height: auto;

    display: block;
}

.project-images .project-image figcaption {
    width: 100%;

    text-align: left;

    margin-top: 10px;

    font-size: 12px;
    line-height: 1.5;
}


/* =========================
   Material / Trace
   Detail Image Grid
========================= */

.detail-image-grid {
    width: 70%;

    margin-left: auto;
    margin-right: auto;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    column-gap: 50px;
    row-gap: 120px;

    justify-content: center;
}


.detail-image {
    width: 100% !important;

    margin: 0 !important;
}


.detail-image img {
    display: block;

    width: 100%;

    height: auto;

    margin-left: auto;
    margin-right: auto;
}


/* =========================
   Global Image Lightbox
========================= */

.lightbox-image {
    max-width: 90vw;
    max-height: 90vh;

    width: auto;
    height: auto;

    object-fit: contain;

    cursor: grab;

    user-select: none;

    -webkit-user-drag: none;

    transform-origin: center center;
}


.lightbox-image.dragging {
    cursor: grabbing;
}


body.lightbox-open {
    overflow: hidden;
}


/* =========================
   Screen Printing Image Zoom
========================= */

.screenprint-image {
    position: relative;

    z-index: 1;

    cursor: zoom-in;

    transition: transform 0.25s ease;

    transform-origin: center center;

    user-select: none;

    -webkit-user-drag: none;
}


.screenprint-image.zoomed {
    z-index: 9999;

    cursor: grab;

    transform: scale(2.5);
}


.screenprint-image.zoomed.dragging {
    z-index: 10000;

    cursor: grabbing;
}


/* =========================
   About Page
========================= */

.about-page {
    width: 100%;

    padding-top: 100px;
    padding-bottom: 150px;
}


/* =========================
   About Layout
========================= */

.about-layout {
    width: 90vw;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 35vw 1fr;

    column-gap: 8vw;

    align-items: start;
}


/* =========================
   Artist Photo
========================= */

.about-photo {
    width: 35vw;

    display: flex;

    justify-content: center;
    align-items: flex-start;

    padding-top: 70px;
}


.about-photo img {
    display: block;

    width: 20vw;

    max-width: 300px;

    height: auto;

    object-fit: contain;
}


/* =========================
   About Content
========================= */

.about-content {
    width: 100%;
}


.about-section {
    width: 100%;

    margin: 0;

    padding-bottom: 130px;
}


.about-section h1,
.about-section h2 {
    margin: 0;

    font-weight: normal;
}


.about-section h1 {
    font-size: 24px;

    line-height: 1.2;

    margin-bottom: 55px;
}


.about-section h2 {
    font-size: 18px;

    line-height: 1.3;

    margin-bottom: 40px;
}


/* =========================
   Artist Statement
========================= */

.about-statement {
    max-width: 750px;
}


.about-statement p {
    margin: 0 0 24px;

    font-size: 15px;

    line-height: 1.8;
}


/* =========================
   Bio
========================= */

.about-text {
    max-width: 700px;
}


.about-text p {
    margin: 0 0 22px;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================
   Education / Lists
========================= */

.about-list {
    width: 100%;
}


.about-list-item {
    display: grid;

    grid-template-columns: 260px 1fr;

    column-gap: 40px;

    margin-bottom: 24px;

    font-size: 14px;

    line-height: 1.8;
}


.about-list-item strong {
    font-weight: normal;
}


/* =========================
   Exhibitions
========================= */

.exhibition-item {
    display: grid;

    grid-template-columns: 80px 1fr;

    column-gap: 30px;

    margin-bottom: 22px;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================
   CV
========================= */

.cv-section {
    padding-bottom: 80px;
}


.cv-content {
    max-width: 600px;
}


.cv-content p {
    margin: 0 0 25px;

    font-size: 14px;

    line-height: 1.8;
}


.cv-link {
    color: black;

    text-decoration: none;

    font-size: 14px;
}


.cv-link:hover {
    opacity: 0.5;
}


/* =========================================================
   TABLET / iPAD
   701px – 1100px
========================================================= */

@media (min-width: 701px) and (max-width: 1100px) {

    /* =========================
       Header
    ========================= */

    .site-header {
        position: static;

        height: 90px;

        padding: 0 30px;
    }


    /* =========================
       Navigation
    ========================= */

    .main-navigation {
        gap: 18px;

        font-size: 13px;
    }


    /* =========================
       Instagram
    ========================= */

    .instagram {
        position: relative;

        display: block;

        left: auto;
        bottom: auto;

        margin: 40px 30px 25px;

        font-size: 14px;
    }


    /* =========================
       Project Page
    ========================= */

    .project-page {
        padding-top: 60px;

        padding-bottom: 100px;
    }


    .project-header {
        padding: 40px 30px 80px;
    }


    .project-statement {
        width: 80vw;
    }


    /* =========================
       Project Images
    ========================= */

    .project-images {
        gap: 120px;

        padding: 0 5vw;
    }


    .project-image img {
        width: 80vw;
    }


    .project-image figcaption {
        width: 80vw;
    }


    .project-image img.portrait-image {
        width: 55vw;
    }


    .project-image:has(.portrait-image) figcaption {
        width: 55vw;
    }


    /* =========================
       Material / Trace
    ========================= */

    .detail-image-grid {
        width: 80%;

        column-gap: 35px;

        row-gap: 100px;
    }
}


/* =========================================================
   MOBILE
   700px and below
========================================================= */

@media (max-width: 700px) {

    /* =========================
       Header
    ========================= */

    .site-header {
        position: static;

        width: 100%;

        height: auto;

        min-height: 90px;

        padding: 25px 18px;

        display: flex;

        flex-direction: column;

        align-items: center;

        justify-content: center;

        gap: 22px;

        z-index: 100;
    }


    /* =========================
       Artist Name
    ========================= */

    .artist-name {
        font-size: 24px;
    }


    /* =========================
       Navigation
    ========================= */

    .main-navigation {
        gap: 10px;

        font-size: 12px;

        flex-wrap: wrap;

        justify-content: center;
    }


    /* =========================
       Dropdown
    ========================= */

    .work-dropdown {
        right: 50%;

        transform:
            translateX(50%)
            translateY(-5px);

        min-width: 170px;
    }


    .work-menu:hover .work-dropdown {
        transform:
            translateX(50%)
            translateY(0);
    }


    /* =========================
       Instagram
    ========================= */

    .instagram {
        position: relative;

        display: block;

        left: auto;
        bottom: auto;

        margin: 50px 18px 25px;

        font-size: 13px;
    }


    /* =========================
   Overview / Homepage
========================= */

.overview {
    position: relative;

    width: 100%;

    /*
       Header occupies its own space.
       Overview fills the remaining screen.
    */
    height: calc(100vh - 90px);

    overflow: hidden;
}


.artwork-scroll {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    padding-left: 0;
    padding-right: 0;

    gap: 0;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-snap-type: x mandatory;
}


.overview-artwork {
    flex: 0 0 100vw;

    width: 100vw;
    height: 100%;

    scroll-snap-align: center;
}


.image-container {
    width: 100vw;

    max-width: none;
    max-height: none;

    display: flex;

    align-items: center;
    justify-content: center;
}


.overview-artwork img {
    display: block;

    width: 100vw;

    max-width: 100vw;

    /*
       Image stays inside the area BELOW header.
    */
    max-height: calc(100vh - 90px);

    height: auto;

    object-fit: contain;
}


/* =========================
   Hide Homepage Arrows
========================= */

.slider-button {
    display: none;
}


    /* =====================================================
       Select Work
    ===================================================== */

    .select-work-page {
        padding-top: 60px;

        padding-bottom: 80px;
    }


    .project-list {
        width: 85vw;

        gap: 20px;
    }


    .project-link {
        font-size: 14px;
    }


    /* =====================================================
       Project Page
    ===================================================== */

    .project-page {
        padding-top: 40px;

        padding-bottom: 80px;
    }


    /* =========================
       Project Header
    ========================= */

    .project-header {
        padding: 35px 18px 70px;
    }


    .project-header h1 {
        font-size: 20px;
    }


    .project-statement {
        width: 90vw;

        margin-top: 35px;
    }


    .project-statement p {
        font-size: 13px;

        line-height: 1.65;
    }


    /* =========================
       Project Images
    ========================= */

    .project-image {
    width: 100%;
    max-width: none;
}

.project-image img {
    display: block;

    width: 80vw;
    max-width: 80vw;

    height: auto;

    object-fit: contain;
}

.project: 80vw;

    margin-top: 10px;

    font-size:-image figcaption {
    width 10px;
    line-height: 1.5;
}.project-images {
        width: 100%;

        gap: 100px;

        padding: 0;
    }


    .project-image {
        width: 100%;

        max-width: none;

        margin: 0;
    }


    .project-image img {
        width: 80vw;

        max-width: 80vw;

        height: auto;

        display: block;
    }


    .project-image figcaption {
        width: 80vw;

        margin-top: 10px;

        font-size: 10px;

        line-height: 1.5;
    }


    .project-image img.portrait-image {
        width: 80vw;

        max-width: 80vw;
    }


    .project-image:has(.portrait-image) figcaption {
        width: 80vw;
    }


    /* =====================================================
       Material / Trace
    ===================================================== */

    .detail-image-grid {
        width: 80vw;

        grid-template-columns: 1fr;

        column-gap: 0;

        row-gap: 80px;
    }


    .detail-image {
        width: 100% !important;

        margin: 0 !important;
    }


    .detail-image img {
        width: 100%;

        height: auto;
    }


    /* =====================================================
       Printmaking Categories
    ===================================================== */

    .printmaking-categories {
        min-height: 40vh;

        flex-direction: column;

        gap: 35px;
    }


    .printmaking-category {
        font-size: 16px;
    }


    /* =====================================================
       Artwork Information
    ===================================================== */

    .artwork-information {
        margin-top: 100px;

        padding: 0 20px;
    }


    .artwork-information h2 {
        font-size: 15px;

        margin-bottom: 30px;
    }


    .artwork-info-item p {
        font-size: 13px;
    }


    /* =====================================================
       About
    ===================================================== */

    .about-page {
        padding-top: 50px;

        padding-bottom: 80px;
    }


    .about-layout {
        width: 88vw;

        display: flex;

        flex-direction: column;
    }


    .about-photo {
        width: 100%;

        padding-top: 20px;

        padding-bottom: 70px;

        justify-content: center;
    }


    .about-photo img {
        width: 45vw;

        max-width: 220px;
    }


    .about-content {
        width: 100%;
    }


    .about-section {
        padding-bottom: 90px;
    }


    .about-section h1 {
        font-size: 20px;

        margin-bottom: 40px;
    }


    .about-section h2 {
        font-size: 16px;

        margin-bottom: 30px;
    }


    .about-statement p {
        font-size: 14px;

        line-height: 1.65;
    }


    .about-list-item {
        grid-template-columns: 1fr;

        row-gap: 5px;
    }


    .exhibition-item {
        grid-template-columns: 60px 1fr;

        column-gap: 20px;
    }
}
.site-footer {
    width: 100%;
    text-align: center;
    padding: 60px 0 30px;
    font-size: 12px;
}
   
