/*
Theme Name: Kamdhenu Solutions WP Theme
Theme URI: https://kamdhenusolutions.com
Author: Kamdhenu Solutions
Author URI: https://kamdhenusolutions.com
Description: A custom WordPress theme developed by Kamdhenu Solutions.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kamdhenu-solutions-wp-theme
*/

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

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* Full Width Container Setup */
.container,
.main-content .container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box;
}

.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 0;
}

.site-title a {
    color: #111;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: bold;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.main-navigation a {
    color: #444;
    text-decoration: none;
    font-weight: 500;
}

.main-content {
    width: 100%;
    padding: 0;
    margin: 0;
}

/* Page Article Content Stretch */
article {
    width: 100%;
    background: #fff;
    padding: 0;
    margin-bottom: 0;
    border-radius: 0;
    box-shadow: none;
}

article h1, article h2 {
    margin-bottom: 10px;
}

article h2 a {
    color: #222;
    text-decoration: none;
}

.entry-meta {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 15px;
}

.site-footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 25px 0;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .container,
    .main-content .container {
        padding: 0 !important;
    }
}