/*
Theme Name: Dwallnet Genesis
Theme URI: https://dwallnet.com
Author: Dwallnet Technologies
Author URI: https://dwallnet.com
Description: A modern technology education and digital innovation WordPress theme built for Dwallnet.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dwallnet-genesis
Tags: education, technology, business, responsive, modern
*/

/*
==================================================
GLOBAL VARIABLES
==================================================
*/

:root {

    --primary-color: #081120;
    --secondary-color: #135DFF;
    --accent-color: #00CFFF;
    --highlight-color: #FF8C32;

    --white: #ffffff;
    --black: #000000;

    --light-bg: #F8FAFC;
    --dark-bg: #06101F;

    --text-color: #1E293B;
    --muted-color: #64748B;

    --border-radius: 20px;

    --transition: all .3s ease;

}


/*
==================================================
RESET
==================================================
*/


*,
*::before,
*::after {

    margin:0;
    padding:0;
    box-sizing:border-box;

}


html {

    scroll-behavior:smooth;

}


body {

    font-family:
    "Inter",
    Arial,
    sans-serif;

    color:var(--text-color);

    background:var(--white);

    line-height:1.6;

}


img {

    max-width:100%;
    height:auto;

}


a {

    text-decoration:none;

    color:inherit;

}


ul {

    list-style:none;

}


/* COURSE MODULES */


.dw-course-module{

    background:#f8fafc;

    border-radius:18px;

    padding:25px;

    margin-bottom:20px;

}



.dw-course-module h3{

    margin-bottom:20px;

    color:#0f172a;

}



.dw-course-lessons{

    display:flex;

    flex-direction:column;

    gap:12px;

}



.dw-lesson-item{

    background:#ffffff;

    padding:15px 18px;

    border-radius:12px;

    text-decoration:none;

    color:#334155;

    display:flex;

    align-items:center;

    gap:10px;

    transition:.3s;

}



.dw-lesson-item:hover{

    background:#2563eb;

    color:white;

}