/*
Theme Name:  GeneratePress Child
Description: Lightweight child theme for GeneratePress
Author:      Muhammad Imran
Template:    generatepress
Version:     1.0.0
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: generatepress-child
*/

/* ============================================================
   All your custom CSS goes below this line.
   GeneratePress parent theme styles load automatically.
   ============================================================ */

/* ── Global speed-friendly base ── */
*, *::before, *::after {
    box-sizing: border-box;
}

/* ── Smooth scroll (CSS only, no JS) ── */
html {
    scroll-behavior: smooth;
}

/* ── System font stack — zero font loading ── */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
                 Oxygen, Ubuntu, Cantarell, "Open Sans", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ── Images: always responsive, no layout shift ── */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ── Links ── */
a {
    text-decoration: none;
    transition: color .15s;
}

a:hover {
    text-decoration: underline;
}

/* ── Prevent horizontal scroll on mobile ── */
body, .site-container {
    overflow-x: hidden;
}
