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

/* scaling */
@media (max-width: 900px) {

    .navbar {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .nav-left {
        order: 2;
        justify-content: center;
    }

    .nav-center {
        order: 1;
    }

    .nav-right {
        order: 3;
        justify-content: center;
        flex-wrap: wrap;
    }

    .nav-left,
    .nav-right {
        width: 100%;
    }

}

/* global -------*/
body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: white;
    color: black;
}

a {
    text-decoration: none;
    color: inherit;
}

.site-header {
    width: 100%;
    border-bottom: 1px solid #e5e5e5;
}

/* nav bar */
.navbar {
    max-width: 1400px;

    margin: 0 auto;
    padding: 1.5rem 3rem;

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

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;

    flex: 1;
}

.nav-right {
    justify-content: flex-end;
}

.nav-left a,
.nav-right a {
    font-family: "Instrument Serif", serif;

    font-size: 1.15rem;
    font-weight: 400;

    letter-spacing: 0.02em;

    transition: opacity 0.2s ease;
}

.nav-left a:hover,
.nav-right a:hover {
    opacity: 0.6;
}

.nav-center {
    flex-shrink: 0;
    text-align: center;
}

.site-title {
    font-family: "Instrument Serif", serif;

    font-size: 2.7rem;
    font-weight: 400;

    letter-spacing: 0.06em;

    transition: opacity 0.2s ease;
}

.site-title:hover {
    opacity: 0.6;
}

main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem;
}

/* foot */
.site-footer {
    width: 100%;

    border-top: 1px solid #e5e5e5;

    margin-top: 1.25rem;
    padding: 2rem 0;

    text-align: center;
}

.site-footer p {
    font-family: "Instrument Serif", serif;

    font-size: 1rem;
    letter-spacing: 0.03em;

    opacity: 0.8;
}
/* global -------*/


/* =========================
   INDEX 
========================= */

.carousel-section {
    width: 100%;
}

.carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 2rem;
}

.carousel-image-wrapper {
    display: inline-block;
    padding: 0;
    background: transparent;
}

.carousel-image-wrapper img {
    display: block;

    max-width: 100%;
    max-height: 75vh;

    width: auto;
    height: auto;

    border: 2px solid black;
}

.carousel-btn {
    background: none;
    border: none;

    font-size: 2rem;
    cursor: pointer;

    transition: opacity 0.2s ease;
}

.carousel-btn:hover {
    opacity: 0.5;
}

.carousel-description {
    margin-top: 1rem;

    text-align: center;
}

.carousel-description p {
    font-family: "Instrument Serif", serif;

    font-size: 1rem;
    letter-spacing: 0.03em;

    color: #222;
}


/* =========================
   BIO 
========================= */

.bio-hero {
    display: flex;
    justify-content: center;

    padding: 3rem 0;
}

.bio-hero img {
    width: 250px;
    height: auto;

    border: 2px solid black;
}

.bio-section,
.statement-section {
    max-width: 800px;
    margin: 0 auto;

    padding: 2rem 3rem;
}

.bio-section h2,
.statement-section h2 {
    font-family: "Instrument Serif", serif;

    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.bio-section p,
.statement-section p {
    font-family: "Instrument Serif", serif;

    font-size: 1.1rem;
    line-height: 1.7;

    color: #111;
}


/* =========================
PAINT, SCULPT, DRAW
========================= */