/* Full width header */
.site-header {
    width: 100%;
    background-color: #007BFF; /* Change to your preferred color */
    padding: 20px 0;
    position: relative;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Flex container for content */
.header-content {
    max-width: 1200px; /* Optional: constrain content width */
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.header-container {
    width: 100%;
    height: 400px;
    background-image: url('/images/banner2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.header-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 40%);
    pointer-events: none;
    z-index: 0;
}

.header-bottombar {
    position: relative;
    z-index: 1;
    display: flex;
    width: 100%;
}

.header-audinav {
    display: flex;
    width: 100%;
}

.header-audinav a {
    flex: 1;
    text-align: center;
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 16px 10px;
    transition: filter 0.2s;
}

.header-audinav a:hover {
    filter: brightness(1.15);
}

.header-audinav a:nth-child(1) { background-color: #5271ff; }
.header-audinav a:nth-child(2) { background-color: #b6d53b; }
.header-audinav a:nth-child(3) { background-color: #ff5757; }
.header-audinav a:nth-child(4) { background-color: #31b9c0; }
.header-audinav a:nth-child(5) { background-color: #8b2a99; }

.header-topbar {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px;
    background-color: transparent;
    gap: 16px;
}

.header-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: #fff;
    border-radius: 50%;
    color: #0066cc;
    font-size: 0.95rem;
    margin-left: 6px;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
}

.header-social a:hover {
    background-color: #0066cc;
    color: #fff;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
}

.header-link:hover {
    color: #e0e0e0;
}

.header-lang {
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-lang .lang-active {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.header-lang .lang-inactive {
    color: rgba(255,255,255,0.6);
    font-weight: 400;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.header-lang .lang-inactive:hover {
    color: #fff;
}

/* Logo */
.logo {
  max-width: 1320px;
}

/* Navigation */
.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
}
.navbar{
    background-color: #5271ff !important;
}
.nav-menu ul li a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu ul li a:hover {
    color: #ffd700; /* Highlight on hover */
}

.language-switcher {
    list-style: none;
    display: flex;
    gap: 10px;
}
.language-switcher .active {
    font-weight: bold;
    text-decoration: underline;
}