/*
Theme Name: GOODWIN - Child
Author: GT3themes
Author URI: https://gt3themes.com
Description: Child theme for GOODWIN. Adds a social icons block to the header for this specific client.
Version: 1.0
Template: goodwin
*/
@import url("../goodwin/style.css");

/* ============================================
   Header social icons (client-specific)
   Reuses the theme's FontAwesome .icon-* glyphs
   and the .socials_list markup pattern.
   ============================================ */
.main_header .header_socials {
    position: absolute;
    top: 30px;
    right: 100px;         /* clears the .toggle_fullview at right:27px */
    margin: 0;
    padding: 0;
    list-style: none;
    line-height: 1;
}

.main_header .header_socials li {
    display: inline-block;
    margin: 0 0 0 14px;
    vertical-align: middle;
}

.main_header .header_socials a {
    display: inline-block;
    font-size: 18px;       /* required: .header_wrapper has font-size:0 */
    line-height: 1;
    color: #fff;
    opacity: 0.7;
    transition: opacity 250ms;
}

.main_header .header_socials a:hover {
    opacity: 1;
}

/* On narrow screens the burger/fullview toggles dominate the bar —
   hide the header socials to avoid overlap (tweak as needed). */
@media (max-width: 767px) {
    .main_header .header_socials {
        display: none;
    }
}
