/* GLOBAL STYLES */
body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
}

/* HEADER LAYOUT */
#site-header {
    background-color: #000; /* Black background like your screenshot */
    padding: 20px 0;
}

#site-header .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex; /* This puts Logo and Menu side-by-side */
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

/* LOGO STYLE */
#site-header h1 {
    margin: 0;
    font-size: 24px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

#site-header h1 a {
    color: #ff4a4a; /* Hattrix Red/Pink color */
    text-decoration: none;
    text-transform: uppercase;
}

/* MENU LAYOUT (Makes it horizontal) */
#site-header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex; /* This puts the links in a row */
    gap: 20px;
}

#site-header nav ul li {
    display: inline-block;
}

#site-header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
}

#site-header nav ul li a:hover {
    color: #ff4a4a;
}