/* Header & Container Styling */
.site-header {
    background-image: url(../images/awards.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: #FFF;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 6px solid #ff3333; /* Corporate Accent Line */
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    position: relative;
}

.logo a {
    color: #FFF;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 1px;
}
.logo-imag {
    width: 75;
    max-width: 360px;
    height: auto;
}

/* Nav Menu Basic Structure */
.Michroma-menu {
    font-family: 'Michroma', 'Eurostile', 'Century Gothic', 'Arial', sans-serif;
}
.nav-list {
    display: flex;
    list-style: none;
}

.nav-list li {
    position: relative;
    font-family: 'Michroma', 'Eurostile', 'Century Gothic', 'Arial', sans-serif;
}

.nav-list a {
    color: #F00;
    text-decoration: none;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.nav-list a:hover {
    color: #fff;
    background-color: #222;
}

.arrow {
    font-size: 0.7rem;
    margin-left: 6px;
    transition: transform 0.3s;
}

/* Desktop Dropdowns (Hover Engine) */
.dropdown-menu, .nested-menu {
    display: none;
    position: absolute;
    background-color: #111;
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    border-top: 2px solid #ff3333;
    list-style: none;
    font-family: 'Michroma', 'Eurostile', 'Century Gothic', 'Arial', sans-serif;
    top: 100%;
    left: 0;
}

.nested-menu {
    top: 0;
    left: 100%;
    border-top: none;
    border-left: 2px solid #ff3333;
}

.nav-list li:hover > .dropdown-menu,
.dropdown-menu li:hover > .nested-menu {
    display: block;
}

/* Mobile Navigation Toggle Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    transition: all 0.3s ease;
}


