/*
Theme Name:   FeatherWP
Theme URI:    https://example.com/
Author:       Robby Singh
Author URI:   https://www.google.com
Description:  A fast, responsive, and highly customizable theme with advanced font and color options.
Version:      1.5.2
License:      GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
Tags:         custom-logo, full-width-template, responsive-layout, theme-options, custom-colors, custom-menu
Text Domain:  featherwp
*/

/* --- CSS Variables for Theme Customization --- */
:root {
    /* Default Body Styles */
    --body-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --body-font-size: 16px;
    --body-text-color: #333333;

    /* Default Heading Styles */
    --heading-font-family: 'Segoe UI', sans-serif;
    --heading-text-color: #111111;

    /* Default Menu Styles */
    --menu-font-family: 'Verdana', sans-serif;
    --menu-font-size: 15px;
    --menu-text-color: #222222;
    --menu-hover-color: #0073aa;
}


/* --- Basic Reset & Full-Width Layout --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font-family);
    font-size: var(--body-font-size);
    color: var(--body-text-color);
    line-height: 1.7;
    background-color: #fff;
}

/* --- Headings --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font-family);
    color: var(--heading-text-color);
    margin-bottom: 0.5em;
    line-height: 1.3;
}

/* --- Responsive Images --- */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Container & Layout --- */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* --- Header Styling --- */
.site-header {
    padding: 10px 0; /* Reduced padding */
    border-bottom: 1px solid #eee;
    background-color: #fff;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.custom-logo-link img {
    max-height: 35px; /* Reduced logo height */
}

.site-title a {
    text-decoration: none;
    font-size: 1.5em; /* Reduced font size */
    font-weight: bold;
    color: var(--heading-text-color); /* Use heading color for site title */
}

/* --- Navigation Menu Styling --- */
.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.main-navigation li {
    margin-left: 20px;
}

.main-navigation a {
    font-family: var(--menu-font-family);
    font-size: var(--menu-font-size);
    color: var(--menu-text-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a {
    color: var(--menu-hover-color);
}


/* --- Main Content --- */
.site-content {
    padding: 40px 0;
}

.entry-title a {
    color: var(--heading-text-color);
    text-decoration: none;
}
.entry-title a:hover {
    text-decoration: underline;
}

/* --- Footer Styling --- */
.site-footer {
    padding: 20px 0;
    border-top: 1px solid #eee;
    background-color: #f9f9f9;
    text-align: center;
    color: #666;
    overflow: hidden; /* Prevent horizontal scroll on small screens */
}

.site-footer .site-info {
    font-size: 12px; /* Set font size to 12px */
    white-space: nowrap; /* Prevent text from wrapping */
    margin: 0 auto;
    padding: 0 15px;
    line-height: 1.5;
}
