/*
Theme Name: Thobe Tailor
Author: Gemini
Description: A clean, professional theme for a Thobe Tailor business.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: thobetailor
*/

:root {
    --primary-color: #2c3e50; /* Dark Blue/Charcoal */
    --secondary-color: #c0a16b; /* Gold/Tan Accent */
    --background-color: #fdfdfd;
    --text-color: #333;
    --heading-font: 'Merriweather', serif;
    --body-font: 'Lato', sans-serif;
}

body {
    font-family: var(--body-font);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.7;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
.site-header {
    background-color: var(--primary-color);
    padding: 20px 0;
    color: white;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title a {
    color: white;
    text-decoration: none;
    font-family: var(--heading-font);
    font-size: 28px;
    font-weight: bold;
}

.main-navigation ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 20px;
}

.main-navigation a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    padding: 5px 10px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
}

.main-navigation a:hover,
.main-navigation .current-menu-item a {
    border-color: var(--secondary-color);
}


/* Main Content */
.site-content {
    padding: 40px 0;
}

article {
    background-color: white;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid #eee;
    border-radius: 5px;
}

article h2.entry-title {
    font-family: var(--heading-font);
    margin-top: 0;
}

article h2.entry-title a {
    text-decoration: none;
    color: var(--primary-color);
}

article h2.entry-title a:hover {
    color: var(--secondary-color);
}

.entry-content a {
    color: var(--secondary-color);
}

/* Footer */
.site-footer {
    background-color: var(--primary-color);
    color: white;
    padding: 30px 0;
    text-align: center;
    margin-top: 40px;
}
