/*
Theme Name: Good Earth
Theme URI: https://creativethemes.com/blocksy/
Template: blocksy
Author: Good Earth Network
Author URI: https://vitality.guide
Description: Blocksy Child Theme
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: blocksy-child
*/

/* Add any additional styles for your child theme here */

/* Homepage Header Styling - Vitality Guide Design */
/* Top Banner with Tagline */
.site-header-top-banner {
    background-color: #FF6B35;
    color: #ffffff;
    text-align: center;
    padding: 8px 10px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Main Header Styling */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Center the logo */
.site-branding {
    text-align: center;
    padding: 15px 0;
}

.site-logo img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}

/* Navigation styling to match Vitality Guide */
.main-navigation {
    background-color: #000000;
}

.main-navigation ul {
    justify-content: center;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    color: #ffffff;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 400;
    transition: background-color 0.3s ease;
}

.main-navigation a:hover {
    background-color: #333333;
    color: #ffffff;
}

/* Mobile hamburger menu styling */
.mobile-menu-toggle {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

/* Newsletter button */
.header-newsletter-btn {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #6c757d;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    text-decoration: none;
}

.header-newsletter-btn:hover {
    background-color: #5a6268;
    color: white;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .site-branding {
        padding: 10px 0;
    }
    
    .site-logo img {
        max-height: 45px;
    }
    
    .site-header-top-banner {
        font-size: 12px;
        padding: 6px 10px;
    }
}
