/* ===== BODY & GENERAL ===== */
body {
    padding-left: 20px;
    padding-right: 20px;
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
}

/* ===== LAYOUT ===== */
.layout {
    display: flex !important;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    gap: 10px;
}

.main-content {
    flex: 0 0 680px;
    max-width: 680px;
    padding-top: 10px;
}

.sidebar {
    position: sticky;
    margin-top: 20px;
    margin-left: 0;
    width: 280px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 0;
}

.right-rail {
    margin-top: 20px;
    margin-left: 30px;
    width: 350px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.right-content-box {
    width: 100%;
    background-color: #b07a4b;
    border: 4px outset #6e4726;
    outline: 2px solid #d2a679;
    outline-offset: -6px;
    padding: 10px;
    box-shadow: 6px 6px 0px darkcyan;
}

.right-content-area {
    height: 230px;
    background-color: #f2e2c6;
    border: 3px inset #7a4f2a;
    padding: 0;
    box-shadow: inset 3px 3px 0px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.slideshow-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

/* ===== INTRO CONTENT BOX ===== */
.box1 {
    display: flex;
    align-items: flex-start;
    background-color: var(--dark-gray);
    border: outset blueviolet;
    width: fit-content;
    max-width: 600px;
    margin-top: 10px;
    box-shadow: var(--shadow-standard);
}

.box1 img {
    padding: 20px 10px 10px 10px;
}

.box2 {
    display: flex;
    margin-top: 0;
    flex-direction: column;
    justify-content: center;
}

.box2 h2 {
    margin-top: 5px;
    margin-bottom: 0;
    text-decoration: underline;
    text-decoration-color: blue;
}

/* ===== SITE MAP ===== */
.site-map-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.site-map {
    margin-top: 15px;
    width: fit-content;
    max-width: 600px;
    background-color: var(--dark-gray);
    border: outset blueviolet;
    padding: var(--padding-medium);
    box-shadow: var(--shadow-standard);
}

.site-map-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.site-map-links a {
    display: inline-block;
}

.art-link {
    display: inline-block;
    margin-top: 15px;
    margin-left: 10px;
}

.art-link img {
    display: block;
}

/* ===== GALLERY SECTION ===== */


.art img {
    display: flex;
    margin-left: 10px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.blurb {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    margin-left: 20px;
    margin-top: 40px;
    margin-bottom: 10px;
    width: 200px;
    padding: 5px;
    background-color: white;
    border: 1px solid black;
}

.artwork {
    margin-left: 0;
    gap: 20px;
}

.artwork img {
    width: 200px;
    height: 200px;
    object-fit: none;
    border: outset blueviolet;
    box-shadow: 4px 4px 0px darkcyan;
}

/* ===== VIDEO & UPDATES BOXES ===== */
.video-box,
.updates-box {
    width: 100%;
    background-color: var(--dark-gray);
    border: outset blueviolet;
    padding: var(--padding-small);
    box-shadow: var(--shadow-standard);
}

.video-box h3,
.updates-box h3 {
    margin-top: 0;
    color: black;
    text-decoration: underline;
    text-decoration-color: blue;
}

.video-entries,
.updates-log {
    overflow-y: scroll;
    border: 1px solid black;
    padding: 6px;
    background-color: var(--darkcyan);
    box-shadow: inset 4px 4px 0px rgba(0, 0, 0, 0.2);
}

.video-entries {
    height: 230px;
}

.updates-log {
    height: 150px;
}

.video-frame,
.update-item {
    background-color: var(--light-gray);
    border: 2px solid #6b6b6b;
    border-top-color: #e6e6e6;
    border-left-color: #e6e6e6;
    border-right-color: #6b6b6b;
    border-bottom-color: #6b6b6b;
    padding: 6px;
    margin-bottom: 8px;
    box-shadow: var(--shadow-small);
}

.update-item {
    font-size: 12px;
    color: black;
    margin-bottom: 6px;
}

.video-frame iframe {
    display: block;
    width: 100%;
    height: 140px;
    border: 0;
}

/* ===== CONTENT BOX ===== */
.content-box {
    width: 100%;
}





