/*
Theme Name: Nyumbani Academy Child
Theme URI: https://www.nyumbani.ac.tz
Description: A lightweight child theme for Author Writer Pro, customized for Nyumbani Academy.
Author: Afrika Sisi Nyumbani Limited
Author URI: https://www.asn.co.tz
Template: author-writer-pro
Version: 1.0.0
Requires at least: 6.8
Tested up to: 6.9
Requires PHP: 8.1
Text Domain: nyumbani-academy
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: education, lms, learnpress, woocommerce, responsive, accessibility-ready
*/

/* ==========================================================
   NYUMBANI ACADEMY CHILD THEME
   ========================================================== */

:root{

    --primary:#1B5E20;
    --secondary:#FFC107;
    --accent:#2196F3;

    --dark:#1E293B;
    --light:#F8FAFC;

    --white:#ffffff;

    --container:1320px;

    --radius:8px;

    --shadow:0 8px 30px rgba(0,0,0,.08);

    --transition:.3s ease;

}

*{
    box-sizing:border-box;
}

body{

    margin:0;

    font-family:Inter,Arial,sans-serif;

    background:#fff;

    color:#333;

    line-height:1.7;

}

img{

    max-width:100%;

    height:auto;

}

a{

    color:var(--primary);

    transition:var(--transition);

    text-decoration:none;

}

a:hover{

    color:var(--secondary);

}

.container{

    width:min(100%,var(--container));

    margin:auto;

    padding:0 20px;

}