/*

Theme Name: PrePIP Theme

Theme URI: https://example.com

Author: Your Name

Author URI: https://example.com

Description: Custom WordPress theme for IT training platform (PrePIP style)

Version: 1.0

License: GNU General Public License v2 or later

License URI: https://www.gnu.org/licenses/gpl-2.0.html

Text Domain: prepip-theme

Tags: education, training, bootstrap, custom-theme

*/



/* =========================

   Global Styles

========================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}


body {

    font-family: Work Sans,sans-serif;
	
    background-color: #ffffff;

    color: #1a1a1a;
    
	line-height:1.6;   
   
}



/* Links */

a {

    text-decoration: none;

}



/* Headings */

h1, h2, h3, h4, h5,h6 {

    font-weight: 700;

}



/* Container spacing fix (optional override) */

.container {

    max-width: 1200px;

}



/* =========================

   Header

========================= */



.site-header {

    background: #ffffff;

    border-bottom: 1px solid #eee;

    padding: 0px 0;

}



/* =========================

   Hero Section

========================= */



.hero-title {

    font-size: 48px;

    font-weight: 800;

}



.hero-subtitle {

    font-size: 18px;

    color: #555;

}



/* =========================

   Buttons (override Bootstrap)

========================= */


ol, ul {
    padding-left: 0rem;
}




/* =========================

   Course Cards

========================= */



.course-card {

    border: 1px solid #eee;

    border-radius: 12px;

   transition: transform .3s ease;

}



.course-card:hover {

    transform: translateY(-5px);

}



/* =========================

   Footer

========================= */



.site-footer {

     background-color: #f5f5f5;
    font-size: 1.0rem;
    line-height: 28px;
    color: #3d4246;

}

