@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500&display=swap');

/* Base Layout */
body {
  background: linear-gradient(145deg, #0d0d0d, #1a1a1a);
  color: #f0f0f0;
  font-family: 'Orbitron', sans-serif;
  margin: 0;
  padding: 20px;
}

h1 {
  text-align: center;
  font-size: 40px;
  color: #7FFFD4;
  margin-bottom: 30px;
  text-shadow: 0 0 10px rgba(127, 255, 212, 0.6);
}

/* Grid Layout */
.vehicle-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.vehicle-card {
  width: 280px;
  height: 460px;
  overflow: hidden;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(32, 32, 32, 0.85);
  border: 1px solid rgba(0, 255, 180, 0.2);
  box-shadow: 0 4px 30px rgba(0, 255, 180, 0.1);
}

.vehicle-card img {
  width: 100%;
  height: auto;
  transform: scale(3);
  transform-origin: center;
}


.vehicle-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(0, 255, 180, 0.6);
}

/* Optional: Link Wrapper */
.vehicle-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* Footer */
.footer {
  margin-top: 60px;
  padding: 30px 20px;
  text-align: center;
  font-size: 14px;
  background: rgba(0, 255, 180, 0.05);
  border-top: 1px solid rgba(0, 255, 180, 0.1);
  border-radius: 20px 20px 0 0;
  color: #7FFFD4;
  box-shadow: 0 -2px 10px rgba(0, 255, 180, 0.1);
}

.footer a {
  color: #7FFFD4;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.footer a:hover {
  color: #ffffff;
  text-shadow: 0 0 5px rgba(127, 255, 212, 0.8);
}


