/* ------ */
/* Placeholder */
/* ------ */

.placeholder-body {
    background: url(img/cover.jpg) no-repeat;
    background-size: cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.placeholder-body h1 {
    color: white;
    text-shadow: 0 0 6px black;
    font-size: 128px;
    text-align: center;
    line-height: 1;
}

.placeholder-body p {
    color: white;
    text-shadow: 0 0 6px black;
    font-size: 48px;
    text-align: center;
    margin: 0 10%;
}

.placeholder-body a {
    color: white;
    text-decoration: underline;
}

/* ------ */
/* Global */
/* ------ */

:root {
  --red: #EF3E36;
  --cream: #f1f1f1;
    --grey: #333333;
}

body {
    color: var(--grey);
    font-family: "Lato", sans-serif;
    font-size: 16px;
    background: white;
    margin: 0;
}

h1, h2, h3, h4 {
    font-family: "Permanent Marker", sans-serif;
    color: var(--red);
    margin: 0;
    line-height: 1;
}

h1 {
    font-size: 72px;
}

h2 {
    font-size: 48px;
}

img {
    max-width: 100%;
}

.btn-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.btn {
    font-size: 24px;
    /* Add Margins and Padding */
}

a.btn {
    font-family: "Permanent Marker", sans-serif;
    font-size: 48px;   
    line-height: 1;
    padding: 6px 30px 12px 30px;
    text-decoration: none;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 130px;
    height: 65px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 30px 15px;
    transition: all 0.2s ease-in-out;
}

.btn.btn-big {
    font-size: 48px;
    padding: 6px 30px 12px 30px;
    width: 130px;
    height: 65px;
    margin: 30px 15px;
}

.btn.btn-wide {
    font-size: 24px;
    width: 167px;
}

.btn.btn-wider {
    font-size: 24px;
    width: 202px
}

.btn-red.btn-wide {
    background: url(/img/Brush-Button-Grey-Wide.png);
    background: url(/img/Brush-Button-Wide.png);
        background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.btn-red {
    background: var(--red);
    color: white;
    background: url(/img/Brush-Button-small.png);
}

.btn-white {
    background: white;
    color: var(--red);
    background: url(/img/Brush-Button-White-small.png);
}

.btn-grey {
    background: var(--grey);
    color: white;
}

a.btn.btn-white.btn-big:hover {
    background: url(/img/Brush-Button-small.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    color: white;
}

a.btn.btn-red.btn-big:hover {
    background: url(/img/Brush-Button-White-small.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    color: var(--red);
}

a.btn.btn-red.btn-wide:hover {
    background: url(/img/Brush-Button-Grey-Wide.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

a.btn.btn-grey.btn-wider {
    background: url(/img/Brush-Button-Wider.png);
    background: url(/img/Brush-Button-Grey-Wider.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

a.btn.btn-grey.btn-wider:hover {
    background: url(/img/Brush-Button-Wider.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.home-section .btn-container .btn:not(:first-child) {
    margin-left: 20px;
}


.grey-bg {
    background-color: var(--grey);
    position: relative;
    padding: 35px 0;
}

.grey-bg::before, .grey-bg::after {
    content: "";
    width: 100%;
    height: 20px;
    position: absolute;
    background: url(/img/Border-Grey.png);
    background-size: contain;
    background-repeat: repeat-x;
    background-position: center;
}

.grey-bg::before {
    top: -10px;
}

.grey-bg::after {
    bottom: -10px;
}

.cream-bg {
    background-color: var(--cream);
}

.section {
    padding: 90px 40px;
}

.row {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.col {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.col-4 {
    width: calc(25% - 45px);
}

.col-1-3 {
    width: calc(33.33% - 30px);
}

.col-2-3 {
    width: calc(66.66% - 30px);
}

.icon {
    width: 50px;
}

p {
    margin-bottom: 25px;
    line-height: 1.5;
}

.p-red {
    color: var(--red);
}

.p-white {
    color: white;
}

.italic {
    font-style: italic;
}

/* ------ */
/* Header */
/* ------ */

header {
    background: var(--red);
    position: absolute;
    width: 100%;
}

header > .container {
    width: 88%;
    display: flex;
    justify-content: end;
}

#desktop-nav {
    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    padding: 0;
}

#desktop-nav li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 18px;
    text-shadow: 1px 1px 10px black;
}

#desktop-nav > li:not(:last-child) {
    margin-right: 30px;
}

.desktop-submenu {
    display: none;
}

li.submenu:hover .desktop-submenu .desktop-submenu:hover {
    display: inline-block;
}

/* --------- */
/*   Footer  */
/* --------- */

footer {
    background-color: var(--grey);
    position: relative;
    padding: 10px 0;
}

footer::before{
    content: "";
    width: 100%;
    height: 20px;
    position: absolute;
    background: url(/img/Border-Grey.png);
    background-size: contain;
    background-repeat: repeat-x;
    background-position: center;
}

footer::before {
    top: -10px;
}

footer .container {
    width: calc(100% - 160px);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    padding: 0 80px;
}

#footer-nav {
     list-style: none;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    padding: 0;
}

#footer-nav li a, footer p, footer p a {
    text-decoration: none;
    color: white;
    font-size: 18px;
}

#footer-nav > li:not(:last-child) {
    margin-right: 30px;
}

/* --------- */
/* Home Page */
/* --------- */

header {
    background: transparent;
    position: absolute;
    display: flex;
    justify-content: center;
}

.home-top {
    height: 90vh;
    width: 100%;
    background-image: url(/img/cover.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.home-top h1 {
    color: white;
    font-size: 140px;
    text-shadow: 1px 1px 10px black;
    line-height: 1;
    text-align: center;
    font-weight: 400;
}

.bg-image {
    background-size: cover;
    width: 100%;
    height: 100%;
}

.home-section {
    padding: 80px;
}
.home-section-1 {
    background-image: url(/img/fast-fantasy-roleplaying.jpg);
    min-height: 406px;
    background-position: 47% center;
}

.home-section-2 {
    background-image: url(/img/hardcover-kickstarter.jpg);
    min-height: 550px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.home-section-3 {
    background-image: url(/img/library-of-knowledge.jpg);
    min-height: 406px;
}

.home-icons .col {
    text-align: center;
}

.home-icons i {
    color: white;
    font-size: 40px;
}

.home-icons p {
    font-weight: bold;
    margin-bottom:0;
    margin-top: 15px;
    font-size: 18px;
}

.home-section .col-2-3 {
    align-items: start;
}

.home-section p {
    margin: 10px 0;
}

.home-section .btn {
    margin: 10px 0 0 0;
}

.btn.btn-kickstarter {
    width: 175px;
}

/* --------- */
/*   Mobile  */
/* --------- */

.mobile-nav-container, #hamburger-menu {
    display: none;
}

._1300-show {
    display: none;
}

@media screen and (max-width: 1300px) {
  .col-1-3 {
    width: 100%;
    }

    .col-2-3 {
        width: 100%;
    }

    .col._1300-show {
        display: inline-flex;
    }
    ._1300-hide {
        display: none;
    }
    
    .row {
        gap: 40px;
    }
}

@media screen and (max-width: 780px) {
    
    .home-top h1 {
        font-size:96px;
    }
    
    .col-4 {
        width: calc(50% - 30px);
    }
}

@media screen and (max-width: 510px) {
    
    .home-top h1 {
        font-size:72px;
        max-width: 100%;
    word-wrap: break-word;
    }
    
}


@media screen and (max-width: 439px) {
    
    .home-top a.btn {
     margin: 0 15px;  
    }
    
    .home-top .btn-container {
     margin-top: 40px;  
    }
    
    h2 {
        font-size:36px;
    }
    
    .home-section {
        padding: 60px 40px;
    }
    
}
