/* Outlaw Poster Header Styling */
header {
    background: #1a0b06;
    border-bottom: 6px double #222;
    box-shadow: 0 2px 8px #000b;
    padding: 0.65em 0 0.45em 0;
    letter-spacing: 0.09em;
    position: relative;
    z-index: 20;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2em;
    border-radius: 0 0 12px 12px;
    background: none;
    box-shadow: none;
    position: relative;
}

@media (max-width: 1400px) {
  header .container {
    flex-direction: column;
    align-items: center;
    padding: 0 0.8em;
    gap: 0.2em;
  }
  header .logo {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 0.1em;
  }
  header nav {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 0.1em;
  }
  header nav ul {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: auto;
    gap: 0.7em;
    padding-left: 0;
  }
  header nav ul li {
    margin: 0 0.2em;
  }
}



header .logo h1 {
    font-family: 'Oswald', 'Bebas Neue', 'Impact', 'Anton', 'Roboto Condensed', 'Arial Black', sans-serif;
    font-size: 2.5em;
    font-weight: 900;
    text-transform: uppercase;
    color: #ff944a;
    text-shadow: 1px 2px 0 #000;
    letter-spacing: 0.13em;
    margin: 0;
    line-height: 1.02;
    padding: 0 0.17em;
    border-radius: 2px;
    background: none;
    box-shadow: none;
    position: relative;
    z-index: 2;
    text-stroke: 1px #000;
    -webkit-text-stroke: 1px #000;
}
header nav ul {
    display: flex;
    gap: 0.6em;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 2;
}
header nav ul li {
    position: relative;
    margin: 0 0.15em;
}

header nav ul li a {
    font-family: 'Oswald', 'Bebas Neue', 'Impact', 'Anton', 'Roboto Condensed', 'Arial Black', sans-serif;
    font-size: 1.18em;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 1px 2px 0 #000;
    letter-spacing: 0.13em;
    padding: 0.19em 1em 0.19em 1em;
    border-radius: 2px 2px 0 0;
    border-bottom: 3px solid #222;
    background: #22110a;
    box-shadow: none;
    margin: 0 0.1em;
    position: relative;
    transition: background 0.18s, color 0.18s, border-color 0.18s;
    outline: 2px solid transparent;
    outline-offset: 2px;
    text-stroke: 0.5px #000;
    -webkit-text-stroke: 0.5px #000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
} 
header nav ul li a:hover, header nav ul li a:focus {
    background: #333;
    color: #ff944a;
    border-bottom: 3px solid #222;
    text-shadow: 1px 2px 0 #000;
    outline: 2px solid #ff944a;
    outline-offset: 2px;
    z-index: 3;
}
header nav ul li a:hover, header nav ul li a:focus {
    background: #c00;
    color: #fff6e6;
    border-bottom: 2.5px solid #ff944a;
    box-shadow: 0 2px 10px #c00a, 0 1px 0 #000;
    text-shadow: 0 2px 7px #ff944a, 0 1px 0 #000, 0 0 10px #c00;
}

@media (max-width: 600px) {
    header {
        padding: 0.2em 0 0.2em 0;
        border-bottom-width: 3px;
    }
    header .container {
        padding: 0 0.2em;
        gap: 0.1em;
    }
    header .logo h1 {
        font-size: 7vw !important;
        padding: 0 0.01em;
        letter-spacing: 0.08em;
        text-align: center;
        width: 100%;
    }
    header nav {
        margin-bottom: 0;
    }
    header nav ul {
        display: flex !important;
        width: 100%;
        justify-content: space-between;
        gap: 0.5em;
        padding-left: 1em;
        padding-right: 1em;
        padding-top: 0.6em;
    }
    header nav ul li {
        flex: 1 1 0;
        margin: 0;
        text-align: center;
    }
    header nav ul li a {
        font-size: 3vw !important;
        padding: 0.13em 0 !important;
        width: 100%;
        display: block;
        box-sizing: border-box;
        text-align: center;
    }
}
