/* GLOBAL */
body {
    background: #0d0d0d;
    color: #f2f2f2;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

a {
    color: #ff3b3b;
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

/* HERO SECTION */
.hero {
    background: url('/images/car-dark-bg.jpg') center/cover no-repeat;
    padding: 120px 20px;
    text-align: center;
    position: relative;
}

    .hero::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.65);
    }

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero h2 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #ff3b3b;
    font-weight: 600;
}

/* CONTACT BOX */
.contact-box {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    margin: 40px auto;
    max-width: 700px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

    .contact-box p {
        font-size: 18px;
        margin: 10px 0;
    }

.contact-buttons {
    margin-top: 20px;
}

.btn-main {
    display: inline-block;
    padding: 14px 30px;
    background: #ff3b3b;
    color: #fff;
    border-radius: 6px;
    font-size: 18px;
    font-weight: bold;
    margin: 10px;
    transition: 0.2s;
}

    .btn-main:hover {
        background: #cc3232;
    }

/* MAP SECTION */
.map-section {
    margin: 40px auto;
    max-width: 600px;
    text-align: center;
}

    .map-section h3 {
        margin-bottom: 15px;
        font-size: 22px;
        font-weight: 600;
    }

.map-image {
    max-width: 100%;
    border-radius: 10px;
    border: 2px solid #242424;
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 26px;
    }

    .hero h2 {
        font-size: 18px;
    }
}

/* ---------- LAYOUT STYLES (HEADER + FOOTER) ---------- */

/* Sticky header */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 9999;
}

/* Dark header */
.dark-header {
    background: #111;
    padding: 18px 0;
    border-bottom: 1px solid #191919;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

/* Header container */
.header-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Site title / logo text */
.site-title {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ff3b3b;
    text-decoration: none;
}

    .site-title:hover {
        color: #ff5757;
    }

/* Footer styles */
.dark-footer {
    background: #111;
    color: #777;
    border-top: 1px solid #191919;
    padding: 20px 0;
    margin-top: 60px;
}

    .dark-footer .container {
        text-align: center;
        font-size: 14px;
    }
