@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");

:root {
  --main-color: #d3ad7f;
  --secondary-color: #fff;
  --black: #13131a;
  --bg: #010103;
  --border: 0.1rem solid rgba(255, 255, 255, 0.3);
  --cart-hover: #dfded0;
}

* {
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  text-transform: capitalize;
  transition: 0.2s linear;
}

/* ---> loading-screen Start <--- */

.loading-screen {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.loader {
  font-size: 5rem;
  color: var(--main-color);
  margin-bottom: 15px;
}

.loader i {
  animation: pulse 1.5s ease-in-out infinite, rotate 2s linear infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.8);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loading-screen {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--cart-hover);
  opacity: 1;
  transition: opacity 1s ease-in-out;
}

.loading-screen.fadeOut {
  opacity: 0;
}
.loading-screen p {
  font-size: 2rem;
  color: var(--main-color);
}

/* ---> loading-screen End <--- */

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-padding-top: 9rem;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
}

section {
  padding: 2rem 7%;
}

html::-webkit-scrollbar {
  width: 0.8rem;
}

html::-webkit-scrollbar-track {
  background: transparent;
}

html::-webkit-scrollbar-thumb {
  background-color: var(--secondary-color);
  border-radius: 5rem;
}

body {
  background: var(--bg);
}

/* Scrill top Start */
.scroll-up {
  position: fixed;
  right: 2rem;
  bottom: 3rem;
  z-index: 999;
  cursor: pointer;
  opacity: 0;
}
.scroll-up i {
  font-size: 4rem;
  color: var(--main-color);
}
.scroll-up i:hover {
  transform: scale(1.1);
}
/* Scrill top End */

input {
  border: none;
  outline: none;
}

.heading {
  text-align: center;
  color: var(--secondary-color);
  text-transform: uppercase;
  padding-bottom: 3rem;
  font-size: 4rem;
  margin-top: 4rem;
}

.heading span {
  color: var(--main-color);
  text-transform: uppercase;
}

.btn {
  margin-top: 1rem;
  display: inline-block;
  padding: 0.9rem 3rem;
  font-size: 1.7rem;
  color: var(--secondary-color);
  background-color: var(--main-color);
  cursor: pointer;
  border: 0.2rem solid var(--main-color);
  border-radius: 0.5rem;
}

.btn:hover {
  background-color: transparent;
  color: var(--main-color);
  font-weight: bolder;
  border-radius: 0.8rem;
  letter-spacing: 0.05rem;
}

.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: 9999;
}
/* LOGO Start */
/* .header .logo img {
  height: 5rem;
  width: 5rem;
  border-radius: 50%;
  object-fit: cover;
} */
.header .logo i {
  font-size: 2.5rem;
  color: var(--main-color);
  cursor: pointer;
}
.header .logo:hover i {
  color: var(--secondary-color);
  transform: scale(1.2);
}
/* LOGO End */

.header .navbar a {
  margin: 0 1rem;
  font-size: 1.6rem;
  color: var(--secondary-color);
}
.header .navbar a.active {
  color: var(--main-color);
}

.header .navbar a:hover {
  color: var(--main-color);
  font-weight: 900;
  letter-spacing: 0.03rem;
}

.header .icons div,
.header .icons .language {
  color: var(--secondary-color);
  cursor: pointer;
  font-size: 2.5rem;
  margin-left: 2rem;
}

.header .icons div:hover {
  color: var(--main-color);
}

#menu-btn {
  display: none;
}

.header .search-form {
  position: absolute;
  top: 115%;
  right: 7%;
  background-color: var(--secondary-color);
  width: 50rem;
  display: flex;
  align-items: center;
  transform: scaleY(0);
  transform-origin: top;
}

.header .search-form.active {
  transform: scaleY(1);
}

.header .search-form input {
  height: 100%;
  width: 100%;
  font-size: 1.6rem;
  color: var(--black);
  padding: 1rem;
  text-transform: none;
}

.header .search-form label {
  cursor: pointer;
  font-size: 2.2rem;
  margin-right: 1.5rem;
  color: var(--black);
}

.header .search-form:hover label {
  color: var(--main-color);
}

.header .cart-items-container {
  position: absolute;
  top: 100%;
  right: 0;
  height: calc(100vh - 9.5rem);
  width: 35rem;
  background-color: var(--secondary-color);
  padding: 0 1.5rem;
  transform: scaleY(0);
  transform-origin: top;
}

.header .cart-items-container.active {
  transform: scaleY(1);
}

