:root {
    --bg: #1b1b1b;

    --panel-dark: #2b2a28;
    --panel-light: #3a3835;

    --border-dark: #1a1918;
    --border-light: #6d675f;

    --text: #e8e0d0;
    --text-muted: #b7ae9f;
    --title: #eef600;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 12px;

    background-color: var(--bg);
    color: var(--text);

    font-family: Arial, sans-serif;
}

/* Header */

.hero-wrapper {
    position: relative;
    width: 100%;
}

.hero {
    width: 100%;
    height: 100px;
    object-fit: cover;
    display: block;
}

/* overlay logo */
.header-logo {
    position: absolute;

    top: 10px;
    left: 10px;
    object-fit: contain;

    width: auto;   /* adjust */
    height: 70px;

    z-index: 10;
}

.link-image {
    object-fit: contain;

    width: auto;   /* adjust */
    height: 30px;
    margin-bottom: 12px;
}

/* Navigation */

.nav {
    display: flex;
    gap: 8px;

    margin-bottom: 12px;
    padding: 6px;

    background: linear-gradient(
        to bottom,
        #514c45,
        #3a3733
    );

    border-style: solid;
    border-width: 1px;
    border-color:
        #746d65
        #1d1b19
        #1d1b19
        #746d65;

    border-radius: 3px;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.08),
        inset 0 -1px 0 rgba(0,0,0,0.5);
}

.nav-item {
    color: var(--text);
    text-decoration: none;

    padding: 6px 12px;

    border: 1px solid transparent;
}

.nav-item:hover {
    background: rgba(255,255,255,0.05);

    border-color:
        #7a736a
        #24211f
        #24211f
        #7a736a;
}

/* Main panel */

.panel {
    overflow: hidden;

    background: linear-gradient(
        to bottom,
        var(--panel-light),
        var(--panel-dark)
    );

    border-style: solid;
    border-width: 1px;

    border-color:
        var(--border-light)
        var(--border-dark)
        var(--border-dark)
        var(--border-light);

    border-radius: 3px;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.08),
        inset 0 -1px 0 rgba(0,0,0,0.4);
}

.panel-title {
    padding: 10px 12px;

    background: linear-gradient(
        to bottom,
        #59544d,
        #403d39
    );

    border-bottom: 1px solid #1b1918;

    color: var(--title);
    font-weight: bold;

    text-shadow: 0 1px 0 #000;
}

.panel-content {
    padding: 10px;

    background:
        linear-gradient(
            to bottom,
            #2c2a28,
            #252422
        );
}

/* Blog entries */

.blog-item {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 8px;
    padding: 8px;

    text-decoration: none;
    color: inherit;

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

    border-style: solid;
    border-width: 1px;

    border-color:
        #68625b
        #22201e
        #22201e
        #68625b;
}

.blog-item:hover {
    background: rgba(255,255,255,0.07);
}

.blog-item:last-child {
    margin-bottom: 0;
}

.blog-thumb {
    width: 64px;
    height: 64px;

    object-fit: cover;
    flex-shrink: 0;

    border: 1px solid #181716;
}

.blog-text {
    display: flex;
    flex-direction: column;
}

.blog-title {
    font-weight: bold;
    color: var(--title);

    margin-bottom: 4px;
}

.blog-subtitle {
    color: var(--text-muted);
    font-size: 0.9em;
}

#main-shot {
    width: 100%;
    max-width: 1200px;
    display: block;
}

.thumbnail-bar {
    display: flex;
    gap: 8px;

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

    padding: 8px 0;
}

.thumbnail {
    width: 160px;
    flex-shrink: 0;

    cursor: pointer;
}