/*
Theme Name: TechDevRise Starter
Theme URI: https://techdevrise.com
Author: TechDevRise
Author URI: https://techdevrise.com
Description: A lightweight technology blog theme for TechDevRise.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: techdevrise
*/


/* =====================
GLOBAL STYLES
===================== */


*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}


body{

    background:#070B14;
    color:#ffffff;
    font-family:
    Arial,
    Helvetica,
    sans-serif;

    line-height:1.6;

}



a{

    color:#00FF88;
    text-decoration:none;

}


.container{

    width:90%;
    max-width:1200px;
    margin:auto;

}



img{

    max-width:100%;
    height:auto;

}



/* =====================
HEADER
===================== */


.site-header{

    background:#0B1220;
    padding:20px 0;

}



.header-inner{

    display:flex;
    justify-content:space-between;
    align-items:center;

}



.site-logo{

    font-size:28px;
    font-weight:800;

}


.site-logo span{

    color:#00FF88;

}



.main-menu{

    display:flex;
    gap:25px;

}


.main-menu a{

    color:white;
    font-weight:600;

}



/* =====================
FOOTER
===================== */


.site-footer{

    background:#050810;
    padding:40px 0;
    margin-top:60px;
    text-align:center;
    color:#aaa;

}




/* =====================
MOBILE
===================== */


@media(max-width:768px){


.main-menu{

    display:none;

}



.site-logo{

    font-size:22px;

}


}