/*
Theme Name:     Twenty Twenty-Three Child
Theme URI:      https://wordpress.org/themes/twentytwentythree/
Description:    Child theme for the Twenty Twenty-Three theme
Author:         Your Name
Author URI:     https://yourwebsite.com
Template:       twentytwentythree
Version:        1.0.0
License:        GNU General Public License v2 or later
License URI:    http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:    twentytwentythree-child
*/

/*
 * This is your child theme stylesheet.
 * Add your custom styles below this comment.
 * Any changes made here will override the parent theme styles.
 */

/* Import parent theme styles - this should always be the first line */
@import url('../twentytwentythree/style.css');

/* Header Styles */
.site-header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 15px 0;
    position: relative;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.site-branding {
    padding: 10px 0;
}

.site-title {
    margin: 0;
    font-size: 24px;
}

.site-title a {
    color: #333;
    text-decoration: none;
}

/* Navigation Styles */
.main-navigation {
    display: flex;
    align-items: center;
}

.primary-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.primary-menu > li {
    position: relative;
    margin-left: 20px;
}

.primary-menu > li > a {
    color: #333;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    font-weight: 500;
    transition: color 0.3s ease;
}

.primary-menu > li > a:hover {
    color: #0073aa;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .primary-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        padding: 10px 0;
    }
    
    .primary-menu.toggled {
        display: flex;
    }
    
    .primary-menu > li {
        margin: 5px 0;
    }
}

/* Ensure content doesn't hide behind fixed header */
.site-content {
    padding-top: 30px;
}
