/*
Theme Name: Beyond Biz Experience
Description: Custom WordPress Theme
Author: Susan Robichaud
Version: 1.0.0
*/

/* ==========================================================================
   HEADER STYLES (FOR ALL STYLES)
   ========================================================================== */

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0; 
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Ensure header containers don't clip submenus */
.site-header,
.header-wrapper,
.navigation-wrapper {
    overflow: visible !important;
}

/* ==========================================================================
   SITE BRANDING - UNIFIED STYLES
   ========================================================================== */

.site-branding {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding-left: 40px;
    gap: 15px; /* Space between logo and text */
}

/* ==========================================================================
   LOGO STYLES
   ========================================================================== */

.custom-logo,
.custom-logo-link img,
img.custom-logo,
.site-logo img,
.logo img {
    max-width: 200px !important; /* Default width */
    width: auto !important; /* Let it scale naturally within max-width */
    height: auto !important;
    display: block !important;
    transition: max-width 0.3s ease !important; /* Smooth transitions */
}

/* ==========================================================================
   SITE TITLE & DESCRIPTION STYLES
   ========================================================================== */

.site-title {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    display: block; /* Default visible */
    line-height: 1.2;
}

.site-title a {
    color: #555555;
    text-decoration: none;
}

.site-description {
    font-size: 14px;
    color: #555555;
    margin: 0;
    margin-top: 5px;
    display: block; /* Default visible */
    line-height: 1.2;
}

/* ==========================================================================
   NAVIGATION STYLES
   ========================================================================== */

.main-navigation {
    display: flex;
    align-items: center;
    padding-right: 20px;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}