@font-face { font-family: 'nintendo_ds_biosregular'; src: url('nintendo-ds-bios-webfont.woff2') format('woff2'), url('nintendo-ds-bios-webfont.woff') format('woff'); font-weight: normal; font-style: normal; } 

@font-face { font-family: 'adobe_caslon_proitalic'; src: url('adobe_caslon_pro_italic-webfont.woff2') format('woff2'), url('adobe_caslon_pro_italic-webfont.woff') format('woff'); font-weight: normal; font-style: normal; }
/* RESET */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* PAGE STRUCTURE TO PUSH FOOTER DOWN */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensure the body takes at least the full viewport height */

    background-image: url(/assets/Seattle.jpg);
    background-size: 1511px 888px;
    background-color: black;

    font-family:'Times New Roman', Times, serif;
    font-size: 17px;
    cursor: url(cursor2.png), default;
}

.main-container {
    flex: 1;                 /* <-- pushes footer down */
    width: 999px;
    margin: 0 auto;
    background-color: #fff6e1;
    padding: 10px;
}

/* LINKS */
a { color: #003366; text-decoration: none; }
a:hover { text-decoration: underline; }

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 2px solid #000;
    padding-bottom: 11px;
    margin-bottom: 10px;
    margin-top: -10px;
    background-color: #b2d8d8;
}

.logo-area h1 {
    font-family: 'adobe_caslon_proitalic';
    font-style: italic;
    color: #395769;
    font-size: 33px;
    text-shadow: 3px 1px #FFF;
    margin-top: -52px;
    margin-left: 100px;
    letter-spacing: -1px;
}

.main-logo { height: 80px; }

.blinkies {
    justify-content: center;
    margin-bottom: 47px;
    margin-left: -730px;
}

.sub-logo {
    display: block;
    font-family: 'nintendo_ds_biosregular';
    font-size: 10px;
    text-shadow: none;
    color: #000;
    margin-top: -5px;
    margin-left: 7px;
    text-decoration: underline white;
}

.pearl-icon {
    width: 60px;
    height: auto;
    display: block;
    margin-bottom: 5px;
}

/* GRID LAYOUT */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    gap: 10px;
    margin-bottom: 10px;
}

.box {
    background-color: #FFF;
    border: 2px solid #000;
    margin-bottom: 10px;
    position: relative;
}

.box-header {
    font-family: 'adobe_caslon_proitalic';
    background-color: #FFF;
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
    display: inline-block;
    padding: 2px 5px;
    font-weight: bold;
    font-size: 10px;
    text-transform: uppercase;
    position: absolute;
    top: -8px;
    left: 0;
}

.box-content { padding: 15px 10px 10px 10px; }

/* COLUMN 1 */
.editorial-box h3 {
    color: #D2492A;
    font-size: 11px;
    margin-bottom: 5px;
}

.profile-pic {
    float: left;
    width: 50px;
    height: 50px;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
    font-size: 8px;
}

.profile-pic img {
    width: 100%;  /* Make the image fill the container */
    height: 100%;  /* Ensure the image is fully contained */
    border-radius: 22%;  /* Optional: to keep it circular */
    filter: brightness(2);
}

.signature { text-align: right; font-weight: bold; }

/* FOOTER (fixed at bottom, same width as container) */
footer {
    margin-top: auto;        /* <-- THIS PUSHES IT TO THE BOTTOM */
    background-color: #b2d8d8;
    color: #FFF;
    padding: 10px;
    text-align: center;
    font-size: 9px;
    border-top: 1px solid #FFF;
    width: 999px;  /* Same width as the container */
    margin: 0 auto; /* Center it */
}

footer a{
    color: #003366;
}
