/*
Theme Name: AjTakTime
Theme URI: https://ajtaktime.uk
Description: A modern, modular, responsive child theme for NetHussnain focused on news and blog portals.
Author: NET HUSSNAIN
Author URI: https://ajtaktime.uk
Template: generatepress
Version: 1.0.0
Text Domain: ajtaktime
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    /* Color Palette */
    --ajtaktime-primary: #dc2626;
    /* News Portal Red */
    --ajtaktime-secondary: #e11d48;
    /* Accent Rose */
    --ajtaktime-bg: #f8fafc;
    /* Light Slate Body Background */
    --ajtaktime-text: #0f172a;
    /* Slate 900 Text */
    --ajtaktime-text-muted: #64748b;
    /* Slate 500 Subtext */
    --ajtaktime-border: #e2e8f0;
    /* Slate 200 border */
    --ajtaktime-card-bg: #ffffff;
    /* Card Background */
    --ajtaktime-success: #22c55e;
    /* Verified / Success Green */

    /* Layout */
    --ajtaktime-container: 1240px;
    --ajtaktime-spacing: 0.85rem;
    --ajtaktime-radius: 10px;
    --ajtaktime-radius-sm: 6px;
    --ajtaktime-radius-full: 9999px;

    /* Shadows */
    --ajtaktime-shadow: 0 1px 3px 0 rgba(15, 23, 42, 0.03), 0 1px 2px -1px rgba(15, 23, 42, 0.03);
    --ajtaktime-shadow-hover: 0 12px 20px -5px rgba(15, 23, 42, 0.06), 0 6px 8px -6px rgba(15, 23, 42, 0.06);
    --ajtaktime-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);

    /* Typography defaults */
    --ajtaktime-font: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Base resets & typography */
*,
*:before,
*:after {
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    color: var(--ajtaktime-text);
    font-family: var(--ajtaktime-font);
    line-height: 1.5;
}

.site,
#page {
    overflow-x: hidden;
    width: 100%;
}

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

a {
    color: var(--ajtaktime-text);
    text-decoration: none;
    transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--ajtaktime-text);
    font-family: var(--ajtaktime-font);
    font-weight: 700;
    line-height: 1.25;
    margin-top: 0;
    margin-bottom: 0.5rem;
}