/*
 * Theme Name:        AI Digital Guides Child
 * Theme URI:         https://mdarshad.aidigitalguides.com
 * Author:            MD Arshad
 * Author URI:        https://linkedin.com/in/mdarshad01
 * Description:       Child theme for AI Digital Guides. Use this to safely
 *                    customize the theme without losing changes when the parent
 *                    theme is updated. Add custom CSS here and override PHP
 *                    template files by copying them from the parent theme.
 * Template:          aidigitalguides
 * Version:           2.0.0
 * Requires at least: 6.2
 * Tested up to:      6.7
 * License:           GNU General Public License v2 or later
 * License URI:       https://www.gnu.org/licenses/gpl-2.0.html
 * Text Domain:       aidigitalguides-child
 */

/*
 * ─────────────────────────────────────────────────────────
 * IMPORTANT: WHERE YOUR CONTENT CHANGES ARE STORED
 * ─────────────────────────────────────────────────────────
 *
 * Text content (hero headline, service descriptions, bio, etc.)
 * is saved in the WORDPRESS DATABASE via Appearance → Customize.
 * It is NOT stored in this file or any theme file.
 *
 * To back up your content:
 *   → Export your Customizer settings using a plugin like
 *     "Customizer Export/Import" (free on wordpress.org)
 *   → Or use WordPress export (Tools → Export → All Content)
 *
 * This child theme stores:
 *   ✅ CSS overrides (style.css / assets/css/child.css)
 *   ✅ Template overrides (copied .php files)
 *   ✅ Extra PHP functions (functions.php)
 *   ❌ NOT your Customizer text/content (that's in the database)
 *
 * ─────────────────────────────────────────────────────────
 * HOW TO USE THIS CHILD THEME
 * ─────────────────────────────────────────────────────────
 *
 * 1. CUSTOM CSS → add below, or in assets/css/child.css
 *
 * 2. OVERRIDE TEMPLATES → copy any .php file from the
 *    parent theme into the same path in this folder.
 *    Example:
 *      Parent:  aidigitalguides/template-parts/hero.php
 *      Child:   aidigitalguides-child/template-parts/hero.php
 *    WordPress uses the child version automatically.
 *
 * 3. ADD PHP FUNCTIONS → edit functions.php here.
 *    Never edit the parent theme's functions.php.
 *
 * ─────────────────────────────────────────────────────────
 * CSS VARIABLES (from parent theme — override any here)
 * ─────────────────────────────────────────────────────────
 *
 *   --purple:         #7c3aed   Primary purple
 *   --purple-light:   #a855f7   Accent purple
 *   --magenta:        #e040fb   Magenta accent
 *   --pink:           #f472b6
 *   --cyan:           #22d3ee
 *   --green:          #4ade80
 *   --yellow:         #fbbf24
 *   --bg:             #0d0d1a   Page background
 *   --bg-2:           #111128   Alternate section background
 *   --card:           #1a1a35   Card background
 *   --text:           #f1f0ff   Primary text
 *   --text-muted:     #8b8aad   Muted text
 *   --border:         rgba(124,58,237,0.2)
 *   --grad-primary:   linear-gradient(135deg,#7c3aed,#e040fb)
 *
 * ─────────────────────────────────────────────────────────
 * EXAMPLES (uncomment to use)
 * ─────────────────────────────────────────────────────────
 */

/* Change primary colour from purple → blue */
/*
:root {
    --purple:       #2563eb;
    --purple-light: #60a5fa;
    --magenta:      #0ea5e9;
}
*/

/* Change hero title font size */
/* .hero__title { font-size: clamp(2.8rem, 6vw, 5rem); } */

/* Round service cards more */
/* .svc-card { border-radius: 24px; } */

/* Larger logo text */
/* .site-logo__text { font-size: 1.4rem; } */

/* ─────────────────────────────────────────────────────────
   ACTIVE CUSTOMIZATIONS
   ───────────────────────────────────────────────────────── */

/* Custom scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--purple-light); }

/* Text selection color */
::selection { background: rgba(168,85,247,0.35); color: var(--text); }

/* ── ADD MORE CSS BELOW ──────────────────────────────────── */
