/* ===========================
   ROOT & GLOBAL
   =========================== */

:root {
    --paper: #f3f0e5;
    --ink: #202020;
    --accent-yellow: #f5c400;
    --accent-teal: #00848a;
    --accent-rust: #c4602b;
    --border-dark: #333333;
    --border-light: #ffffff;
    --bg-space: #020414;
    --caption: #555555;
    --body-font: "Verdana", "Geneva", sans-serif;
    --serif-font: "Times New Roman", "Georgia", serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 1.5rem 0;
    /* outer edges: stars / nature tile (swap this for your own image) */
    background:
    url("../assets/img/stars-tile.png") repeat center center,
    var(--bg-space);
    background-size: 50%;
    color: var(--ink);
    font-family: var(--body-font);
    cursor: url("../assets/icons/cursor.cur"), auto;

}
a:hover,
button:hover{
    cursor: url("../assets/icons/cursor-3.cur"), pointer;
}
.card-link {
    text-decoration: none;       /* Remove underline */
    color: inherit;              /* Use normal card text color */
    display: block;              /* Makes entire area clickable */
}

/* Scrollbar Base Styles */
::-webkit-scrollbar {
    width: 16px; /* Width of the scrollbar */
}

::-webkit-scrollbar:horizontal {
    height: 17px; /* Height for horizontal scrollbar */
}

::-webkit-scrollbar-corner {
    background: #c0c0c0; /* Default Windows-like background color */
}

/* Scrollbar Track (Entire Scrollbar Background) */
::-webkit-scrollbar-track {
    background-blend-mode: normal, difference, normal;
    background-size: 3px 3px;
    background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.75)),
    linear-gradient(to right, black 50%, white 50%),
    linear-gradient(to bottom, black 50%, white 50%);
}


/* Scrollbar Corner (Where horizontal and vertical scrollbars meet) */
::-webkit-scrollbar-corner {
    background: url('../assets/icons/scrollbar-background.svg') repeat;
    background-size: cover; /* Same scaling */
}


/* Scrollbar Thumb (draggable part) */
::-webkit-scrollbar-thumb {
    background-color: #d4d0c8; /* Classic Windows button face */
    box-shadow: inset 1px 1px #fff, inset -1px -1px #808080; /* 3D effect */
}

/* Scrollbar Buttons */
::-webkit-scrollbar-button:vertical:start {
    background: url('../assets/icons/button-up.svg') no-repeat center center;
    background-size: contain;
    height: 17px;
}

::-webkit-scrollbar-button:vertical:end {
    background: url('../assets/icons/button-down.svg') no-repeat center center;
    background-size: contain;
    height: 17px;
}

::-webkit-scrollbar-button:horizontal:start {
    background: url('../assets/icons/button-left.svg') no-repeat center center;
    background-size: contain;
    width: 16px;
}

::-webkit-scrollbar-button:horizontal:end {
    background: url('../assets/icons/button-right.svg') no-repeat center center;
    background-size: contain;
    width: 16px;
}


/* Optional: Hover Effect */
::-webkit-scrollbar-thumb:hover {
    background-color: #bfbfbf;
}

.audio-icon:hover {
    cursor: url("../assets/icons/cursor-2.cur"), pointer;
}



/* central “page” */
.page-frame {
    max-width: 960px;
    margin: 0 auto;
    background: var(--paper);
    border: 3px solid var(--border-dark);
    box-shadow:
    0 0 0 1px var(--border-light),
    6px 6px 0 rgba(0, 0, 0, 0.65);
    padding: 1.25rem 1.5rem 2rem;
}

/* ===========================
   MASTHEAD
   =========================== */

.masthead {
    border-bottom: 3px solid var(--accent-yellow);
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
}

.masthead-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

