/*
Theme Name: Twenty Twenty-Five Child
Description: Child theme for Twenty Twenty-Five - Modern Health & Tech Blog
Template: twentytwentyfive
Version: 1.0.0
Author: Your Name
Text Domain: twentytwentyfive-child
*/

/* Import parent theme styles */
@import url('../twentytwentyfive/style.css');

/* Custom styles for health and tech blog */
:root {
    --primary-health: #22c55e;
    --primary-tech: #3b82f6;
    --accent-health: #10b981;
    --accent-tech: #6366f1;
    --dark-bg: #0f172a;
    --light-bg: #f8fafc;
}

/* Modern header styles */
.site-header {
    background: linear-gradient(135deg, var(--primary-health) 0%, var(--primary-tech) 100%);
}

/* Custom post styles */
.health-post {
    border-left: 4px solid var(--primary-health);
}

.tech-post {
    border-left: 4px solid var(--primary-tech);
}

/* Responsive improvements */
@media (max-width: 768px) {
    .site-header {
        padding: 1rem 0;
    }
}