body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0d0d0d;
  color: #fff;
}

/* Hero Section */
/* Hero Slideshow Fixed Background */
  .hero {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
  }
  .hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }
  .hero-slide.active { opacity: 1; }
  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1;
  }


/* Navbar Toggle (for mobile) */
.menu-toggle {
  display: none;
  cursor: pointer;
  color: #fff;
  font-size: 24px;
}

@media (max-width: 768px) {
  .navbar ul {
    display: none;
    flex-direction: column;
    background: #111;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 10px;
  }
  .navbar ul.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
}

.car-table-container {
  position: relative;
  z-index: 5; /* above hero */
  margin-top: calc(70vh + 20px); /* start after hero */
  padding: 20px;
  width: 95%;
  max-width: 1100px;
  background: rgba(26,26,26,0.9); /* semi-transparent for readability */
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
  overflow-x: auto;
}

/* Car List Center */
  .car-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 10px;
  }
  .car-card {
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid #e50914;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.5);
    padding: 20px;
    width: 300px;
    text-align: center;
    color: #fff;
    transition: transform 0.3s ease;
  }
  .car-card:hover { transform: translateY(-5px); }

table {
  width: 100%;
  border-collapse: collapse;
  color: #fff;
}

thead {
  background: var(--red-dark);
  position: sticky;
  top: 70px; /* just below fixed header height */
  z-index: 25; /* stay above car rows */
}

th, td {
  padding: 10px;
  text-align: center;
  border-bottom: 1px solid #333;
  font-size: 14px;
}

th {
  color: #fff;
  font-weight: 600;
}

tr:hover {
  background: rgba(255,255,255,0.05);
}

/* Page Content on top */
  .content {
    position: relative;
    z-index: 2;
    padding-top: 120px;
    min-height: 100vh;
    color: #fff;
  }
  
  /* Heading */
  .content h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #fff;
  }