/* === HEADER LAYOUT & THEME === */
/* Main Header Container */
.header_section {
    background: linear-gradient(to bottom, #4a4a4a 0%, #252525 50%);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1020;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* This is the container for the top bar content */
.header_top_container {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on small screens */
    justify-content: space-between;
    align-items: center;
    gap: 20px; /* Add some space between items */
}

/* Top bar of the header */
.header_top {
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Bottom bar of the header (main navigation) */
.header_bottom {
    padding-top: 5px;
}

/* General link styles in the header */
.header_section a {
    color: #ffffff;
}

/* Contact info in the top bar */
.contact_nav {
    display: flex;
    align-items: center;
    gap: 20px; /* Space between contact items */
}

.contact_nav a {
    color: #ddd;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.contact_nav a:hover {
    color: #f07b26;
}

.contact_nav i {
    color: #f07b26;
    margin-right: 8px;
}

/* Language selector */
.lang_box {
    display: flex;
    align-items: center;
}

.lang_box span {
    color: #ddd;
    margin-left: 8px;
}