@import url('https://fonts.googleapis.com/css2?family=Brawler:wght@400;700&display=swap');

@font-face {
    font-family:'GeomGraphic';
    src:url('Geom Graphic W03 Bold Italic.ttf') format('truetype');
}

/* -------------------- GLOBAL -------------------- */

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

body{
    background:#000 url('bg.png');
    color:#dfdfdf;
    font-family:"Brawler", serif;
    font-weight:400;
    font-size:18px;
    line-height:1.5;
}

/* -------------------- CENTER BG -------------------- */

.pagebg{
    width:1071px;
    max-width:100%;
    min-height:100vh;
    margin:0 auto;
    background:url('contentbg.png') repeat-y top center;
}

/* -------------------- MAIN CONTAINER -------------------- */

.container{
    width:817px;
    max-width:100%;
    min-height:100vh;
    margin:0 auto;
    background:#000;
}

/* -------------------- HEADER -------------------- */

.header{
    position:relative;
    min-height:972px;
    background:url('head.png') no-repeat top center;
}

/* -------------------- NAV -------------------- */

.navwrap{
    position:absolute;
    top:640px;
    left:0;
    width:100%;
    padding:0 20px;
}

.navigation{
    display:grid;
    grid-template-columns:1fr 300px 1fr;
    align-items:start;
    gap:25px;
}

/* FIX 1: vertical nav columns */
.navcol{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:10px;
}

.navigation a{
    font-family:'GeomGraphic', sans-serif;
    color:#fff;
    text-decoration:none;
    font-size:20px;
    text-shadow:0 0 6px #900, 0 0 12px #900;
    transition:.3s ease;
}

.navigation a:hover{
    text-shadow:0 0 10px #ff0000, 0 0 18px #a41524, 0 0 28px #a41524;
    color: #ffffff !important;
}

.logo img{
    width:300px;
    height:auto;
    display:block;
}

/* -------------------- CONTENT (FIX 2) -------------------- */

.content{
    padding:40px;
    margin-top:-220px;
    position:relative;
    z-index:2;
}

/* -------------------- TYPOGRAPHY -------------------- */

p{ margin-bottom:18px; }

a{ color: #a41524; text-decoration:none; }
a:hover{ color: #ff0000; }

b,strong{ font-weight:700; }

i,em{ color:#fff; }

h1,h2,h3{
    font-family:'GeomGraphic', sans-serif;
    color: #d80000;
    margin-bottom:15px;
}

h1{
    font-size: 20px;
    letter-spacing: 2px;
    color: #d80000;
    display: inline-block;
    padding: 1px 8px;
    border: 4px solid #d80000;
    border-radius: 9px;
    background: #000000;
}
h2{font-size:16px; letter-spacing: 2px;}
h3{font-size:12px; letter-spacing: 2px;}

/* -------------------- FOOTER -------------------- */

.footer{
    padding:40px;
    font-size:12px;
    line-height:1.75;
    letter-spacing:2px;
    text-align:center;
}

/* -------------------- MOBILE -------------------- */

@media(max-width:900px){

.pagebg, .container{
    width:100%;
}

.header{
    position:relative;
    background:url('head.png') no-repeat center top;
    background-size:cover;
    height:700px;
    overflow:hidden;
}

/* nav becomes normal flow (no overlap, no absolute positioning) */
.navwrap{
    position:static;
    padding:20px;
}

/* stack everything cleanly */
.navigation{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:15px;
}

.logo{
    order:0;
}

.navcol.left{
    order:1;
}

.navcol.right{
    order:2;
}

/* remove ALL overlap hacks */
.content{
    margin-top:0;
    padding:25px;
    position:static;
}

.footer{
    margin:25px;
}

.logo img{
    width:240px;
}

}