/* Import Bebas Neue from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

/* Apply Bebas Neue to all text */
html, body, * {
    font-family: 'Bebas Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

header {
    background: #101010;
    color: #fff;
    padding: 3em 0 2em 0;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: left;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 ;
}

.header-logo {
    display: flex;
    justify-content: left;
    align-items: left;
    flex: 0 0 auto;
}

.header-logo img {
    display: inline;
    margin: 10px auto 0 auto;
    max-width: 360px;
    width: 100%;
    height: auto;
}

/* Move nav directly under header image */
nav {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 0;
    margin-top: 25px;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 0.25em;
    margin: 0;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 0.5em 1em;
    border-radius: 5px;
    transition: box-shadow 0.3s, background 0.3s, color 0.3s, text-shadow 0.3s;
    font-weight: bold;
    font-size: 1.5em;
    letter-spacing: 0.04em;
}

nav ul li a.active,
nav ul li a:hover {
    background: transparent;
    color: #ff2828;
    text-shadow: 0 0 12px rgba(255,40,40,0.7), 0 0 24px rgba(255,40,40,0.3);
    box-shadow: none;
}


h1, h2, h3 {
    color: #333;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

footer {
    text-align: center;
    padding: 20px 0;
    padding: 2.5em 0 0.5em 0;
    color: #fff;
    position: relative;
    bottom: 0;
    width: 100%;
}