@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@1,300&family=Poppins:wght@300&family=Ubuntu:wght@500&display=swap");

:root {
  --primary-color: #f34e3a;
  --secondary-color: #29282d;
  --tri-color: #9c9c9c;
  --lamp-black: #231f20;
}
/* BASE STYLING */

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: Montserrat;
}

a {
  text-decoration: none;
  color: #000;
}

/* NAVBAR */
.page-navbar {
  background-color: var(--secondary-color);
  padding: 20px;
  box-shadow: 2px rgba(0, 0, 0, 0.2);
}

.navbar-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.navbar-item {
  color: white;
  margin: 10px 15px;
}

.navbar-item:hover {
  border-bottom: 1px solid var(--tri-color);
  transition: 500ms all;
}

.brand-logo {
  color: var(--primary-color);
  font-family: Ubuntu;
  font-size: 1.6em;
}

.navbar-trigger {
  color: white;
  display: none;
}

/* SideNav */
.sidenav-items {
  width: 0;
  height: 100vh;
  position: fixed;
  left: -100vh;
  top: 0;
  background-color: var(--lamp-black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: all 500ms;
}

.sidenav-item:hover {
  background-color: #fff;
  transition: all 500ms;
}

.close-btn {
  color: var(--primary-color);
  font-size: 1.8em;
  transition: all 500ms;
  padding: 10px;
}

.sidenav-item {
  color: var(--tri-color);
  margin: 15px 0px;
  padding: 10px;
  transition: all 500ms;
}

.close-btn:hover {
  background-color: #fff;
  transition: all 500ms;
}

/* Hero Section */

.hero-img {
  max-width: 50vw;
  max-height: 50vh;
  pointer-events: none;
  user-select: none;
}

.hero-section {
  background-color: #000;
  padding: 30px;
  height: 80vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.hero-info-title {
  color: var(--primary-color);
  font-family: Ubuntu;
  font-size: 2em;
  font-weight: bold;
  margin: 15px 0px;
}

.hero-info-text {
  color: var(--tri-color);
  line-height: 1.6em;
  max-width: 500px;
}

/* Services Section */

.services-section {
  background-color: #231f20;
  padding: 30px;
}

.service-info {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.service-info-title {
  color: white;
  font-family: Ubuntu, sans-serif;
  font-size: 1.8em;
  margin: 10px 0px;
  font-weight: bold;
}

.service-info-text {
  color: var(--tri-color);
  font-family: Poppins;
  max-width: 600px;
  font-size: 1.2em;
}

.service-items {
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 50vh;
}

.service-item {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 15px;
}

.service-icon {
  color: var(--primary-color);
  font-size: 2em;
}

.service-item-title {
  font-family: Poppins;
  color: var(--tri-color);
  font-weight: bold;
}

.service-item-info {
  line-height: 1.6em;
  color: white;
  max-width: 400px;
  margin: 0px 15px;
}

/* RESULTS SECTION */
.results-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--secondary-color);
}

.results-img {
  max-width: 50vw;
  max-height: 50vh;
  pointer-events: none;
  user-select: none;
}

.results-info-wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 50%;
  gap: 15px;
}

.results-heading {
  font-family: Ubuntu;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.5em;
}

.results-info {
  line-height: 1.6em;
  color: var(--tri-color);
}

/* TESTAMONAILS */
.quotes-section {
  background-color: var(--lamp-black);
  padding: 30px;
}

.quote-section-heading {
  font-family: Ubuntu;
  color: #fff;
  font-size: 1.8em;
  font-weight: bold;
  margin: 20px 0px;
}

.quote-img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  pointer-events: none;
  user-select: none;
}

.quote-items {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.quote-item {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  background-color: var(--secondary-color);
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
  padding: 20px;
  margin: 0px 15px;
  transition: all 500ms;
}

.quote-item:hover {
  box-shadow: var(--primary-color) 0px 4px 12px;
  transition: all 500ms;
}

.quote {
  color: var(--tri-color);
  line-height: 1.6em;
}

.quote-item-icon {
  color: var(--primary-color);
  font-size: 1.8em;
}

.quote-name {
  font-family: Poppins;
  font-weight: bold;
  color: white;
}

/* Contact Us Section */
.contact-us-section {
  background-color: var(--secondary-color);
  padding: 30px;
}

.contact-items {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.input-item {
  padding: 10px 30px;
  font-family: Poppins;
}

.submit-btn {
  padding: 10px 30px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  outline: none;
  transition: all 500ms;
}

.submit-btn:hover {
  transition: all 500ms;
  transform: scale(1.2);
}

.contact-us-title {
  color: white;
  font-family: Poppins;
  font-weight: bold;
  font-size: 1.2em;
  margin: 15px 0px;
}

.contact-item-list {
  list-style: none;
  color: var(--tri-color);
  line-height: 1.6em;
}
/* FOOTER */
footer {
  background-color: var(--primary-color);
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-info {
  font-weight: bold;
  font-family: Poppins;
  color: white;
}

.footer-social-icon {
  color: white;
  background-color: var(--secondary-color);
  padding: 20px;
  border-radius: 50%;
  margin: 0px 10px;
  font-size: 1.5em;
  transition: all 500ms;
}

.footer-social-icon:hover {
  transition: all 500ms;
  color: var(--secondary-color);
  background-color: white;
}

/* MEDIA QURIES */
@media (min-width: 1px) and (max-width: 750px) {
  .navbar-links {
    display: none;
  }

  .hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
  }

  .hero-img {
    order: 1;
    width: 100%;
    height: 20vh;
    object-fit: cover;
  }

  .hero-info {
    order: 2;
  }

  .navbar-trigger {
    display: inline-flex;
  }

  .service-items {
    flex-wrap: wrap;
    height: 100%;
    margin-top: 50px;
    gap: 20px;
  }

  .results-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
  }

  .results-img {
    width: 100vw;
    height: 50vh;
    object-fit: contain;
  }

  .results-info {
    width: 100%;
    margin: 15px 0px;
  }

  footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    gap: 20px;
    /* margin: 20px; */
  }

  .brand-logo {
    font-size: 1.2em;
  }
}

@media (min-width: 1px) and (max-width: 800px) {
  .quote-items {
    flex-wrap: wrap;
    gap: 15px;
    margin: 50px 0px;
  }

  .contact-items {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .contact-us-form {
    order: 1;
  }

  .contact-us-item {
    order: 2;
  }
}
