* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #d9d9d9;
}


.navbar {
  background-color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
}

.logo img {
  width: 100px;
  height: auto;
  margin-right: 20px;
}

.nav-links {
  display: flex;
  gap: 48px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 25px;
  font-weight: 600;
  position: relative;
  padding-bottom: 5px;
  transition: color 0.2s;
}

.nav-links a.active {
  position: relative;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #d4c185;
  border-radius: 2px;
}

.nav-links a:hover {
  color: #d4c185;
}


.car-listings-main {
  background: #d9d9d9;
  max-width: 100vw;
  margin: 0;
  padding: 40px 0 60px 0;
  min-height: 100vh;
}

.main-title {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 80px;
  font-weight: 700;
  margin: 30px 0 0 0;
  letter-spacing: 1.5px;
}

.main-subtext {
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 40px;
  font-style: italic;
  color: #32343b;
  font-weight: 400;
  margin: 0 0 44px 0;
}


.car-listing-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  margin: 55px auto 0 auto;
  max-width: 1200px;
  width: 100%;
}


.car-image img {
  width: 645px;
  height: 363px;
  object-fit: contain;
  border-radius: 16px;
  background: transparent;
  box-shadow: none;
  display: block;
}


.car-details-bubble {
  background: #d9d9d9;
  border-radius: 20px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.09);
  border: 2.5px solid #ececec;
  min-width: 500px;
  max-width: 800px;
  padding: 36px 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.car-details-title {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 13px;
}

.car-details-info {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #111;
  text-align: center;
  line-height: 1.35;
  margin-bottom: 17px;
}


.book-btn {
  display: inline-block;
  background: #232323;
  border-radius: 30px;
  color: #d4c185;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  padding: 10px 40px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.09);
  transition: background 0.2s;
  margin-top: 5px;
}
.book-btn:hover {
  background: #444;
  color: #e5c989;
}

.listing-summary {
  background: #d9d9d9;
  width: 100%;
  text-align: center;
  padding: 50px 0 10px 0;
}

.listing-summary-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.showing-title {
  font-family: 'Poppins', sans-serif;
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 8px;
  color: #181818;
}

.showing-subtext {
  font-family: 'Canva Sans', Arial, sans-serif;
  font-size: 25px;
  font-style: italic;
  color: #d4c185;
  margin-bottom: 36px;
}

.listing-car-img {
  width: 450px;
  height: 310px;
  object-fit: contain;
  margin: 0 auto 0 auto;
}


.footer-section {
  font-family: 'Poppins', sans-serif;
}


.footer {
  background-color: #000;
  color: #fff;
  padding: 40px 20px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
}


.footer-left {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: flex-start;
}

.footer-logo {
  width: 269px;
  height: 269px;
  object-fit: contain;
}

.footer-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 10px;
}

.footer-name {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-32 {
  width: 32px;
  height: 32px;
}

.info-text {
  font-family: 'Canva Sans', Arial, sans-serif;
  font-size: 22px;
}


.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 20px;
  gap: 10px;
}

.footer-links-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-link {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #ccc;
}


.footer-bottom {
  text-align: center;
  margin-top: 30px;
}

.footer-bottom p {
  font-size: 15px;
  font-weight: bold;
  font-family: 'Poppins', sans-serif;
}


@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left {
    flex-direction: column;
    align-items: center;
  }

  .footer-right {
    align-items: center;
    margin-top: 30px;
  }

  .footer-logo {
    width: 200px;
    height: auto;
  }

  .footer-name {
    font-size: 26px;
  }

  .info-text {
    font-size: 20px;
  }

  .footer-links-title {
    font-size: 18px;
  }
}

