/*
Theme Name: Dealership Agents
Theme URI: https://dealershipagents.com
Author: Ryan
Author URI: https://dealershipagents.com
Description: Minimal WordPress theme for Dealership Agents website
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dealership-agents
*/

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

body {
    font-family: 'Archivo', sans-serif;
    background: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
}

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

/* Navigation */
nav {
    padding: 24px 0;
    border-bottom: 1px solid #e5e5e5;
}

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

.logo {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #1a1a1a;
}

.btn-primary {
    background: #1a1a1a;
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary:hover {
    background: #2a2a2a;
}

.btn-outline {
    background: transparent;
    color: #1a1a1a;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid #1a1a1a;
    transition: all 0.3s;
    cursor: pointer;
    display: inline-block;
}

.btn-outline:hover {
    background: #1a1a1a;
    color: #ffffff;
}

/* Hero Section */
.hero {
    padding: 120px 0;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: #f5f5f5;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 24px;
    color: #4a4a4a;
}

.hero h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero p {
    font-size: 20px;
    color: #4a4a4a;
    max-width: 700px;
    margin: 0 auto 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Feature Sections */
.feature-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    font-size: 14px;
    color: #4a4a4a;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-description {
    font-size: 18px;
    color: #4a4a4a;
    max-width: 700px;
    margin: 0 auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    padding: 40px;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    transition: border-color 0.3s;
}

.feature-card:hover {
    border-color: #1a1a1a;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.feature-card p {
    color: #4a4a4a;
    line-height: 1.7;
}

/* Two Column Section */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.two-column h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.two-column p {
    color: #4a4a4a;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
}

/* Stats Section */
.stats-section {
    background: #f9f9f9;
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    text-align: center;
}

.stat h3 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat p {
    color: #4a4a4a;
    font-size: 18px;
}

/* Testimonial */
.testimonial-section {
    padding: 100px 0;
    text-align: center;
}

.testimonial-quote {
    font-size: 40px;
    font-weight: 500;
    line-height: 1.4;
    max-width: 900px;
    margin: 0 auto 40px;
    letter-spacing: -0.5px;
}

.testimonial-author {
    color: #4a4a4a;
    font-size: 16px;
}

.testimonial-role {
    color: #7a7a7a;
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    text-align: center;
    background: #1a1a1a;
    color: #ffffff;
}

.cta-section h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
}

.cta-section p {
    font-size: 20px;
    color: #d0d0d0;
    margin-bottom: 40px;
}

.cta-section .btn-primary {
    background: #ffffff;
    color: #1a1a1a;
}

.cta-section .btn-primary:hover {
    background: #f0f0f0;
}

.cta-section .btn-outline {
    border-color: #ffffff;
    color: #ffffff;
}

.cta-section .btn-outline:hover {
    background: #ffffff;
    color: #1a1a1a;
}

/* Footer */
footer {
    padding: 60px 0 40px;
    border-top: 1px solid #e5e5e5;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-description {
    color: #4a4a4a;
    line-height: 1.7;
}

.footer-section h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #4a4a4a;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #1a1a1a;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid #e5e5e5;
    color: #7a7a7a;
    font-size: 14px;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 40px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .two-column {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .nav-links {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .testimonial-quote {
        font-size: 28px;
    }
}
