/* Logo and Branding Styles */
.site-branding {
    display: flex;
    align-items: center;
    gap: 20px;
}

.site-logo-text {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: linear-gradient(135deg, #007cba 0%, #005a8a 100%);
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.site-logo-text:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 124, 186, 0.3);
}

.logo-icon {
    width: 32px;
    height: 32px;
    margin-right: 10px;
    fill: white;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    color: white;
    letter-spacing: -0.5px;
}

.site-title {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
}

.site-title a {
    color: #1e1e1e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-title a:hover {
    color: #007cba;
}

.site-description {
    margin: 5px 0 0;
    font-size: 14px;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-branding {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .site-logo-text {
        padding: 6px 12px;
    }

    .logo-icon {
        width: 24px;
        height: 24px;
    }

    .logo-text {
        font-size: 18px;
    }

    .site-title {
        font-size: 24px;
    }
}