/*
 Theme Name:   Hueman Child - Sarcastic Dan
 Template:     hueman
 Description:  A child theme for Sarcastic Dan's blog with MSN-like design
 Version:      1.0
 Author:       Sarcastic Dan
 Text Domain:  hueman-child
*/
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
/* Global Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
/* Site Branding */
.site-branding {
    text-align: center;
    padding: 20px;
    background: #fff !important;
    border-bottom: 1px solid #ddd;
}
.site-title {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #003087;
    margin: 0;
}
.site-title a {
    text-decoration: none;
    color: inherit;
}
.site-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #666;
    margin-top: 5px;
}
/* Navigation Bar */
.nav-container {
    background-color: #12122c !important; /* Updated background color */
    padding: 10px 20px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
}
.nav-menu {
    flex-grow: 1;
    text-align: center;
}
.nav {
    display: inline-block;
    margin: 0;
    padding: 0;
}
.nav li {
    display: inline-block;
    margin: 0 15px;
}
.nav li a {
    color: #fff !important;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px;
    font-weight: 600;
}
.nav li a:hover {
    background-color: #171737 !important; /* Updated hover color */
    border-radius: 3px;
}
/* Dropdown Menu */
.nav li ul {
    display: none;
    position: absolute;
    background-color: #12122c !important; /* Match nav background */
    padding: 10px;
    min-width: 150px;
}
.nav li:hover > ul {
    display: block;
}
.nav li ul li {
    display: block;
    margin: 5px 0;
}
.nav li ul li a:hover {
    background-color: #171737 !important; /* Match hover color */
}
/* Hire Me CTA Button */
.nav li.hire-me-cta {
    margin-left: auto;
}
.btn {
    background-color: #0050c5 !important; /* Kept for contrast */
    color: #fff !important;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    transition: background-color 0.3s ease;
}
.btn:hover {
    background-color: #003087 !important; /* Kept for contrast */
}
/* Footer */
.site-footer {
    background-color: #12122c !important; /* Match nav */
    color: #fff;
    padding: 20px;
    text-align: center;
    margin-top: 20px;
}
.site-footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}
/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        padding: 10px;
    }
    .nav-menu {
        width: 100%;
        text-align: center;
    }
    .nav li {
        display: block;
        margin: 5px 0;
    }
    .nav li ul {
        position: relative;
        min-width: 100%;
    }
    .nav li.hire-me-cta {
        margin-left: 0;
        margin-top: 10px;
    }
}
.site-logo img {
    max-width: 200px !important;
    max-height: 100px !important; /* Adjust based on new height */
}
/* Logo and Navigation Bar (Existing, Adjusted) */
.site-logo {
    max-width: 200px;
    height: auto;
}
.site-title {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: #003087;
}
.site-title a {
    text-decoration: none;
    color: inherit;
}
.nav-container {
    background-color: #12122c !important;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
}
.nav-menu {
    flex-grow: 1;
    text-align: center;
}
.nav {
    display: inline-block;
    margin: 0;
    padding: 0;
}
.nav li {
    display: inline-block;
    margin: 0 15px;
}
.nav li a {
    color: #fff !important;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px;
    font-weight: 600;
}
.nav li a:hover {
    background-color: #171737 !important;
    border-radius: 3px;
}

/* Floating Hire Me Button */
.floating-hire-me {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #0050c5;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    z-index: 1001;
    transition: background-color 0.3s ease;
}
.floating-hire-me:hover {
    background-color: #003087;
}

/* Hide on Mobile */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        padding: 10px;
    }
    .nav-menu {
        width: 100%;
        text-align: center;
    }
    .nav li {
        display: block;
        margin: 5px 0;
    }
    .floating-hire-me {
        display: none; /* Hide on mobile, adjust if needed */
    }
}
/* Landing Page Grid */
.main-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* Three equal columns */
    gap: 20px;
    padding: 20px;
    margin-top: 60px; /* Space below fixed nav */
}

.latest-posts, .featured-posts, .ads-column {
    background: #fff;
    padding: 15px;
    border: 1px solid #ddd;
}

.post-card {
    margin-bottom: 15px;
}
.post-card img {
    max-width: 100%;
    height: auto;
}
.post-card h2 {
    font-size: 18px;
    margin: 10px 0;
}
.post-card p {
    font-size: 14px;
    color: #666;
}
.post-card .actions {
    margin-top: 10px;
}
.post-card .actions a {
    margin-right: 10px;
    color: #0050c5;
    text-decoration: none;
}
.post-card .actions a:hover {
    text-decoration: underline;
}

.featured-posts h2 {
    font-size: 20px;
    color: #003087;
}
.ads-column iframe
/*
 Theme Name:   Hueman Child
 Template:     hueman
 */
/*@import url("../hueman/style.css");

/* Existing Footer CSS from August 20 */
.footer {
    clear: both;
    width: 100%;
    position: relative;
    bottom: 0;
    margin-top: 20px;
}
.main {
    float: none;
    width: 70%;
    margin-right: 0;
}
.sidebar {
    float: right;
    width: 25%;
}

/* New CSS for Header Alignment */
.site-title a, .site-description {
    text-align: center;
    margin: 0 auto;
    display: block;
}
.site-header {
    text-align: center;
}