/*
Theme Name: Astra Child for Kiribati Schools
Theme URI: https://school.aonrain.com/
Description: A sustainable, low-bandwidth child theme for the Kiribati Schools Online Platform. Optimized for solar-powered devices and remote island connectivity.
Author: Master Wayne & Sustainability Team
Author URI: https://school.aonrain.com/
Template: astra
Version: 1.0.1
Text Domain: astra-child
*/

/* 🌏 GLOBAL ACCESSIBILITY */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 🍃 ECO-MODE STYLES
   These styles only activate when the "Data Saver" toggle is ON.
   The .eco-mode-active class is added to the <body> via our functions.php logic.
*/

/* 1. Hide heavy background images and large decorative images */
.eco-mode-active .wp-block-cover, 
.eco-mode-active .wp-block-image img:not(.logo),
.eco-mode-active .ast-single-post-featured-section {
    display: none !important;
}

/* 2. Replace hidden images with a simple placeholder text/border to save bandwidth */
.eco-mode-active .wp-block-image::before {
    content: "🖼️ Image hidden to save data.";
    display: block;
    padding: 20px;
    border: 1px dashed #ccc;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

/* 3. Force System Fonts (No Google Font downloads) */
.eco-mode-active * {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
}

/* 4. High Contrast for Solar-Powered Tablets (easier to read in the sun) */
.eco-mode-active {
    background-color: #ffffff !important;
    color: #000000 !important;
}

.eco-mode-active a {
    color: #004a99 !important;
    text-decoration: underline !important;
}

/* 5. Simplify the Toggle Button in Eco-Mode */
.eco-mode-active #eco-toggle-btn {
    background: #2e7d32 !important; /* Green to indicate Eco is active */
}