/*
Theme Name: SMD Trims Theme
Theme URI: https://smdtrims.com
Author: SMD Trims Development Team
Author URI: https://smdtrims.com
Description: A custom WordPress theme for SMD Trims website
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: smdtrims
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Header Styles */
.header {
    background-color: #f8f9fa;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.site-title {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}

.site-description {
    color: #666;
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* Navigation */
.main-navigation {
    margin-top: 1rem;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.main-navigation a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-navigation a:hover {
    color: #007bff;
}

/* Main Content */
.site-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.content-area {
    float: left;
    width: 70%;
    padding-right: 2rem;
}

.widget-area {
    float: right;
    width: 30%;
}

/* Posts */
article.post {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.entry-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.entry-title a {
    color: #333;
    text-decoration: none;
}

.entry-title a:hover {
    color: #007bff;
}

.entry-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.entry-content {
    line-height: 1.8;
}

.entry-content p {
    margin-bottom: 1rem;
}

/* Sidebar Widgets */
.widget {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.widget-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #333;
}

.widget ul {
    list-style: none;
}

.widget li {
    margin-bottom: 0.5rem;
}

.widget a {
    color: #007bff;
    text-decoration: none;
}

.widget a:hover {
    text-decoration: underline;
}

/* Footer */
.site-footer {
    background-color: #343a40;
    color: #fff;
    padding: 2rem 0;
    margin-top: 3rem;
}

/*===========================
<-- Itpro Loader Css - DISABLED -->
=============================*/

/* Hide any remaining loader elements */
.loader-wrapper,
.loader,
.loder-section {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    z-index: -9999 !important;
}

.site-info {
    text-align: center;
    font-size: 0.9rem;
}

/* Clearfix */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-area,
    .widget-area {
        float: none;
        width: 100%;
        padding-right: 0;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .site-main {
        padding: 1rem;
    }
}

/* Accessibility */
.screen-reader-text {
    position: absolute !important;
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0 !important;
    border: 0 !important;
    height: 1px !important;
    width: 1px !important;
    overflow: hidden;
}

.screen-reader-text:focus {
    clip: auto !important;
    display: block;
    height: auto;
    width: auto;
    z-index: 100000;
}

/* US Footer Styles */
.us-footer {
    background: #062754;
    color: #fff;
    padding: 40px 0 20px;
}

.us-footer-content {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
}

.us-footer-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    border-top: 2px solid rgba(255, 255, 255, 1);
    margin-top: -31px;
    padding-top: 30px;
    margin-right: 10px;
}

.us-footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.us-footer-logo img {
    width: 200px;
}

.us-footer-logo span {
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
}

.us-footer-social {
    display: flex;
    gap: 15px;
}

.us-footer-social a {
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    transition: all 0.3s;
}

.us-footer-right {
    display: flex;
    gap: 60px;
    flex: 1;
    border-top: 2px solid rgba(255, 255, 255, 1);
    margin-top: -31px;
    padding-top: 30px;
    justify-content: flex-start;
    margin-left: 10px;
}

.us-footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.us-footer-menu li {
    margin-bottom: 10px;
}

.us-footer-menu a {
    font-size: 16px;
    color: #fff;
    transition: opacity 0.3s;
    font-weight: 500;
}

.us-footer-menu a:hover {
    opacity: 0.8;
}

.us-footer-copyright {
    font-size: 14px;
    color: #fff;
    margin-top: 40px;
    font-weight: bold;
}

@media (max-width: 991px) {
    .us-footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .us-footer-right {
        gap: 30px;
    }

    .us-footer-left,
    .us-footer-right {
        border-top: none !important;
    }
}