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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background: #f4f4f4;
    color: #222;
}

header {
    background: #b30000;
    color: white;
    padding: 20px 0;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

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

nav a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-weight: bold;
}

.hero {
    background: url('../images/tow-truck.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 120px 20px;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}

.section {
    padding: 60px 0;
    background: white;
}

.section.alt {
    background: #ececec;
}

.feature-image {
    width: 100%;
    border-radius: 12px;
    margin-top: 25px;
}

.map-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    margin-top: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

.services-list {
    margin-top: 20px;
    padding-left: 20px;
}

footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 20px;
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }

    nav {
        margin-top: 10px;
    }

    .hero h2 {
        font-size: 2rem;
    }
}


.logo-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
}


.site-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    background: transparent !important;
    padding: 0;
    border-radius: 0;
}


.tagline {
    font-size: 0.9rem;
    opacity: 0.9;
}

header h1 {
    margin: 0;
    font-size: 2rem;
}

@media (max-width: 768px) {
    .logo-wrap {
        flex-direction: column;
        text-align: center;
    }

    
.site-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    background: transparent !important;
    padding: 0;
    border-radius: 0;
}

}



.site-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    background: transparent !important;
    padding: 0;
    border-radius: 0;
}


header {
    border-bottom: 3px solid #cc0000;
}


.logo-wrap {
    gap: 10px;
}

header h1 {
    font-size: 1.5rem;
    line-height: 1;
}

.tagline {
    font-size: 0.75rem;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .site-logo {
        width: 42px;
        height: 42px;
    }

    header h1 {
        font-size: 1.25rem;
    }
}


.hero {
    background:
        linear-gradient(rgba(0,0,0,0.52), rgba(0,0,0,0.52)),
        url('../images/dodge-journey-flatbed-tow.jpg') center/cover no-repeat;
}

.hero p {
    font-size: 1.25rem;
    max-width: 760px;
    margin: 0 auto 24px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
}

.btn-row {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 25px;
}

.btn {
    display: inline-block;
    background: #b30000;
    color: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}

.btn.secondary {
    background: #222;
}

.service-grid,
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 28px;
}

.service-card,
.gallery-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}

.service-card img,
.gallery-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.service-card-content,
.gallery-card-content {
    padding: 22px;
}

.service-card h3,
.gallery-card h3 {
    margin-bottom: 10px;
    color: #b30000;
}

.gallery-card p {
    font-size: 0.95rem;
}

.category-list {
    margin-top: 14px;
    padding-left: 20px;
}

.category-list li {
    margin-bottom: 8px;
}

.notice-strip {
    background: #111;
    color: #fff;
    padding: 18px 0;
    text-align: center;
    font-weight: bold;
}

.feature-image {
    max-height: 520px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .service-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .service-card img,
    .gallery-card img {
        height: 220px;
    }
}


.header-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.header-phone {
    color: #fff;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 1px;
    transition: opacity 0.2s ease;
}

.header-phone:hover {
    opacity: 0.85;
}

.branding {
    display: flex;
    flex-direction: column;
}

@media (max-width: 900px) {

    .header-contact {
        align-items: center;
        margin-top: 12px;
    }

    .header-phone {
        font-size: 1.2rem;
    }

    nav {
        text-align: center;
    }
}

footer a {
    color: #fff;
    text-decoration: underline;
}
