:root {
  --main-clr: #1f1f1f;
  --sec-clr: #a16236;
  --accent-clr: rgb(218, 158, 158);
}

html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: var(--main-clr);
  line-height: 1.6;
}

.img-fluid {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0;
  margin: 0;
}
.intro {
  height: 100vh;
  background-size: cover;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 40em;
}
.navbar {
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(50px);
  border-bottom: 2px groove var(--sec-clr);
}
.navbar-toggler {
  color: var(--sec-clr);
}
.hero {
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(15px);
  border-bottom-right-radius: 5%;
  border-top-right-radius: 5%;
  margin-top: 5rem;
  color: rgb(182, 176, 176);
}
.hero h4 {
  letter-spacing: 1rem;
  color: var(--sec-clr);
}
.banner {
  width: 50%;
  writing-mode: vertical-lr;
  text-orientation: upright;
  color: rgb(182, 176, 176);
  font-weight: bolder;
  text-transform: uppercase;
  text-align: center;
  font-size: 3rem;
}
.slot {
  display: flex;
  border-bottom: 2px groove var(--sec-clr);
}
.slot-1 .content-area {
  background: url("../pics/ferrari.png");
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
}
.slot-1 img {
  width: 100%;
}
.slot-2 .content-area {
  background: url("../pics/ford.png");
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
}
.slot-3 .content-area {
  background: url("../pics/bg1.png");
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
}
.slot-4 .content-area {
  background: url("../pics/lotus.png");
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
}
.img-gallery h2 {
  text-align: center;
}
.images {
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: auto auto;
  grid-auto-rows: 15em;
  width: 100%;
  height: 100%;
}
.images img:first-child {
  grid-column: span 2;
  width: 100%;
}

.co-info h2 {
  text-align: center;
  position: relative;
  padding: 0.5rem 0;
}

.co-info h2::after {
  content: "";
  position: absolute;
  height: 0.3rem;
  border-radius: 0.3rem;
  background-color: var(--sec-clr);
  width: 20%;
  bottom: 0;
  top: 110%;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.co-info p {
  padding: 0.5rem 0;
}
.reviews {
  margin: 5rem auto;
  border-radius: 1rem;
  border: 1px solid var(--accent-clr);
  padding: 1.5rem;
}
.img-area {
  width: 40%;
  margin: auto;
}
.title {
  text-align: center;
  margin-block: 2rem;
}
.img-area .img-fluid {
  border-radius: 50%;
}
.social-links {
  margin: 1rem 0;
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.footer-text {
  color: var(--sec-clr);
}
