.transparent-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 10;
  font-family: "Georgia", serif;

  background: rgba(0, 0, 0, 0.3);
}

.traverse {
  height: 2svh;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 9999;
  a {
    text-decoration: none;
    color: white;
  }
}

.traverse .fa-solid:hover {
  color: tomato;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
}

.main-nav {
  display: flex;
  gap: 2rem;
  padding-right: 13rem;
}

.header-arrow .next-arrow {
  font-size: 1.25rem;
  color: white;
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border: 1px solid white;
  border-radius: 0.25rem;
  transition: background 0.3s ease, color 0.3s ease;
}

.header-arrow .next-arrow:hover {
  background: white;
  color: #000;
}

.logo {
  color: white;
  font-size: 1.5rem;
  margin: 0;
  font-weight: bold;
}

.main-nav a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
}

.car-container {
  position: relative;
  width: 100%;
  height: 100vh;
  background: #000;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

.car-hero-bg {
  position: absolute;
  top: 0;
  width: 100%;
  height: 60vh;
  background: url("../img/bgroad.png") center center / cover no-repeat;
  z-index: 0;
  transition: background-image 0.3s ease-in-out;
}

.car-image {
  position: absolute;
  bottom: 9rem;
  left: 50%;
  transform: translateX(-50%);
  max-width: 70rem;
  width: 90%;
  z-index: 2;
  transition: opacity 0.3s ease-in-out;
}

.car-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: #fff;
  padding: 9rem 0 3.75rem;
  border-top-left-radius: 2.5rem;
  border-top-right-radius: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  transition: opacity 0.3s ease-in-out;
}

.car-info h1 {
  margin-bottom: 1.25rem;
  font-size: 2.25rem;
  color: #222;
}

.car-stats {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 1.25rem;
}

.stat-item {
  text-align: center;
}

.stat-item .label {
  display: block;
  font-size: 1.2rem;
  color: #666;
}

.stat-item .value {
  font-size: 2rem;
  font-weight: bold;
  color: #000;
}

.btn {
  background: #000;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 0.125rem 0.3125rem rgba(0, 0, 0, 0.2);
  clip-path: polygon(15% 0%, 100% 0%, 100% 85%, 85% 100%, 0% 100%, 0% 15%);
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 4rem;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 3;
  user-select: none;
}

.arrow.left {
  left: 18rem;
  color: #000;
}

.arrow.right {
  right: 18rem;
  color: #000;
}

.fade-out {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

/* Footer Styles */
.simple-footer {
  background: #222;
  color: white;
  padding: 2rem 0;
  text-align: center;
  font-family: "Courier New", monospace;
}

.footer-content {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
}