body {
  background-image: url("assets/home.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  backdrop-filter: blur(4px);
  background-color: #2b2b2b;
  margin: 0;
  padding: 0;
  font-family: Helvetica, Arial, sans-serif;
}

/* === TITLE === */
.auto {
  color: #f0f0f0;
  text-align: center;
  font-size: 3em;
  font-weight: 800;
  letter-spacing: 3px;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
  margin-top: 30px;
}

/* === NAVIGATION === */
.home, .contact, .about {
  display: inline-block;
  margin: 20px 40px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.3em;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 25px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: all 0.3s ease-in-out;
}

.home:hover, .contact:hover, .about:hover {
  background: rgba(255, 0, 0, 0.5);
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4);
}

/* === GLASS BUTTON STYLE (Universal for all buttons and links) === */
button, 
a.button {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-size: 1em;
  font-weight: bold;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

button:hover,
a.button:hover {
  background: rgba(255, 0, 0, 0.5);
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4);
}

/* === GLASS BOX INTRO === */
.glassbox1 {
  width: 400px;
  padding: 25px;
  background-color: rgba(255, 255, 255, 0.068);
  backdrop-filter: blur(15px);
  border-radius: 45px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.3);
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  margin: 60px;
  text-align: center;
}

/* === SLOGAN TEXT === */
.got {
  font-size: 24px;
  font-weight: 500;
  color: #e3e3e3;
  text-align: center;
  margin-top: 20px;
  letter-spacing: 1px;
}

/* === IMAGE STYLING === */
.hellcat, .benz, .slide3 {
  border-radius: 45px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  width: 500px;
  height: auto;
  margin: 40px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.hellcat:hover, .benz:hover, .slide3:hover {
  transform: scale(1.40);
  opacity: 0.80;
}

/* === PICKUP SECTION === */
.pickup {
  width: 400px;
  padding: 25px;
  background-color: rgba(20, 20, 20, 0.3);
  border-radius: 45px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: #f2f2f2;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.2);
  position: absolute;
  top: 280px;
  right: 50px;
}

/* === MOTIVATIONAL GLASS SECTION === */
.motivation-glass {
  width: 80%;
  margin: 50px auto;
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 45px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  color: #ffffff;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.5px;
  animation: fadeInText 2s ease-in-out forwards;
}

/* Fade-in animation */
@keyframes fadeInText {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* === BUY RIDE BUTTON === */
.buyride {
  display: inline-block;
  margin-top: 60px;
  font-size: 1.2em;
  color: white;
  background: rgba(255, 255, 255, 0.12);
  padding: 12px 40px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: all 0.3s ease-in-out;
}

.buyride:hover {
  background: rgba(255, 0, 0, 0.5);
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4);
}

/* === GENERAL IMAGE FIX === */
img {
  max-width: 100%;
  height: auto;
}




.automark-footer {
background: #111;
color: #ddd;
padding: 40px 0;
font-family: Arial, sans-serif;
}


.footer-container {
width: 85%;
margin: auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
gap: 30px;
}


.footer-section h3,
.footer-section h4 {
color: #fff;
margin-bottom: 15px;
}


.footer-section p {
line-height: 1.6;
}


.footer-section ul {
list-style: none;
padding: 0;
}


.footer-section ul li {
margin: 8px 0;
}


.footer-section ul li a {
color: #bbb;
text-decoration: none;
transition: 0.3s;
}


.footer-section ul li a:hover {
color: #fff;
}


.social-links a {
display: inline-block;
margin-right: 10px;
color: #bbb;
text-decoration: none;
transition: 0.3s;
}


.social-links a:hover {
color: #fff;
}


.footer-bottom {
text-align: center;
padding-top: 20px;
margin-top: 30px;
border-top: 1px solid #333;
color: #888;
}