/*
Theme Name: Nuvazia Ltd
Theme URI: https://nuvazia.com
Author: Nuvazia Development Team
Description: A flexible, high-performance theme for Nuvazia Ltd.
Version: 1.0
Text Domain: nuvazia-ltd
*/

/* 1. Global Reset & Typography */
body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: #0056b3;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #00d1b2;
}

/* 2. Header & Navigation */
.site-header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-title a {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1a2a3a;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.main-navigation li {
    margin-left: 25px;
}

.main-navigation a {
    color: #555;
    font-weight: 500;
    font-size: 0.95rem;
}

/* 3. Content Area */
.nuvazia-article {
    background: #fff;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.entry-title {
    margin-top: 0;
    font-size: 2rem;
    color: #1a2a3a;
}

.post-thumbnail img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 20px 0;
}

.entry-content {
    font-size: 1.1rem;
    color: #444;
}

.entry-footer {
    font-size: 0.85rem;
    color: #888;
    margin-top: 20px;
}

/* 4. Sidebar Widgets */
.widget {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.widget-title {
    font-size: 1.2rem;
    border-bottom: 2px solid #00d1b2;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

/* 5. Footer Customization */
.site-footer {
    background: #1a2a3a !important; /* Overriding for dark mode feel */
}

.footer-menu {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.footer-menu a {
    color: #bdc3c7;
}

/* 6. Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
    }
    
    .main-navigation ul {
        flex-direction: column;
        padding-top: 20px;
    }
    
    .main-navigation li {
        margin: 10px 0;
    }
}