@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500&display=swap");

:root {
  --main-color: #d3ad7f;
  --black: #13131a;
  --bg: #010103;
  --border: 0.1rem solid rgba(225, 225, 225, 0.3);
}

* {
  font-family: "Rajdhani", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  text-transform: capitalize;
  transition: 0.2s linear;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-padding-top: 9rem;
  scroll-behavior: smooth;
}

html::-webkit-scrollbar {
  width: 0.8rem;
}

html::-webkit-scrollbar-track {
  background: transparent;
}

html::-webkit-scrollbar-thumb {
  background: #fff;
  border-radius: 0.5rem;
}

body {
  background: var(--bg);
}

section {
  padding: 2rem 7%;
}

.heading {
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  padding-bottom: 3.6rem;
  font-size: 4rem;
}
.heading span {
  color: var(--main-color);
  text-transform: uppercase;
}

.header {
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 7%;
  border-bottom: var(--border);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header .logo img {
  height: 6rem;
}

.header .navbar a {
  margin: 0 1rem;
  font-size: 2rem;
  color: #fff;
}

.header .navbar a:hover {
  color: var(--main-color);
  border-bottom: 0.2rem solid var(--main-color);
  padding-bottom: 0.6rem;
}

.header .icons div {
  color: #fff;
  cursor: pointer;
  font-size: 2.6rem;
  margin-left: 2rem;
}

.header .icons div:hover {
  color: var(--main-color);
}

#menu-btn {
  display: none;
}

/*media queries*/

@media (max-width: 992px) {
  html {
    font-size: 56%;
  }
  .header {
    padding: 1.6rem 2rem;
  }
  section {
    padding: 2rem;
  }
}

@media (max-width: 992px) {
  #menu-btn {
    display: inline-block;
  }
  .header .navbar {
    position: absolute;
    top: 100%;
    right: -100%;
    background: #fff;
    width: 32rem;
    height: calc(100vh - 9.6rem);
  }
  .header .navbar.active {
    right: 0;
  }
  .header .navbar a {
    color: var(--black);
    display: block;
    margin: 1.6rem;
    padding: 0.6rem;
    font-size: 2rem;
  }
  .home {
    background-position: left;
    justify-content: center;
    text-align: center;
  }
  .home .content h3 {
    font-size: 4.4rem;
  }
  .home .content p {
    font-size: 1.4rem;
  }
}

.home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url(./images/bg-1.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}

.home .content {
  max-width: 60rem;
}

.home .content h3 {
  font-size: 6rem;
  text-transform: uppercase;
  color: #fff;
}

.home .content p {
  font-size: 2rem;
  font-weight: bold;
  line-height: 2;
  padding: 2rem 0;
  color: #d6a377;
}

.btn {
  margin-top: 1rem;
  display: inline-block;
  padding: 0.8rem 3rem;
  font-size: 1.8rem;
  color: #fff;
  background: var(--main-color);
  cursor: pointer;
}

.btn:hover {
  letter-spacing: 0.2rem;
}

.about .row {
  display: flex;
  align-items: center;
  background: var(--black);
  flex-wrap: wrap;
}

.about .row .image {
  flex: 1 1 45rem;
}

.about .row .image img {
  width: 100%;
}

.about .row .content {
  flex: 1 1 45rem;
  padding: 2rem;
}

.about .row .content h3 {
  font-size: 4rem;
  color: #fff;
}

.about .row .content h4 {
  font-size: 3.6rem;
  color: #fff;
}

.about .row .content p {
  font-size: 2rem;
  color: #ccc;
  padding: 2rem 0;
  line-height: 1.8rem;
}

.staff .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 1.5rem;
}

.staff .box-container .box {
  padding: 5rem;
  text-align: center;
  border: var(--border);
}

.staff .box-container .box img {
  height: 10rem;
}

.staff .box-container .box h3 {
  font-size: 2rem;
  padding: 1rem 0;
  color: var(--main-color);
}

.staff .box-container .box .post {
  font-size: 2.2rem;
  padding: 0.6rem 0;
  color: #fff;
}

.staff .box-container .box:hover {
  background: #fff;
}

.staff .box-container .box:hover > * {
  color: var(--black);
}

.review .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 1.5rem;
}

.review .box-container .box {
  border: var(--border);
  padding: 3rem 2rem;
  text-align: center;
}

.review .box-container .box p {
  font-size: 1.5rem;
  line-height: 1.8rem;
  color: #ccc;
  padding: 2rem 0;
}

.review .box-container .box .user {
  height: 7rem;
  width: 7rem;
  border-radius: 50%;
  object-fit: cover;
}

.review .box-container .box h3 {
  padding: 1rem 0;
  font-size: 2rem;
  color: #fff;
}

.review .box-container .box .stars i {
  font-size: 1.5rem;
  color: var(--main-color);
}

.footer {
  background: var(--black);
  text-align: center;
}

.footer h3 {
  padding: 1rem 0;
  height: 2rem;
  line-height: 1.8rem;
  font-size: 2rem;
  color: var(--main-color);
}

.footer .share {
  padding: 1rem 0;
}

.footer .share a {
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  font-size: 2rem;
  color: #fff;
  border: var(--border);
  margin-top: 2rem;
  margin-left: 0.4rem;
  margin-right: 0.4rem;
}

.footer .share a:hover {
  background-color: var(--main-color);
}

.footer .credit {
  font-size: 2rem;
  color: #fff;
  font-weight: lighter;
  padding: 1.6rem;
}

.footer .credit a {
  color: var(--main-color);
}
