/*
Theme Name: Super Service Blog Theme
Theme URI: https://www.superservicecalibration.com/
Author: AI & Project Manager
Author URI: https://www.superservicecalibration.com/
Description: A custom, lightweight theme designed to perfectly match the Super Service ADAS Calibration static website for maximum branding consistency and speed.
Version: 1.0
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: custom, blog, fast, simple

*/

/* --- CORE BRAND COLORS & FONTS --- */
:root {
    --color-primary: #003366;    /* Deep Blue */
    --color-accent: #ff6600;     /* Safety Orange */
    --color-text: #333333;       /* Dark Gray Text */
    --color-light-bg: #f8f8f8;   /* Light Gray Background */
    --color-dark-footer: #111827; /* Very Dark Gray for Footer */
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--color-text);
    background-color: var(--color-light-bg);
}

/* --- HEADER STYLES --- */
.site-header {
    background-color: var(--color-primary);
    padding: 1.5rem 0;
}

.logo-size-fix {
    height: 6rem; /* Matches desktop logo height */
}

.header-contact-info a {
    color: white;
}

/* --- BLOG POST LISTING STYLES --- */
.post-card {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s;
}

.post-card:hover {
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

/* --- FOOTER STYLES (CRITICAL FIX) --- */
.site-footer {
    background-color: var(--color-dark-footer); 
    color: #ccc;
    padding: 3rem 0;
}