/*
Theme Name: Southeast Automotive Directory
Description: Automotive services directory theme
Version: 1.0
*/

:root {
    --primary: #e63946;
    --secondary: #1d3557;
    --accent: #f1faee;
    --dark: #14213d;
    --light: #f8f9fa;
    --text: #2b2d42;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    line-height: 1.6;
}

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

/* Header */
.site-header {
    background: var(--dark);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.site-branding {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-logo {
    background: var(--primary);
    color: white;
    padding: 0.75rem 1rem;
    font-weight: 800;
    font-size: 1.5rem;
    border-radius: 4px;
}

.site-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: white;
}

.site-tagline {
    font-size: 0.875rem;
    color: #a8dadc;
    margin: 0;
}

/* Navigation */
.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.main-navigation a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-section p {
    font-size: 1.125rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid white;
    margin-left: 1rem;
}

.cta-group {
    margin-top: 2rem;
}

/* Content Sections */
.content-section {
    padding: 4rem 0;
}

.content-section.gray-bg {
    background: var(--light);
}

.content-section h1 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.content-section h2 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 2rem;
}

.content-section h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.content-section p {
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Service Cards */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    border: 2px solid var(--light);
    border-radius: 8px;
    padding: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

.service-card h4 {
    color: var(--dark);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-card h4 a {
    color: var(--dark);
    text-decoration: none;
}

.service-card h4 a:hover {
    color: var(--primary);
}

.service-card p {
    color: var(--text);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.service-card span {
    display: inline-block;
    font-size: 0.875rem;
    color: #666;
    margin-right: 1rem;
}

.service-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    color: var(--dark);
    font-weight: 600;
}

/* Info Box */
.info-box {
    background: var(--accent);
    border-left: 4px solid var(--primary);
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 4px;
}

.info-box h3 {
    margin-top: 0;
    color: var(--dark);
}

/* Footer */
.site-footer {
    background: var(--dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #a8dadc;
    text-decoration: none;
    font-size: 0.9375rem;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    color: #a8dadc;
    font-size: 0.875rem;
}

.disclaimer {
    font-size: 0.8125rem;
    color: #8d99ae;
    margin-top: 0.5rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-navigation ul {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
    }
    
    .main-navigation li {
        margin: 0;
    }
    
    .main-navigation a {
        font-size: 0.875rem;
        padding: 0.25rem 0.5rem;
    }
    
    .hero-section h1 {
        font-size: 1.75rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .content-section h1 {
        font-size: 1.75rem;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .cta-button {
        display: block;
        margin: 0.5rem 0;
    }
    
    .cta-button.secondary {
        margin-left: 0;
    }
}
