
@charset "UTF-8";
/* Dunta css Darren Green 2026 */
:root {
    
    --panel-lighting: linear-gradient(
            135deg, 
            rgba(0, 0, 0, 0.0) 0%, 
            rgba(0, 0, 0, 0.25) 100%
        );
    --color: #112233;
    --heading-color: #000055;
    --body-color: #ddddaa;
    --body-background: var(--panel-lighting);
    --panel-color: #ffffcc;
    --panel-background: var(--panel-lighting);
    --panel-dark: #aaaa88;
    --panel-light: #ffffff;
    --facet-male-color: #bbbbee;
    --facet-male-dark: #9999bb;
    --facet-male-light: #eeeeff;
    --facet-female-color: #eebbbb;
    --facet-female-dark: #bb9999;
    --facet-female-light: #ffeeee;
    --facet-common-color: #eeeebb;
    --facet-common-dark: #bbbb99;
    --facet-common-light: #ffffcc;
    --body-font-family: 'Roboto', sans-serif;
    --mono-font-family: 'Courier Prime', monospace;
    --heading-font-family: 'Roboto';
    --panel-border-style: solid;
    --panel-border-width: 3px;
    --facet-border-style: solid;
    --link-color: #115599;
    --link-color-light: #2266aa;
    --link-color-dark: #004488;

    --line-height: 1.3;

    --img-border-width: 1px;
    --img-border-color: #0000cc;
    --facet-border-width: 3px;
}

/* css reset */

* {
    margin: 0px;
    padding: 0px;
    border: none;
    font: inherit;
    font-size: 100%;
    list-style-type: none;
    line-height: var(--line-height);
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: none;
    text-size-adjust: none;
    max-height:1000000px;
}

html {
    min-height: 100vh;
    overflow-y: scroll;
}
        
body {
    display: flex;
    flex-direction: column;
    padding: 16px 16px 16px 16px;
    background-color: var(--body-color);
    background-image: var(--body-background);
    background-repeat: repeat;
    color: var(--color);
    font-family: var(--body-font-family);
}

body > footer {
    order: -1;
}

section.panel {
    padding: 16px 16px 16px 16px;
    background-color: var(--panel-color);
    background-image: var(--panel-background);
    background-repeat: repeat;
    border-top: var(--panel-border-width) var(--panel-border-style) var(--panel-light);
    border-right: var(--panel-border-width) var(--panel-border-style) var(--panel-dark);
    border-left: var(--panel-border-width) var(--panel-border-style) var(--panel-light);
    border-bottom: var(--panel-border-width) var(--panel-border-style) var(--panel-dark);
    margin-top: 1ex;
    margin-bottom: 2ex;
    overflow-x: hidden;
}

div.panel {
    padding: 1ex;
    min-height: 124px;
}

h1, h2, h3 {
    font-family: var(--heading-font-family);
    font-weight: bold;
    text-align: center;
    color: var(--heading-color);
}

h1 {
    font-size: 300%;
}

h2 {
    font-size: 250%;
}

h3 {
    font-size: 150%;
}

em {
    font-style: italic;
}

strong {
    font-weight: bold;
}

ul > li {
    list-style-type: square;
    margin-left: 2ex;
}

dt {
    font-weight: bold;
}

dd {
    margin-left: 2ex;
}

p, ul > li, dd {
    padding-bottom: 0.5ex;
}

a img {
    border: var(--img-border-width) solid var(--img-border-width);
}

img.mainpic {
    height: 120px;
    width: auto;
    float: right;
}

img.otherpic {
    height: 120px;
    margin-right: 2ex;
}

.anc_box {
    display: flex;
    flex-direction: column;
    width: auto;
    border-left: 1px solid var(--panel-light);
    margin-left: 10px; 
}

.anc {
    flex: 1 1 auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left; 
    padding: 8px 5px;
    font-weight: bold;
    gap: 0.5ch;
}

.anc_fork {
    display: flex;
    flex-direction: column;
    padding-left: 20px;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.gallery figure {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#bio .gallery {
    float: right;
}

.gallery img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    background-color: var(--body-color);
    cursor: pointer;
    border-radius: 4px;
    transition: transform 0.2s ease;
}

.gallery img:hover {
    transform: scale(1.02);
}

#lightbox-dialog {
    margin: auto;
    padding: 0;
    background: transparent;
    border: none;
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 6px;
    overflow: visible;
}

#lightbox-dialog::backdrop {
    background: rgba(0, 0, 0, 0.85);
}

#lightbox-image {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    background: var(--body-color);
    padding: 10px;
    border-radius: 6px;
    display: block;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    background: transparent;
    top: -4px;
    right: -4px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (min-width: 576px) {
    body > footer {
        order: 0;
    }

    .anc_box {
        flex-direction: row;
        align-items: stretch;
        border-left: none;
        margin-left: 0;
    }

    .anc {
        flex: 0 0 180px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 0;
    }

    .anc_fork {
        padding-left: 0;
    }
}

.anc_u {
    background: var(--facet-common-color);
    border-top: var(--facet-border-width) var(--facet-border-style) var(--facet-common-light);
    border-right: var(--facet-border-width) var(--facet-border-style) var(--facet-common-dark);
    border-left: var(--facet-border-width) var(--facet-border-style) var(--facet-common-color);
    border-bottom: var(--facet-border-width) var(--facet-border-style) var(--facet-common-dark);
}

.anc_m {
    background: var(--facet-male-color);
    border-top: var(--facet-border-width) var(--facet-border-style) var(--facet-male-light);
    border-right: var(--facet-border-width) var(--facet-border-style) var(--facet-male-dark);
    border-left: var(--facet-border-width) var(--facet-border-style) var(--facet-male-light);
    border-bottom: var(--facet-border-width) var(--facet-border-style) var(--facet-male-dark);
}

.anc_f {
    background: var(--facet-female-color);
    border-top: var(--facet-border-width) var(--facet-border-style) var(--facet-female-light);
    border-right: var(--facet-border-width) var(--facet-border-style) var(--facet-female-dark);
    border-left: var(--facet-border-width) var(--facet-border-style) var(--facet-female-light);
    border-bottom: var(--facet-border-width) var(--facet-border-style) var(--facet-female-dark);
}

.columnar {
    column-width: 320px;
    column-gap: 32px;
    column-rule: var(--facet-border-width) var(--facet-border-style) var(--panel-dark)
}

a:link {color: var(--link-color);}
a:active {color: var(--link-color-light);}
a:visited {color: var(--link-color-dark);}
a:hover	{color: var(--link-color-light);}
