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

body {
    background-color: #d1d1d1; /* Matching the PDF background  */
    font-family: 'Helvetica', sans-serif;
    color: #000;
}

.site-header {
    padding: 100px 20px;
    text-align: center;
    border-bottom: 1px solid #bcbcbc;
}

h1 {
    font-size: 1.5rem;
    font-weight: normal;
    margin-bottom: 20px;
}

.bio-box {
    font-size: 0.8rem;
    line-height: 1.5;
    max-width: 400px;
    margin: 0 auto;
}

.gallery {
    padding-bottom: 100px;
}

.project {
    margin-bottom: 15vh;
    text-align: center;
}

/* Container to prevent layout shift during zoom */
.zoom-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    background: #000; /* Contrast for the image borders */
}

.scroll-zoom {
    width: 100%;
    height: auto;
    display: block;
    will-change: transform, opacity;
    transform: scale(0.7); /* Initial small state */
    opacity: 0.5;
    transition: transform 0.1s ease-out, opacity 0.1s ease-out;
}

.project-info {
    padding: 20px;
    background-color: #bcbcbc; /* Matching the grey bar in the PDF  */
}

h2 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

p {
    font-size: 0.8rem;
    margin-top: 5px;
}