/*
Theme Name: Stranded No More Roadside
Theme URI: https://example.com/
Author: Stranded No More Roadside
Author URI: https://example.com/
Description: SEO-focused roadside assistance theme for Stranded No More Roadside in Northeast Ohio with custom page templates for Home, Services, Service Area, About Us, and Contact.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: stranded-no-more-roadside
*/

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    color: #1f2933;
    background-color: #f5f7fa;
    line-height: 1.6;
}

a {
    color: #0b7285;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.site-header {
    background: #0b7285;
    color: #fff;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-branding img {
    max-height: 50px;
}

.site-title {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
}

.site-description {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 15px;
}

.main-navigation li {
    margin: 0;
}

.main-navigation a {
    color: #e3f8ff;
    font-weight: 500;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a {
    color: #fff;
    border-bottom: 2px solid #fff;
}

.site-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 15px 40px;
    background: #fff;
}

.hero {
    background: linear-gradient(135deg, #0b7285, #1864ab);
    color: #fff;
    padding: 40px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.hero h1 {
    margin-top: 0;
    font-size: 2rem;
}

.hero p {
    font-size: 1.05rem;
}

.hero .cta-buttons {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.button-primary,
.button-secondary {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 4px;
    font-weight: 600;
}

.button-primary {
    background: #ffe066;
    color: #212529;
}

.button-secondary {
    border: 1px solid #e3f8ff;
    color: #e3f8ff;
}

.section {
    margin-bottom: 30px;
}

.section h2 {
    border-left: 4px solid #0b7285;
    padding-left: 8px;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.feature-card {
    background: #f8fafc;
    border-radius: 6px;
    padding: 15px;
    border: 1px solid #e1e7ef;
}

.feature-card h3 {
    margin-top: 0;
    font-size: 1.1rem;
}

.site-footer {
    text-align: center;
    padding: 20px 10px;
    background: #0b7285;
    color: #e3f8ff;
    font-size: 0.9rem;
}

.site-footer a {
    color: #ffe066;
}

.contact-details p {
    margin: 3px 0;
}

@media (max-width: 768px) {
    .site-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .main-navigation ul {
        flex-wrap: wrap;
        row-gap: 8px;
    }

    .hero {
        padding: 25px 15px;
    }
}
