/* Additional custom styles not in main style.css */

/* Site Header */
.site-header {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo Styling */
.site-branding {
    flex-shrink: 0;
}

.custom-logo-link {
    display: block;
}

.custom-logo {
    height: auto;
    width: 200px;
    max-width: 200px;
    display: block;
}

.site-title {
    font-size: 1.5em;
    margin: 0;
}

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

.site-description {
    font-size: 0.9em;
    color: #6b7280;
    margin: 5px 0 0 0;
}

/* Navigation Styling - REMOVED: Conflicting with style.css */
/* Main navigation styles are now in style.css only */

/* Navigation Button Style for Schedule Consultation */
.main-navigation a.btn-nav {
    background: #f59e0b;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.main-navigation a.btn-nav:hover {
    background: #d97706;
    color: white;
    transform: translateY(-2px);
}

/* Site Footer */
.site-footer {
    background: #1e3a8a;
    color: #fff;
    padding: 40px 0;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-footer a {
    color: #fff;
    text-decoration: none;
}

.site-footer a:hover {
    color: #fbbf24;
}

.footer-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

/* Blog Post Styling */
.blog-posts article {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e5e7eb;
}

.entry-meta {
    font-size: 0.9em;
    color: #6b7280;
    margin: 10px 0;
}

/* WordPress Navigation */
.posts-navigation {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.nav-links {
    display: flex;
    justify-content: space-between;
}

.nav-links a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
}

.nav-links a:hover {
    color: #1e3a8a;
}

/* WordPress Classes */
.alignleft {
    float: left;
    margin: 0 20px 20px 0;
}

.alignright {
    float: right;
    margin: 0 0 20px 20px;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Adjustments */
/* REMOVED 968px breakpoint - was causing menu to go vertical before hamburger appeared */
/* All header/nav responsive styles are now consolidated in style.css at 768px */

@media (max-width: 768px) {
    .custom-logo {
        width: 160px;
        max-width: 160px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-navigation ul {
        flex-direction: column;
        gap: 10px;
    }
}
