/* -------------------- BACKGROUND IMAGES & CONTENT -------------------- */

.banner {
    width: 100%;
    aspect-ratio: 16 / 9;

    background-image: url('../assets/fnaf-movie-banner.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.banner-buttons {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 20px;
}


/* -------------------- TEXT STYLING -------------------- */

main, .banner {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    letter-spacing: 0.1em;
}

h1 {
    margin: 0;
    padding: 0;
    color: #ffffff;
    font-size: 300%;
    padding: 5px 10px;
    letter-spacing: .05em;
    margin-left: 10px;
}

h2 {
    font-weight: lighter;
    color: #ffaa00;
    font-size: 5em;
    margin-bottom: 25px;
}

h3 {
    font-weight: lighter;
    color: #ffaa00;
    font-size: 5em;
}

p {
    font-weight: lighter;
    color: #ffaa00;
    font-size: 1.75em;
    text-align: center;
}


/* -------------------- BUTTON STYLING -------------------- */

a:link, a:visited {
    font-size: 15pt;
    width: fit-content;
    height: 25px;
    color: #ffffff;
    text-decoration: none;
    align-content: center;
    padding: 10px 15px;
    margin: 0 10px;
    background-image: linear-gradient(175deg, #333333, #111111);
    border-radius: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: #00ffaa00;
    transition: box-shadow 0.5s ease, border-color 0.35s ease, color 0.25s ease;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 50px #ff000033,
        0 0 10px #00ffaa33,
        0 0 5px #00ffaa33;
    }
    50% {
        box-shadow: 0 0 50px #ff0000aa,
        0 0 10px #00ffaa66,
        0 0 5px #00ffaa66;
    }
    100% {
        box-shadow: 0 0 50px #ff000033,
        0 0 10px #00ffaa33,
        0 0 5px #00ffaa33;
    }
}

a:hover {
    color: #ffaa00;
    border-style: solid;
    border-width: 1px;
    border-color: #ffaa00;
    animation: pulseGlow 1.5s ease-in-out infinite;
}

a:active {
    color: #ffaa00;
    border-style: solid;
    border-width: 1px;
    border-color: #ffaa00;
}

.banner-buttons a {
    color: #ffaa00;
}

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

header {
    position: fixed;
    top: 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
    height: 75px;

    background-color: #000000;
    font-family: 'Video Thin', monospace;
}


/* -------------------- NAVIGATION BAR -------------------- */

nav {
    margin: 10px;
}


/* -------------------- MAIN BODY: HOMEPAGE -------------------- */

.separation {
    display: block;
    font-size: 0;
    margin: 0;
    user-select: none;
}

body {
    margin: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
}

main article section figure {
    margin: 0;
}

main {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0;
    background-image: url('../assets/suit-texture.png');
    background-repeat: repeat-y;
    background-size: auto;
    background-position: top;
    padding: 0 0 50px 0;
}

article {
    width: 65%;
    display: flex;
    flex-direction: column;
    align-items: center;
}


/* -------------------- MAIN BODY: GRID -------------------- */

article ul {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: 1fr 1fr 1fr;
    list-style: none;
    padding: 0;
}

ul li {
    background-image: linear-gradient(180deg, #333333, #000000);
    border-radius: 25px;
    border-color: #ffaa00;
    border-style: ridge;
    border-width: 10px;
    margin: 35px 15px 5px 15px;
}

figcaption {
    display: flex;
    justify-content: center;
}


/* -------------------- Footer Bar -------------------- */

footer {
    width: 100%;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #000000;
}