/* ---=== Google Font Import ===--- */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@700&family=Roboto:wght@400;700&display=swap');

/* ---=== Bold & Punchy Theme Variables (2025) ===--- */
:root {
    --primary-color: #FFD300; /* Electric Yellow */
    --background-color: #1a1a1a; /* Off-black/Dark Charcoal */
    --surface-color: #242424; /* Dark Grey */
    --text-color: #f5f5f5; /* Off-white */
    --muted-text-color: #a3a3a3; /* Light grey */
    --border-color: #404040; /* Mid grey */
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --border-radius: 4px;
    --transition-speed: 0.2s;
}

/* ---=== General Styles ===--- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--background-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: #ffffff;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    margin-bottom: 1.25rem;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
}

h1 { font-size: 4.5rem; }
h2 { font-size: 2.5rem; border-bottom: 2px solid var(--primary-color); display: inline-block; padding-bottom: 0.5rem; margin-bottom: 2.5rem; }
h3 { font-size: 1.5rem; }
p { margin-bottom: 1.5rem; max-width: 70ch; }
ul { list-style-position: inside; padding-left: 1rem; margin-bottom: 1.5rem; }
li { margin-bottom: 0.5rem; }

/* ---=== Header & Navigation ===--- */
.site-header {
    background-color: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: 1px;
}
.logo:hover {
    color: var(--primary-color);
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.main-nav a {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-color);
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    transition: all var(--transition-speed) ease;
}
.main-nav a:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}
.main-nav a.active {
    color: var(--primary-color);
}

/* ---=== Main Content Layout ===--- */
.main-content-area {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 80px 20px;
}

@media (min-width: 992px) {
    .main-content-area {
        grid-template-columns: minmax(0, 3fr) minmax(0, 1fr);
    }
}

/* ---=== Homepage Specifics ===--- */
.hero {
    text-align: left;
    padding: 2rem 0;
    margin-bottom: 4rem;
}
.hero h1 {
    margin-bottom: 1rem;
    line-height: 1.1;
    color: var(--primary-color);
}
.hero p {
    max-width: 60ch;
    color: var(--muted-text-color);
    font-size: 1.2rem;
}

.articles-grid h2 {
    text-align: left;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.card {
    background: var(--surface-color);
    border-radius: var(--border-radius);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    transition: transform var(--transition-speed) ease, border-color var(--transition-speed) ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.card h3 {
    margin-bottom: 0.75rem;
    color: var(--text-color);
}
.card p {
    flex-grow: 1;
    color: var(--muted-text-color);
    font-size: 1rem;
    line-height: 1.6;
}

.read-more {
    display: inline-block;
    background-color: var(--primary-color);
    color: #1a1a1a;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-family: var(--font-heading);
    font-weight: 700;
    text-align: center;
    transition: background-color var(--transition-speed) ease, color var(--transition-speed) ease;
    margin-top: 1.5rem;
    align-self: flex-start;
}
.read-more:hover {
    background-color: #ffffff;
    color: #1a1a1a;
}

/* ---=== Sidebar ===--- */
.sidebar .widget {
    background: var(--surface-color);
    padding: 1.75rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

.sidebar h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.sidebar ul {
    list-style: none;
    padding-left: 0;
}

.sidebar ul li {
    margin-bottom: 0.75rem;
    font-size: 1rem;
}
.sidebar ul li a {
    font-weight: 400;
    color: var(--text-color);
}
.sidebar ul li a:hover {
    text-decoration: underline;
    color: var(--primary-color);
}

.cta-widget p {
    font-size: 1rem;
    color: var(--muted-text-color);
}

.cta-button {
    display: block;
    background-color: var(--primary-color);
    color: #1a1a1a;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-family: var(--font-heading);
    font-weight: 700;
    text-align: center;
    transition: background-color var(--transition-speed) ease, color var(--transition-speed) ease;
    margin-top: 1rem;
    text-transform: uppercase;
}
.cta-button:hover {
    background-color: #ffffff;
    color: #1a1a1a;
}

/* ---=== Full Article & Page Styles ===--- */
.full-article, .page-content {
    background: transparent;
    padding: 0;
}

.article-header {
    margin-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
}
.article-header h1 {
    font-size: 3.5rem;
}
.article-meta {
    font-size: 0.9rem;
    color: var(--muted-text-color);
    margin-top: 1rem;
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
}
.intro {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--muted-text-color);
    margin-bottom: 2.5rem;
}

.full-article h2, .page-content h2 {
    margin-top: 3rem;
    text-align: left;
}
.full-article h3, .page-content h3 {
    color: var(--primary-color);
}

.tip-box {
    background-color: var(--surface-color);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2.5rem 0;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}
.tip-box p { margin: 0; }
.tip-box strong {
    color: var(--primary-color);
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 1.1rem;
    margin-right: 0.5rem;
}

.cta-box {
    text-align: center;
    padding: 2.5rem;
    margin-top: 3rem;
    background-color: var(--surface-color);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}
.contact-email { font-size: 1.2rem; }
.offer-list li { padding: 0.5rem 0; }

/* ---=== Footer ===--- */
.site-footer {
    background-color: #000000;
    color: var(--muted-text-color);
    padding: 3rem 0;
    margin-top: 60px;
    text-align: center;
    border-top: 1px solid var(--border-color);
}
.site-footer a {
    color: var(--muted-text-color);
    margin: 0 10px;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 0.9rem;
}
.site-footer a:hover {
    color: var(--primary-color);
}
.footer-links {
    margin-bottom: 1.5rem;
}
.site-footer p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ---=== Media Queries (Responsive Design) ===--- */
@media (max-width: 768px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2rem; }
    .article-header h1 { font-size: 2.5rem; }

    .main-content-area {
        padding: 40px 20px;
        grid-template-columns: 1fr;
    }
    
    .site-header .container {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.8rem; }
    .article-header h1 { font-size: 2.2rem; }
    
    .grid-container {
        grid-template-columns: 1fr;
    }
}