/*
Theme Name: International Cars
Theme URI: https://internationalcars.bg
Author: International Cars
Author URI: https://internationalcars.bg
Description: A modern dark-themed automotive portal for Club 911 and MyBike
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: international-cars
Tags: dark, automotive, modern, minimal
*/

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

/* Body */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0d0d0d;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background-color: #f8f9fa;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
}

.site-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.site-title a {
    color: #333;
    text-decoration: none;
}

.site-description {
    font-size: 14px;
    color: #6c757d;
    margin: 5px 0 0;
}

/* Navigation */
.main-navigation {
    margin-top: 15px;
}

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

.main-navigation a {
    color: #495057;
    text-decoration: none;
    padding: 5px 10px;
    transition: color 0.3s ease;
}

.main-navigation a:hover {
    color: #007bff;
}

/* Main Content */
.site-main {
    padding: 40px 0;
    min-height: 60vh;
}

/* Posts */
.post,
.page {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e9ecef;
}

.post:last-child,
.page:last-child {
    border-bottom: none;
}

.entry-header {
    margin-bottom: 20px;
}

.entry-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.entry-title a {
    color: #333;
    text-decoration: none;
}

.entry-title a:hover {
    color: #007bff;
}

.entry-meta {
    font-size: 14px;
    color: #6c757d;
}

.entry-content {
    font-size: 16px;
    line-height: 1.8;
}

.entry-content p {
    margin-bottom: 1.5em;
}

.entry-content img {
    max-width: 100%;
    height: auto;
}

/* Footer */
.site-footer {
    background-color: #f8f9fa;
    padding: 30px 0;
    border-top: 1px solid #e9ecef;
    margin-top: 40px;
}

.site-info {
    text-align: center;
    font-size: 14px;
    color: #6c757d;
}

/* Sidebar */
.sidebar {
    margin-top: 40px;
}

.widget {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 5px;
}

.widget-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.widget ul {
    list-style: none;
}

.widget ul li {
    padding: 5px 0;
}

.widget a {
    color: #495057;
    text-decoration: none;
}

.widget a:hover {
    color: #007bff;
}

/* Responsive */
@media (max-width: 767px) {
    .site-title {
        font-size: 24px;
    }
    
    .entry-title {
        font-size: 24px;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 10px;
    }
}