/* small faux-sticker logo */
.masthead-logo {
    border: 2px solid var(--border-dark);
    background: linear-gradient(135deg, #fefefe, #d7d7d7);
    box-shadow:
    0 0 0 1px var(--border-light),
    2px 2px 0 rgba(0, 0, 0, 0.5);
    padding: 0.4rem 0.6rem;
}

.logo-mark {
    font-family: var(--serif-font);
    letter-spacing: 0.12em;
    font-size: 0.9rem;
}

.masthead-title h1 {
    font-family: var(--serif-font);
    font-size: 2rem;
    letter-spacing: 0.15em;
    margin: 0;
}

.masthead-title .tagline {
    margin: 0.1rem 0 0;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #555555;
}

/* pseudo rubber stamp */
.masthead-stamp {
    text-align: right;
    font-family: var(--serif-font);
}

.stamp-label {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #666666;
}

.stamp-year {
    display: inline-block;
    margin-top: 0.2rem;
    padding: 0.2rem 0.4rem;
    border: 2px solid var(--border-dark);
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 0.12em;
}

.stamp-plus {
    color: var(--accent-rust);
}

.tagline {
    text-align: center;
}

/* ===========================
   TOP NAV
   =========================== */

.top-nav {
    margin-top: 0.75rem;
    padding-top: 0.4rem;
    border-top: 1px solid #cccccc;
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.top-nav a {
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    padding: 0.25rem 0.6rem;
    border: 1px solid var(--border-dark);
    background: linear-gradient(180deg, #fdfdfd, #e4e4e4);
    color: #111111;
    box-shadow:
    1px 1px 0 rgba(0, 0, 0, 0.35),
    inset 0 0 0 1px var(--border-light);
    border-radius: 0; /* square, not rounded */
}

.top-nav a:hover {
    background: linear-gradient(180deg, #fffbe6, #f5e0a0);
    border-color: var(--accent-yellow);
}

/* ===========================
   HERO
   =========================== */

.hero {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.7fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.hero-kicker {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    color: var(--accent-teal);
    margin: 0 0 0.4rem;
}

.hero-headline {
    font-family: var(--serif-font);
    font-size: 1.4rem;
    line-height: 1.3;
    margin: 0 0 0.8rem;
}

.hero-copy {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* hero image frame */
.hero-image-frame {
    border: 2px solid var(--border-dark);
    background: #d1e3ea;
    box-shadow:
    0 0 0 1px var(--border-light),
    4px 4px 0 rgba(0, 0, 0, 0.5);
    padding: 0.4rem;
}

.hero-image-placeholder {
    background: #85b6c7;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0b2931;
    font-size: 0.75rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.stoos-image {
    min-height: 180px;
    background-image: url("../assets/img/stoos-gif.gif");
    background-size: cover;
    background-position: center;
}

.hero-caption {
    margin: 0.3rem 0 0;
    font-size: 0.7rem;
    color: var(--caption);
    font-style: italic;
}

/* ===========================
   GENERIC SECTION STYLES
   =========================== */

.section-block {
    margin-bottom: 2.25rem;
}

.section-header {
    border-top: 2px solid var(--border-dark);
    border-bottom: 2px solid var(--border-dark);
    padding: 0.4rem 0;
    margin-bottom: 0.8rem;
    background: linear-gradient(90deg, #fdfdf7, #f7f0d4);
}

.section-header h2 {
    margin: 0;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-family: var(--serif-font);
}

.section-subtitle {
    margin: 0.2rem 0 0;
    font-size: 0.75rem;
    text-transform: lowercase;
    letter-spacing: 0.18em;
    color: #666666;
}

/* grid for most sections */
.section-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
}

/* list style for video & github */
.section-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* ===========================
   CARD
   =========================== */

.card {
    border: 1px solid #999999;
    background: #f8f5ec;
    box-shadow:
    2px 2px 0 rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px var(--border-light);
    display: flex;
    flex-direction: column;
}

.card-image {
    background: linear-gradient(135deg, #b3d6e5, #35637a);
    height: 120px;
    position: relative;
    border-bottom: 1px solid #999999;
    display: flex;
    align-items: flex-end;
    padding: 0.2rem 0.4rem;
}
.bb-image {
    background-image: url("../assets/img/bb-image.gif");
    background-size: cover;
    background-position: center;
}
.td-image {
    background-image: url("../assets/img/tides-delight.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.ss-image {
    background-image: url("../assets/img/strawberry-street.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.bv-image {
    background-image: url("../assets/img/bv-image.gif");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.cb-image {
    background-image: url("../assets/img/cb-image.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.os-image {
    background-image: url("../assets/img/os-image.gif");
    background-size: cover;
    background-position: 50% 25%;
    background-repeat: no-repeat;
}
.us-image {
    background-image: url("../assets/img/us-image.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.wb-image {
    background-image: url("../assets/img/wb-image.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.ma-image {
    background-image: url("../assets/img/ma-image.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.card-image::before {
    content: "";
    position: absolute;
    top: 0.4rem;
    right: 0.4rem;
    width: 46px;
    height: 30px;
    border: 2px solid var(--border-dark);
    background: linear-gradient(135deg, #fdfdfd, #d0d0d0);
    box-shadow:
    0 0 0 1px var(--border-light),
    2px 2px 0 rgba(0, 0, 0, 0.35);
    opacity: 0.75;
}

/* label at bottom of "slide" image */
.image-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #fdfdfd;
    position: relative;
    z-index: 2;
}

.card-body {
    padding: 0.6rem 0.75rem 0.75rem;
}



.card-body h3 {
    margin: 0 0 0.3rem;
    font-size: 0.95rem;
    font-family: var(--serif-font);
}

.card-body p {
    margin: 0 0 0.35rem;
    font-size: 0.8rem;
    line-height: 1.5;
}

.card-meta {
    margin: 0;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--caption);
}
.audio-row {
    display: flex;
    gap: 1rem;        /* spacing between items */
    flex-wrap: wrap;  /* optional, lets it break onto two rows on small screens */
    justify-content: flex-start;
}

.audio-row .list-item {
    flex: 1 1 100px;  /* responsive width */
    max-width: 350px; /* keep them tidy */
}

/* ===========================
   LIST ITEMS
   =========================== */

.list-item {
    border-left: 3px solid var(--accent-teal);
    padding-left: 0.75rem;
}

.list-item h3 {
    margin: 0 0 0.25rem;
    font-size: 0.95rem;
    font-family: var(--serif-font);
}

.list-item p {
    margin: 0 0 0.25rem;
    font-size: 0.8rem;
}

/* inline label in GitHub section */
.inline-label {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.7rem;
    font-weight: bold;
}

/* ===========================
   ABOUT
   =========================== */

.section-about .about-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
    gap: 1.2rem;
}

.john-photo {
    border: 2px solid var(--border-dark);
    background-image: url("../assets/img/john-photo.jpg");
    background-position: center;
    background-size: 250px;
    max-height: 320px;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: center;
    box-shadow:
    0 0 0 1px var(--border-light),
    3px 3px 0 rgba(0, 0, 0, 0.4);
}

.about-text p {
    font-size: 0.85rem;
    line-height: 1.7;
    margin: 0 0 0.7rem;
}

/* ===========================
   FOOTER
   =========================== */

.site-footer {
    margin-top: 1.5rem;
    border-top: 1px solid #cccccc;
    padding-top: 0.6rem;
    text-align: center;
    font-size: 0.75rem;
    color: #666666;
}

.footer-small {
    font-size: 0.68rem;
    margin-top: 0.2rem;
}

/* ===========================
   PAGES
   =========================== */
.page-image {
    background: linear-gradient(135deg, #b3d6e5, #35637a);
    height: 400px;
    position: relative;
    border-bottom: 1px solid #999999;
    display: flex;
    padding: 0.2rem 0.4rem;
    background-position: center;
    justify-content: center;
    align-items: center;
}
        .memory-image-1 {
    background-image: url("../assets/img/memory-angels-sculpture.jpeg");
    background-position: center;
    background-size: contain;
}
.memory-image-2 {
    background-image: url("../assets/img/memory-angels-wings.png");
    background-position: left;
    background-size: contain;
    background-repeat: repeat;
    width: 530px;
    margin: 0 auto;
}
.memory-image-3 {
    background-image: url("../assets/img/zine1-3.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.memory-image-4 {
    background-image: url("../assets/img/grid.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 720px) {
    .page-frame {
        margin: 0 0.5rem;
        padding: 1rem;
    }

    .masthead-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero {
        grid-template-columns: minmax(0, 1fr);
    }

    .section-about .about-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .top-nav {
        justify-content: flex-start;
    }
}


