/* Mihanz Main Theme Stylesheet */

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #f8f9fa;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e9ecef;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 999;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.site-title a {
    text-decoration: none;
    color: #111111;
    font-size: 24px;
    font-weight: 700;
}

.site-description {
    font-size: 13px;
    color: #666666;
    margin: 0;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    text-decoration: none;
    color: #333333;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease;
}

.main-navigation a:hover {
    color: #0073aa;
}

/* Main Content Styles */
.site-main {
    padding: 40px 0;
}

.mihanz-post-single {
    background: #ffffff;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

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

.entry-meta {
    font-size: 14px;
    color: #777777;
    margin: 10px 0 20px;
}

/* Footer Styles */
.site-footer {
    background: #111111;
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}