/* Base Styles */
body {
    margin: 0;
    font-family: 'Orbitron', sans-serif;
    background-color: #fff;
    color: #333;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #111;
    color: #fff;
    text-align: center;
    padding: 1.2em 0;
    z-index: 1000;
    border-bottom: solid #ff0000 20px;
    box-shadow: #ff0000 0 0 20px;
}

.footer {
    background-color: #000;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
}

.footer-column h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.footer-column p {font-size: 1rem;}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin: 5px 0;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.footer-column ul li a i {
    font-size: 20px;
    color: #1877f2; /* Facebook blue */
}

.footer-column ul li a:hover {
    text-decoration: underline;
}

.footer-column iframe {
    border-radius: 15px;
    transition: box-shadow 0.3s ease;
    transition: transform 0.3s ease;
}

.footer-column iframe:hover {
    box-shadow: 0px 0px 20px #ff0000;
    transform: scale(1.05);
}


/* Navigation Bar */
#main-nav ul {
    font-size: 1.4rem;
    list-style: none;
    margin: 0;
    padding: 0.2em;
    display: flex;
    justify-content: center;
    background-color: #222;
    flex-wrap: wrap;
}

#main-nav ul li {
    margin: 0 15px;
    text-shadow: rgb(253, 224, 224) 1px 1px 5px;
}

#main-nav ul li a {
    text-decoration:solid;
    color: #fff;
    padding: 10px 15px;
    border-radius: 10px;
    transition: background-color 0.5s ease, transform 0.5s ease-in-out;
}

#main-nav ul li a:hover {
    text-shadow: rgb(253, 224, 224) 1px 1px 10px;
    background-color: #ff0000; /* Bright red for hover */
    box-shadow: #ff0000 0 0 20px;
    transition: box-shadow 0.1s ease-in-out;
    transform: scale(1.05);
}

/* Blocked Sections */
.block {
    padding: 20px 20px;
    text-align: center;
    color: #fff;
}

#featured-services {
    padding: 60px 20px;
    text-align: center;
    color: #fff;
    font-size: large;
    text-shadow: rgb(253, 224, 224) 0px 0px 5px;
}

#featured-services h2 {
    font-size: 3rem;
} 

@-webkit-keyframes slideshow {
    0% {background-image: url("../heropics/Z63_7590.JPG"); animation-delay: 1s;}
    50% {background-image: url("../heropics/Z63_7583.JPG"); animation-delay: 1s;}
    100% {background-image: url("../heropics/Z63_7589.JPG"); animation-delay: 1s;}
}

/* Hero Section */
#hero {
    padding-top: auto;
    border-bottom: solid #ff0000 20px;
    box-shadow: #ff0000 0 0 20px;
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    position: relative;
    min-height: 825px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slideshow 20s linear infinite;
}

#hero h1 {
    font-size: 2rem;
}
/*
@keyframes slideshow {
    0% {background-image: url("../heropics/Z63_7590.JPG");}
    50% {background-image: url("../heropics/Z63_7583.JPG");}
    100% {background-image: url("../heropics/Z63_7589.JPG");}  
}
*/

#hero .hero-content {
    background: rgba(0, 0, 0, 0.8);
    padding: 30px;
    border-radius: 5px;
    text-shadow: #fff 0px 0px 2px;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff0000; /* Bright red */
    color: #fff;
    text-decoration: none;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e60000;
}

@media screen and (max-width:900px){
    #hero {background: url("../heropics/Z63_7590.jpg") no-repeat center center/cover;}
    #hero .hero-content {transform: scale(0.82);}
}

/* Featured Services */
.services-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.service-item {
    flex: 1 1 300px;
    margin: 15px;
    background-color: #fff;
    border-radius: 10px;
    color: #000;
    padding: 15px;
    transition: box-shadow 0.3s ease;
    transition: transform 0.3s ease;
    max-width: 428px;
}

.service-item:hover {
    box-shadow: 0px 0px 20px #ff0000;
    transform: scale(1.05);
} 

.service-item img {
    object-fit: cover;
    width: 408px;
    height: 272px;
}

/* Testimonials */
.testimonial-container blockquote {
    font-style: italic;
    margin: 20px auto;
    max-width: 600px;
    position: relative;
    border-radius: 10px;
    background-color: #000;
    padding: 12px;
}

.testimonial-container blockquote:before {
    content: "“";
    font-size: 3em;
    position: absolute;
    left: -10px;
    top: -20px;
    color: #ff0000;
}

#dealer-logos {
    padding-top: 10px;
    text-shadow: rgb(253, 224, 224) 0px 0px 5px;
    font-size: 2rem;
}

/* Dealer Logos Scroller */
.logo-scroller {
    display: flex;
    overflow-x: auto;
    padding: 20px 10px;
}

.logo-scroller a {
    margin: 0 15px;
    flex: 0 0 auto;
    transition: transform 0.3s ease;
    align-items: center;
}

.logo-scroller a:hover {
    transform: scale(1.05);
    box-shadow: #ff0000 0 0 10px;
}

.logo-scroller img {
    height: 150px;
    max-height: 100%;
    width: 200px;
    max-width: 100%;
    object-fit: fill;
    border-radius: 5px;
    background-color: #ff0000;
}

#aftermarket-parts .block {
    padding: 20px 20px;
    text-align: center;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
} 

