/* =========================
   BASE
========================= */

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #111;
    background: hwb(0 95% 0%);
    line-height: 1.65;
    font-size: 16px;
}

/* =========================
   TYPOGRAPHY
========================= */

h1, h2, h3 {
    font-family: Georgia, "Times New Roman", serif;
    margin-top: 0;
}

h1 {
    font-size: 2.4rem;
}

h2 {
    font-size: 1.4rem;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 0.3rem;
    margin-bottom: 1rem;
}

/* =========================
   LAYOUT
========================= */

.underline {
    text-decoration: underline;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
}

.content-section {
    margin-top: 0.5rem;
}

.wide p {
    max-width: 900px;
}

/* =========================
   NAV
========================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(10px);

    border-bottom: 1px solid #e5e5e5;

    transition:
        padding 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.nav {
    max-width: 1200px;
    margin: 0 auto;

    padding: 1rem 2rem;

    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;

    transition: padding 0.25s ease;
}

.nav a {
    margin-left: 1.2rem;
    text-decoration: none;
    color: #111;
    font-weight: 500;
    font-size: 0.95rem;
}

/* =========================
   STICKY HEADER SHRINK
========================= */

.site-header.scrolled {
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.site-header.scrolled .nav {
    padding: 0.6rem 2rem;
}

.site-header.scrolled .site-title {
    font-size: 1rem;
}

.site-title {
    transition: font-size 0.25s ease;
} 

.site-title {
    font-weight: 600;
    font-size: 1.1rem;
}

/* =========================
   ABOUT (FIXED LAYOUT)
========================= */

.about-header {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.about-left {
    display: flex;
    flex-direction: column;
    flex: 0 0 320px;
}

.name-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.profile-photo {
    width: 100%;
    max-width: 320px;
    height: auto;
    object-fit: cover;
    border: 1px solid #ddd;
    border-radius: 10px; 
}

.about-text {
    flex: 1;
    max-width: 850px;
}

.blurb p {
    margin-bottom: 1rem;
}

/* =========================
   LINKS
========================= */

.links a {
    display: inline-block;
    margin-right: 1rem;
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
}

/* =========================
   LISTS (FIXED BULLETS)
========================= */

/* keep your reset but NOT destructive */
.clean-list {
    padding-left: 1.2rem;   /* restores indentation */
    margin: 0;
}

/* THIS is the missing piece */
.bullet-list {
    list-style-type: disc;  /* restores bullets */
}

/* spacing */
.bullet-list li {
    margin-bottom: 1rem;
}

/* =========================
   FOOTER
========================= */

.site-footer {
    border-top: 1px solid #e5e5e5;
    padding: 2rem;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-top: 4rem;
}

/* =========================
   GALLERY
========================= */

.gallery-item {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #eee;
}

.gallery-item img {
    width: 280px;
    height: 180px;
    object-fit: cover;
    border: 1px solid #e5e5e5;
    cursor: pointer;
}

.gallery-text h3 {
    margin: 0 0 0.4rem;
}

/* =========================
   LIGHTBOX
========================= */

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 75vh;
}

.lightbox-caption {
    color: #fff;
    margin-top: 1rem;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-btn.left { left: 20px; }
.nav-btn.right { right: 20px; }

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

    .about-header {
        flex-direction: column;
    }

    .about-left {
        width: 100%;
    }

    .gallery-item {
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        width: 100%;
        height: auto;
    }
}