/*
 * Social Icons for Bridge 30.8.8.7+ Header
 * Matching original structure with flexbox alignment
 */

/* Make side_menu_button_wrapper use flexbox for proper alignment */
.side_menu_button_wrapper.right {
    display: flex;
    align-items: center;
}

/* Container matching header_bottom_right_widget_holder */
.header-social-icons {
    display: flex;
    align-items: center;
    margin-right: 8px;
}

/* Social icon holders matching q_social_icon_holder */
.header-social-icons .q_social_icon_holder {
    display: inline-flex;
    align-items: center;
    margin-right: 8px;
    position: relative;
    top: 5px;
}

.header-social-icons .q_social_icon_holder:last-child {
    margin-right: 0;
}

.header-social-icons .q_social_icon_holder:last-child {
    margin-right: 0;
}

/* Social icon links */
.header-social-icons .q_social_icon_holder a {
    display: inline-flex;
    align-items: center;
}

/* LinkedIn icon styling - keep Font Awesome with specific positioning */
.header-social-icons .q_social_icon_holder a .fa-linkedin {
    font-family: 'FontAwesome' !important;
    color: inherit;
    position: relative;
    top: 0;
}

/* Bluesky - replace Twitter icon with SVG via CSS - matching LinkedIn positioning */
.header-social-icons .q_social_icon_holder a.bluesky i.fa-twitter {
    font-family: none !important;
    color: transparent !important;
    position: relative;
    top: 2px;
}

.header-social-icons .q_social_icon_holder a.bluesky i.fa-twitter::before {
    content: "" !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 568 501' fill='%23000000'%3E%3Cpath d='M123.121 33.6637C188.241 82.5526 258.281 181.681 284 234.873C309.719 181.681 379.759 82.5526 444.879 33.6637C491.866 1.61183 568 -28.9064 568 57.9464C568 75.2916 558.055 203.659 552.222 224.501C531.947 296.954 458.067 315.434 392.347 304.249C507.222 323.8 536.444 388.56 473.333 453.32C353.473 576.312 301.061 422.461 284 384.048C266.939 422.461 214.527 576.312 94.6667 453.32C31.5556 388.56 60.7778 323.8 175.653 304.249C109.933 315.434 36.0533 296.954 15.7778 224.501C9.94444 203.659 0 75.2916 0 57.9464C0 -28.9064 76.1333 1.61183 123.121 33.6637Z'/%3E%3C/svg%3E") !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    width: 1em !important;
    height: 1em !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
}

/* Hover effect - becomes gray */
.header-social-icons .q_social_icon_holder a.bluesky:hover i.fa-twitter::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 568 501' fill='%23818181'%3E%3Cpath d='M123.121 33.6637C188.241 82.5526 258.281 181.681 284 234.873C309.719 181.681 379.759 82.5526 444.879 33.6637C491.866 1.61183 568 -28.9064 568 57.9464C568 75.2916 558.055 203.659 552.222 224.501C531.947 296.954 458.067 315.434 392.347 304.249C507.222 323.8 536.444 388.56 473.333 453.32C353.473 576.312 301.061 422.461 284 384.048C266.939 422.461 214.527 576.312 94.6667 453.32C31.5556 388.56 60.7778 323.8 175.653 304.249C109.933 315.434 36.0533 296.954 15.7778 224.501C9.94444 203.659 0 75.2916 0 57.9464C0 -28.9064 76.1333 1.61183 123.121 33.6637Z'/%3E%3C/svg%3E") !important;
}

/* Ensure side_menu_button also aligns properly */
.side_menu_button_wrapper > .side_menu_button {
    display: flex;
    align-items: center;
    position: relative;
    top: 2px;
}

/* Mobile adjustments */
@media only screen and (max-width: 1000px) {
    .header-social-icons {
        display: none;
    }
}
