/*
Theme Name: wpkit
Theme URI: https://example.com/wpkit
Author: Your Name
Author URI: https://example.com
Description: A simple, modern WordPress theme inspired by NinjaTeam.org. This theme includes a custom front page with a hero section and feature grids as well as a responsive navigation menu. It is designed to be lightweight and easy to customize.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wpkit
Tags: custom-background, custom-logo, custom-menu, featured-images, theme-options, translation-ready
*/

/* Reset some defaults */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #222;
    background: #ffffff;
}

a {
    color: #0073aa;
    text-decoration: none;
}

a:hover {
    color: #005177;
    text-decoration: underline;
}

.site-header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #eaeaea;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.site-branding a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e84c3d;
    display: flex;
    align-items: center;
}

.site-branding img {
    height: 40px;
    margin-right: 10px;
}

.primary-menu {
    display: flex;
    list-style: none;
}

.primary-menu li {
    margin-left: 25px;
}

.primary-menu li a {
    color: #333;
    font-weight: 500;
    transition: color 0.2s ease;
}

.primary-menu li a:hover {
    color: #e84c3d;
}

.hero {
    background: linear-gradient(90deg, #f1f9ff 0%, #ffffff 100%);
    padding: 100px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.hero p {
    font-size: 1.1rem;
    max-width: 700px;
    margin-bottom: 30px;
    color: #555;
}

.hero .btn-primary {
    background: #e84c3d;
    color: #fff;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.hero .btn-primary:hover {
    background: #c44133;
}

.features {
    padding: 80px 20px;
    background: #f9fafb;
}

.features .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.features .section-title h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
}

.features .section-title p {
    color: #666;
    font-size: 1rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.2s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item .icon {
    font-size: 3rem;
    color: #e84c3d;
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.feature-item p {
    font-size: 0.95rem;
    color: #666;
}

/* Footer styles */
.site-footer {
    background: #222;
    color: #999;
    padding: 40px 20px;
    text-align: center;
}

.site-footer a {
    color: #e84c3d;
}