body.landing-page {
  background-color: #151515;
  color: white;
}

.landing-page nav.nav-bar {
  border-bottom: none;
  position: absolute;
}

.landing-page nav.nav-bar .nav-bar-right {
  gap: 25px;
}

.landing-page nav.nav-bar .landing-links-web {
  display: flex;
  flex-direction: row;
  gap: 25px;
}

.page-link {
  color: white;
  opacity: 0.8;
}

.hero-section {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../images/landing-page/background.svg");
  background-position: center;
  font-weight: 300;
}

.hero-section .hero-section-detail {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.hero-section .hero-section-heading {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
  width: 100%;
}

.hero-section .hero-section-tagline {
  font-size: 0.8rem;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
  width: 100%;
}

.hero-section .dealer-name-container {
  display: flex;
  flex-direction: row;
  margin-top: 2rem;
  border: 1px solid white;
  background-color: rgba(1, 1, 1, 0.5);
}

.website-name {
  padding: 15px 15px;
  border-right: 1px solid white;
  background-color: rgba(255, 255, 255, 0.4);
}

.dealer-name-textbox {
  color: white;
  padding: 15px 15px;
  background-color: rgba(1, 1, 1, 0.5);
  outline: none;
}

.go-to-dealer-btn {
  padding: 10px 10px;
}

.home-page-section {
  padding: 4rem 4rem;
}

.home-page-section .section-heading {
  text-align: center;
  font-size: 2rem;
}

.home-page-section .section-tagline {
  text-align: center;
  font-weight:300;
}

.feature-item {
  border: 1px solid lightgrey;
  width: 100%;
  border-radius: 8px;
  padding: 20px 15px;
  flex: 1;
}

/* .feature-item-icon {
} */

.feature-item-heading {
  font-weight: 600;
  font-size: 1.2rem;
  margin-top: 20px;
}

.feature-item-tagline {
  margin-top: 20px;
  font-weight:300;
}

.dealer-location-info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.dealer-location-heading {
  font-size: 1.5rem;
  font-weight: 600;
}

.dealer-location-address {
  font-size: 0.9rem;
  font-weight: 300;
}

.dealer-location-phoneNo {
  text-decoration: underline;
  font-weight: 300;
}

.dealer-location-get-direction-btn {
  display: flex;
  flex-direction: row;
  width: fit-content;
  justify-content: center;
  align-items: center;
  border: 1px solid lightgray;
  padding: 5px 5px;
  gap: 10px;
}

.dealer-location-get-direction-btn span {
  white-space: nowrap;
}

.contact-us-info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.contact-us-heading {
  font-size: 1.5rem;
  font-weight: 600;
}

.contact-us-address {
  font-size: 0.9rem;
  font-weight: 300;
}

.contact-us-phoneNo {
  text-decoration: underline;
  font-weight:300;
}

.landing-page .footer {
  padding: 3rem 4rem;
}

.footer-heading {
  font-size: 1.5rem;
  font-family: Inter;
  font-weight: 700;
}

.footer-item {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-feature-settings: 'cv09' on, 'ss11' on, 'calt' off, 'liga' off;
  color: #FFFFFF;
  opacity: 0.8;
}

.landing-links-mobile {
  display: none;
}

.hamburger-menu-mobile {
  padding: 2px;
  cursor: pointer;
}

.close-menu-mobile {
  cursor: pointer;
  display: none;
  background-color: #252b37;
  padding: 3px;
  border: 1px solid lightgray;
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu-inner {
  position: absolute;
  top: 80px;
  left: 0px;
  width: 100%;
  padding: 1rem;
  background-color: rgba(1, 1, 1, 0.6);
  height: 100vh;
}

@media only screen and (max-width: 1000px) {
  .home-page-section {
    padding: 4rem 1rem;
  }

  .website-name {
    display: none;
  }

  .landing-links-web {
    display: none !important;
  }

  .landing-links-mobile {
    display: block !important;
  }

  .landing-page .footer {
    padding: 3rem 1rem;
  }
}
