/* --- 0. General Reset and Variables --- */
:root {
    --color-primary: #FF5722; /* Burnt Orange/Red for CTAs */
    --color-secondary: #004D40; /* Dark Forest Green for accents */
    --color-dark: #212121; /* Charcoal Gray/Black for text/background */
    --color-light: #F5F5F5; /* Off-White/Chrome */
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

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

body {
    font-family: var(--font-body);
    line-height: 1.6;
    background-color: var(--color-light);
    color: var(--color-dark);
}

a {
    text-decoration: none;
    color: var(--color-primary);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    line-height: 1.1;
}

section {
    padding: 40px 5%;
    text-align: center;
}

/* --- 1. Hero Section Styling --- */
.hero {
    background: 
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), /* Dark overlay for text contrast */
        url('hero-ohio-road.jpg') no-repeat center center/cover; /* Replace with your image */
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-light);
    padding: 0 5%;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 6em;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 5px;
    /* Optional: Add a subtle text shadow for 'chrome' effect */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.hero h2 {
    font-size: 1.8em;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.1em;
    margin-bottom: 30px;
}

.center-image {
    display: block; /* Images are inline by default, convert to block */
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
}


/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
    border: none;
}

.primary-cta {
    background-color: var(--color-primary);
    color: var(--color-light);
}

.primary-cta:hover {
    background-color: #E64A19; /* Slightly darker orange */
}

.secondary-cta {
    background-color: var(--color-dark);
    color: var(--color-light);
}

.secondary-cta:hover {
    background-color: var(--color-secondary);
}

/* --- 2. Region Section Styling --- */
.regions-section {
    background-color: var(--color-dark);
    color: var(--color-light);
}

.regions-section h3 {
    font-size: 2.2em;
    margin-bottom: 30px;
    color: var(--color-light);
}

.regions-grid {
    display: grid;
    /* 2 columns on desktop */
    grid-template-columns: repeat(2, 1fr); 
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.region-card {
    height: 300px; /* Uniform height for cards */
    display: flex;
    align-items: flex-end; /* Align content to the bottom */
    padding: 20px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Base background image placeholders */
.northwest { background: url('nw-ohio.jpg') no-repeat center center/cover; }
.northeast { background: url('ne-ohio.jpg') no-repeat center center/cover; }
.southeast { background: url('se-ohio.jpg') no-repeat center center/cover; }
.southwest { background: url('sw-ohio.jpg') no-repeat center center/cover; }
/* IMPORTANT: Replace the URLs above with your actual regional images! */

.card-content {
    background-color: rgba(0, 0, 0, 0.75); /* Dark overlay for text contrast */
    color: var(--color-light);
    padding: 15px;
    width: 100%;
    border-radius: 5px;
    text-align: left;
    transition: background-color 0.3s ease;
}

.region-card:hover .card-content {
    background-color: rgba(0, 0, 0, 0.9);
}

.card-content h4 {
    margin-bottom: 5px;
    font-size: 1.4em;
    color: var(--color-primary);
}

.card-content p {
    font-size: 0.9em;
    margin-bottom: 10px;
}

/* --- 3. Value Proposition Styling --- */
.value-prop {
    background-color: var(--color-light);
    padding: 60px 5%;
}

.value-prop h3 {
    color: var(--color-dark);
    margin-bottom: 40px;
    font-size: 2em;
}

.prop-list {
    display: flex;
    justify-content: space-around;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
}

.prop-list p {
    flex-basis: 30%; /* Take up about 30% width for three columns */
    padding: 15px;
    background-color: #E0E0E0;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 1.1em;
}


/* --- 4. Final CTA/Footer Styling --- */
.final-cta {
    background-color: var(--color-secondary);
    color: var(--color-light);
    padding: 30px 5%;
}

.final-cta p {
    font-size: 1.3em;
    margin-bottom: 15px;
}


/* --- Responsive Design for Mobile --- */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3.5em; /* Smaller on mobile */
    }

    .hero h2 {
        font-size: 1.3em;
    }
    
    .regions-grid {
        /* Single column on mobile */
        grid-template-columns: 1fr; 
    }

    .region-card {
        height: 250px;
    }
    
    .prop-list p {
        flex-basis: 100%; /* Full width on mobile */
    }
}
