/*
Theme Name: Fluid Beef Games
Theme URI: https://fluidbeefgames.com
Description: Theme for Fluid Beef Games indie game website
Version: 1.0
Author: Fluid Beef Games
*/

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

body {
    background-image: url('images/bg.png');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    min-height: 100vh;
    font-family: 'Courier New', Courier, monospace;
    color: #f0e6d3;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    z-index: 0;
}

#page {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
#masthead {
    padding: 10px 20px 10px;
    text-align: center;
}

#masthead .site-logo,
#masthead .site-logo a,
#masthead .custom-logo-link {
    display: block;
    line-height: 0;
    margin: 0;
    padding: 0;
}

#masthead .site-logo img {
    height: 450px;
    width: auto;
    display: block;
    margin: 0 auto;
    image-rendering: pixelated;
    filter: drop-shadow(0 0 16px rgba(180, 20, 20, 0.6));
}

#masthead .site-title {
    display: none;
}

/* Nav */
#site-navigation {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-top: 40px;
}

#site-navigation ul {
    list-style: none;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
}

#site-navigation ul li a {
    display: block;
    padding: 8px 18px;
    color: #f0e6d3;
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(180, 20, 20, 0.5);
    background: rgba(0, 0, 0, 0.5);
    transition: background 0.2s, color 0.2s;
}

#site-navigation ul li a:hover {
    background: rgba(180, 20, 20, 0.7);
    color: #fff;
}

/* Main content */
#content {
    flex: 1;
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    width: 100%;
}

.entry-content {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(180, 20, 20, 0.4);
    padding: 30px;
    line-height: 1.7;
}

.entry-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #cc2200;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid rgba(180, 20, 20, 0.4);
    padding-bottom: 10px;
}

/* Footer */
#colophon {
    text-align: center;
    padding: 20px;
    font-size: 12px;
    color: rgba(240, 230, 211, 0.5);
    border-top: 1px solid rgba(180, 20, 20, 0.3);
    background: rgba(0, 0, 0, 0.5);
}