.header .cart-items-container .cart-item {
  position: relative;
  margin: 2rem 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header .cart-items-container .cart-item .fa-trash-can {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  cursor: pointer;
  color: var(--black);
}

.header .cart-items-container .cart-item .fa-trash-can:hover {
  color: var(--main-color);
  transform: scale(1.2);
}

.header .cart-items-container .cart-item img {
  width: 7rem;
  height: 6rem;
  border-radius: 0.75rem;
  object-fit: cover;
}

.header .cart-items-container .cart-item .content h3 {
  font: 2rem;
  color: var(--black);
  padding-bottom: 0.6rem;
}

.header .cart-items-container .cart-item .content .price {
  font-size: 1.5rem;
  color: var(--main-color);
  font-weight: 500;
}

.header .cart-items-container .btn {
  width: 100%;
  text-align: center;
}

/* Home Section Start  */
.home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url(../images/home.jpg) no-repeat;
  background-size: cover;
}

.home .content {
  max-width: 60rem;
  z-index: 2;
}

.home .content h3 {
  font-size: 6rem;
  text-transform: uppercase;
  color: var(--secondary-color);
}

.home .content p {
  font-size: 2rem;
  font-weight: lighter;
  line-height: 1.8;
  padding: 1rem 0;
  color: #eee;

  text-shadow: 0px 0px 6px black;
}

/* Home Section End  */
/* About Section Start */
.about .row {
  display: flex;
  align-items: center;
  background-color: var(--black);
  flex-wrap: wrap;
  border-radius: 1.5rem;
}

.about .row .image {
  flex: 1 1 45rem;
}

.about .row .image img {
  width: 100%;
  border-radius: 1.5rem;
}

.about .row .content {
  flex: 1 1 45rem;
  padding: 2rem;
}

.about .row .content h3 {
  font-size: 3rem;
  color: var(--secondary-color);
}

.about .row .content p {
  font-style: 1.6rem;
  color: #ccc;
  padding: 1rem 0;
  line-height: 1.8;
}

/* About Section End */
/* menu Section Start */
.menu .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 1.5rem;
}

.menu .box-container .box {
  padding: 5rem;
  text-align: center;
  border: var(--border);
}

.menu .box-container .box img {
  height: 20rem;
  width: 20rem;
  border-radius: 50%;
  object-fit: cover;
}

.menu .box-container .box h3 {
  font-size: 2rem;
  color: var(--secondary-color);
  padding: 1rem 0;
}

.menu .box-container .box .price {
  font-size: 2.5rem;
  color: var(--secondary-color);
  padding: 0.5rem 0;
}

.menu .box-container .box .price span {
  font-size: 1.5rem;
  text-decoration: line-through;
  font-weight: lighter;
}

.menu .box-container .box:hover {
  background-color: var(--cart-hover);
}

.menu .box-container .box:hover > * {
  color: var(--black);
}

/* menu Section End */
/* Products Section start  */
.products .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 1.5rem;
}

.products .box-container .box {
  text-align: center;
  border: var(--border);
  padding: 2rem;
}

.products .box-container .box .icon a {
  color: var(--secondary-color);
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  font-size: 2rem;
  border: var(--border);
  margin: 0.3rem;
}

.products .box-container .box .icon a:hover {
  background-color: var(--cart-hover);
  color: var(--black);
}

.products .box-container .box .image {
  padding: 2.5rem 0;
}

.products .box-container .box .image img {
  max-width: 25rem;
  height: 25rem;
}

.products .box-container .box .content h3 {
  color: var(--secondary-color);
}

.products .box-container .box .content .stars {
  padding: 1.5rem;
}

.products .box-container .box .content .stars i {
  font-size: 1.7rem;
  color: var(--main-color);
}

.products .box-container .box .content .price {
  color: var(--secondary-color);
  font-size: 2.5rem;
}

.products .box-container .box .content .price span {
  font-size: 1.5rem;
  text-decoration: line-through;
  font-weight: lighter;
}

/* Products Section End  */
/* Review Section Start */
.review .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 1.5rem;
}

.review .box-container .box {
  border: var(--border);
  text-align: center;
  padding: 3rem 2rem;
}
.review .box-container .box p {
  color: #ccc;
  font-size: 1.5rem;
  line-height: 1.8;
  padding: 0 0 2.5rem;
}
.review .box-container .box p .quote {
  color: var(--main-color);
  font-size: 1.5rem;
  padding: 0 0.5rem;
  text-align: justify;
}
.review .box-container .box .user {
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  object-fit: cover;
}
.review .box-container .box h3 {
  padding: 1rem 0;
  font-size: 2rem;
  color: var(--secondary-color);
}

