/*
Theme Name: HealthPulse
Theme URI: https://rsoc-platform.com/themes/healthpulse
Author: RSOC Platform
Author URI: https://rsoc-platform.com
Description: A professional magazine-style WordPress theme designed for health, nutrition, and wellness content. Features a breaking news ticker, sectioned homepage layout, category-colored headers, and fully responsive design.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: healthpulse
Tags: blog, news, magazine, one-column, two-columns, three-columns, custom-logo, custom-menu, featured-images, footer-widgets, theme-options, translation-ready

HealthPulse - A modern health and wellness magazine theme.
*/

/* Full styling loaded from assets/css/healthpulse.css via functions.php wp_enqueue_style.
   This file provides the WP theme header + minimal structural fallback.
   Google Fonts: Inter (headings/UI) + Source Serif Pro (body) loaded in functions.php. */

:root {
    --color-primary: #16a085;
    --color-primary-dark: #0e7a64;
    --color-primary-light: #1dd2af;
    --color-primary-rgb: 22, 160, 133;
    --color-accent: #e74c3c;
    --color-accent-dark: #c0392b;
    --color-secondary: #2c3e50;
    --color-bg: #ffffff;
    --color-bg-light: #f8f9fa;
    --color-bg-alt: #f0f4f3;
    --color-text: #2c3e50;
    --color-text-secondary: #5a6872;
    --color-text-light: #8b95a1;
    --color-text-muted: #adb5bd;
    --color-border: #e2e8f0;
    --color-border-light: #eef1f5;
    --color-footer-bg: #1a1a2e;
    --color-footer-text: #c8ced5;
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Source Serif Pro', 'Source Serif 4', Georgia, 'Times New Roman', serif;
    --font-ui: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --max-width: 1200px;
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 12px 32px rgba(0, 0, 0, 0.14);
    --transition: 0.25s cubic-bezier(0.33, 1, 0.68, 1);
}

/* Minimal structural reset - full styling by frontend-dev-1 */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
}

a {
    color: var(--color-primary);
    text-decoration: none;
}

a:hover {
    color: var(--color-primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.3;
    color: var(--color-text);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Screen reader text */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* WordPress alignment classes */
.alignleft {
    float: left;
    margin-right: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.alignright {
    float: right;
    margin-left: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--spacing-md);
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.85rem;
    color: var(--color-text-light);
    text-align: center;
    padding: var(--spacing-xs) 0;
}
