/* 
* Site Header Home (Lifestyle Theme CSS) 
*/

/* Loads only on the home page. On subpages only when activated in the Customizer. */







/* = 4. Site header
------------------------------------- */

.site-header {
    padding-bottom: 10px;
}

.site-title {
    text-align: center;
}

.site-title a {
    font-size: 88px;
}

.site-title h1 { /* optional image logo */
    display: inline-block;
}

.site-title.st__big {
    margin-top: 24px;
}

.site-title.st__big img { /* optional image logo */
    height: 100px;
}

.site-description {
    margin-bottom: 60px;
    font-size: 13px;
    color: #666;
    line-height: 23px;
    text-align: center;
}

/* ===== Top bar ------- */

.lifestyle-topbar {
    position: relative; /*  DO USUNIECIA */
}

/* topbar site socials */

.topbar-socials {
    position: absolute;
    top: 30px;
    left: 15px;
}

.topbar-socials li {
    margin-right: 10px;
    float: left;
}

body.rtl .topbar-socials { /* rtl */
    left: unset;
    right: 15px;
}

/* topbar nav */

.topbar-urls {
    display: block;
    margin: 0 auto;
    width: 50%;
    text-align: center;
}

.topbar-urls ul li {
    display: inline-block;
    margin: 0 20px;
}

.topbar-urls ul li a {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
}

.topbar-urls ul li a:hover {
    text-decoration-line: underline;
    text-decoration-thickness: 1px;
    text-decoration-color: #ddd;
    text-underline-offset: 6px;
}

.topbar-urls .page_item_has_children > a::after,
.topbar-urls .menu-item-has-children > a::after {
    content: none;
}

/* for 600px or less */
@media screen and (max-width: 600px) {

    .topbar-socials li {
        margin-right: 20px;
    }

}


/* = 5. Main nav (MENU BTN)
------------------------------------- */

/* menu button on mobile */

.toggle-menu { 
    display: none;
    border: 2px solid #ddd;
    padding: 12px;
    text-align: center;
    text-transform: uppercase;
    font-size: 18px;
    cursor: pointer;
    
    letter-spacing: 2px;
    font-weight: 600;
    
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

/* adds "hide" after tapping */

html[lang="en-US"] .toggle-menu.tapped::before {
    content: 'Hide ';
}
html[lang="pl-PL"] .toggle-menu.tapped::before {
    content: 'Zwiń ';
}

/* for 600px or less */
@media screen and (max-width: 600px) {

    /* topbar */
    
    .topbar-urls {
        width: 100%;
        padding: 50px 0 0 0;
    }
    
    .topbar-urls ul li {
        margin: 0 7px;
    }
    
    .site-description {
        margin-bottom: 40px;
    }
    
   /* site header */
    
    .site-title a {
        font-size: 64px;
    }

    .toggle-menu {
        display: block;
    }
    
}