.review .box-container .box .stars i {
  font-size: 1.5rem;
  color: var(--main-color);
}

/* Review Section End */
/* contact Section Start */
.contact .row {
  display: flex;
  background-color: var(--bg);
  flex-wrap: wrap;
  gap: 1rem;
}
.contact .row .map {
  flex: 1 1 45rem;
  width: 100%;
  min-height: 40rem;
}
.contact .row form {
  background-color: var(--black);
  flex: 1 1 45rem;
  text-align: center;
  padding: 5rem 2rem;
}
.contact .row form h3 {
  text-transform: uppercase;
  font-size: 3.5rem;
  color: var(--secondary-color);
}
.contact .row form .inputBox {
  display: flex;
  align-items: center;
  margin: 2rem 0;
  background-color: var(--bg);
  border: var(--border);
}
.contact .row form .inputBox span {
  color: var(--secondary-color);
  font-size: 2.6rem;
  padding-left: 2rem;
}
.contact .row form .inputBox:hover span {
  color: var(--main-color);
  font-size: 2.7rem;
}
.contact .row form .inputBox input {
  font-size: 1.7rem;
  width: 100%;
  padding: 2rem;
  color: var(--secondary-color);
  text-transform: none;
  background-color: transparent;
}
/* contact Section End */
/* blogs Start */
.blogs .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 1.5rem;
}
.blogs .box-container .box {
  border: var(--border);
}
.blogs .box-container .box .image {
  height: 25rem;
  width: 100%;
  overflow: hidden;
}
.blogs .box-container .box .image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.blogs .box-container .box:hover .image img {
  transform: scale(1.1);
}
.blogs .box-container .box .content {
  padding: 2rem;
}
.blogs .box-container .box .content .title {
  font-size: 2.5rem;
  line-height: 1.5;
  color: var(--secondary-color);
}
.blogs .box-container .box:hover .content .title {
  color: var(--main-color);
}
.blogs .box-container .box .content span {
  color: var(--main-color);
  display: block;
  padding-top: 1rem;
  font-size: 1rem;
}
.blogs .box-container .box .content p {
  color: #ccc;
  font-size: 1.6rem;
  line-height: 1.8;
  padding: 1rem 0;
}
/* blogs End */
/* Footer Start */
.footer {
  background-color: var(--black);
  text-align: center;
}
.footer .share {
  padding: 1rem;
}
.footer .share a {
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  font-size: 2.8rem;
  color: var(--secondary-color);
  border: var(--border);
  margin: 0.3rem;
  border-radius: 50%;
}
.footer .share a:hover {
  background-color: var(--main-color);
}
.footer .links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 2rem 0;
  gap: 1.5rem;
}
.footer .links a {
  color: var(--secondary-color);
  padding: 0.7rem 2rem;
  font-size: 2rem;
  border: var(--border);
}
.footer .links a.active {
  color: var(--main-color);
  border-color: var(--main-color);
}
.footer .links a:hover {
  background-color: var(--main-color);
  font-weight: bolder;
}
.footer .links a.active:hover {
  color: var(--secondary-color);
}
.footer .credit {
  color: var(--secondary-color);
  font-size: 2rem;
  font-weight: lighter;
  padding: 1.5rem;
}
.footer .credit span {
  color: var(--main-color);
}

/* Footer End */

/* Media queries Start */
@media (max-width: 991px) {
  html {
    font-size: 55%;
  }

  section {
    padding: 2rem;
  }

  .header {
    padding: 1.5rem 2rem;
  }
}

@media (max-width: 768px) {
  #menu-btn {
    display: inline-block;
  }

  .header .navbar {
    position: absolute;
    top: 100%;
    right: 0;
    width: 30rem;
    background-color: var(--secondary-color);
    text-align: center;
    transform: scaleY(0);
    transform-origin: top;
  }

  .header .navbar.active {
    transform: scaleY(1);
  }

  .header .navbar a {
    display: block;
    margin: 1.5rem;
    padding: 0.5rem;
    color: var(--black);
    font-size: 2rem;
  }

  .header .navbar a:hover {
    background-color: var(--main-color);
    color: var(--secondary-color);
    border: none;
  }

  .header .search-form {
    width: 90%;
    right: 2rem;
  }
  .header .cart-items-container {
    width: 93%;
  }

  .home {
    background-position: center;
    justify-content: center;
    text-align: center;
  }

  .home .content h3 {
    font-size: 4.5rem;
  }

  .home .content p {
    font-size: 1.5rem;
  }
}

@media (max-width: 450px) {
  html {
    font-size: 50%;
  }
}

/* Media queries End */