.oddblock {
    margin: 20px;
    display: block;
    justify-content: center;
    align-items: center;
    max-width: 350px;
}

.oddblock a {
    margin: 0 15px;
    flex: 00 0 auto;
    transition: transform 0.3s ease;
    align-items: center;
}

.oddblock img {
    height: 300px;
    width: 300px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
    background-color: #ff0000;
}

.oddblock img:hover {
    height: 300px;
    width: 300px;
    transform: scale(1.05);
    box-shadow: #ff0000 0 0 10px;
    border-radius: 10px;
    background-color: #ff0000;
}

#main-nav .fa-bars {
	display:none;
}

/* Responsive Design */
@media screen and (max-width: 900px) {
    .services-container {
        flex-direction: column;
        align-items: center;
	max-width: 100%;
    }
    .service-item img {
	max-width:250px;
	max-height:185px;
    }

    #main-nav {
	flex-direction:row;
	flex-wrap: wrap;
	margin-left:0;
	margin-right:0;}
    #main-nav ul {display: none;}
    #main-nav ul:last-child { width: 100%; flex-basis: 100%; background-color: #222;}
    #main-nav ul li {margin-bottom: 0; width: 90%; text-align:right ; padding:0.1rem 0;}
    #main-nav .fa-bars {display:block; color: white; font-size:1.4rem; align-items:center; padding: 0.2rem;}
}


#main-nav .scrolled {
    background-color: #000; /* Darken the nav when scrolled */
    transition: background-color 0.3s ease-in-out;
}

.promotions {
    text-align: center;
    padding: 10px 20px;
    background-color: #222;
    color: #fff;
    border-radius: 8px;
    margin: 30px auto;
    max-width: 1200px;
}

.promotions h3 {
    font-size: 2rem;
    color: #ff0000;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: bold;
    text-shadow: #ff0000 0 0 5px;
}

.promo-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.promo-container p {
    font-size: 1rem;
    color: #ff0000;
    margin-bottom: 20px;
    text-transform: uppercase;
    gap: 20px;
}

.promo-item {
    background-color: #111;
    border: 2px solid #f00;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.promoitem:hover {
    transform: scale(1.05);
}

.promo-item img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 10px;
}

.promo-item h4 {
    font-size:  1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.promo-item p {
    font-size:  1rem;
    margin-bottom: 10px;
}

form {
    background-color: #222;
    padding: 30px;
    border-radius: 10px;
    max-width: 600px;
    margin: 30px auto;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
}

form label {
    display: block;
    font-size: 1rem;
    font-weight: bold;
    color: #fc0;
    margin-bottom: 5px;
    text-transform: uppercase;
    text-align: left;
}

form input, form textarea, form select {
    width: 95%;
    font-size: 1rem;
    padding: 10px;
    border: 2px solid #ff0000;
    background-color: #111;
    color: #fff;
    border-radius: 5px;
    margin-bottom: 15px;
}

form input:focus {
    border-color: #fc0;
    outline: none;
    box-shadow: 0px 0px 8px rgba(255, 204, 0, 0.7);
}

textarea {
    min-height: 100px;
    resize: vertical;
}

form button {
    width: 100%;
    font-size: 1.2rem;
    padding: 10px 20px;
    border: none;
    background-color: #ff0000;
    color: #fff;
    border-radius: 5px;
    margin-bottom: 15px;
    transition: all 0.3s ease-in-out;
}

.form-cont {
    width: 80% auto;
    border-radius: 10px;
    background-color: #ccc;
    padding: 60px 20px;
    text-align: center;
    margin-bottom: auto;
}

@media screen and (max-width: 900px) {
    .form-cont iframe {max-width: 90%; transform: scale(0.70);}
}

.build-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 30px;
}

.build-item {
    flex: 1 1 200px;
    margin: 15px;
    background-color: #fff;
    border-radius: 10px;
    color: #000;
    padding: 15px;
    transition: box-shadow 0.3s ease;
    transition: transform 0.3s ease;
    max-width: 650px;
    max-height: 540px;
    align-content: center;
}

.build-item:hover {
    box-shadow: 0px 0px 20px #ff0000;
    transform: scale(1.05);
}

.build-item img {
    min-width: 645px;
    min-height: 535px;
    max-width: 645px;
    max-height: 535px;
    object-fit: cover;
}

@media screen and (max-width: 900px) {
    .build-item img {
	max-width:260px;
	max-height:200px;
	min-width:260px;
	min-height:200px; 
    }
}

.float-container {
    position: fixed;
    bottom: 30px;
    right: 15px;
    width: 400px;
    background-color: #ff0000;
    color: white;
    padding: 0px 0;
    text-align: center;
    z-index: 1002;
    box-shadow: #ff0000 0 0 15px;
}

.floater {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 400px;
    margin: 0 auto;
    padding: 10px;
}

.floater a {
    text-decoration: none;
    text-shadow: #000 0 0 3px;
    color: #fff;
}

@media screen and (max-width:600px){
    .float-container{ 
	right:5px;
	max-width:300px;}
}

.close-btn {
    position: absolute;
    top: 0px;
    right: 10px;
    font-size: 30px;
    cursor: pointer;
} 

/* 
input[type=text] {
    align-items: center;
    width: 60%;
    flex-wrap: nowrap;
    padding: 12px 20px;
    box-sizing: border-box;
}

.form-cont h1 {
    text-align: center;
} */ 
