@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100,300,400,500,700&display=swap");
:root {
  --main-color: #f37fae;
  --black: #13131a;
  --bg: #010103;
  --border: 0.1rem solid rgba(255, 255, 255, 0.3);
}

* {
  font-family: "Roboto", 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 {
  scroll-behavior: smooth;
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-padding-top: 9rem;
}
/* .navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
} */

html::-webkit-scrollbar {
  width: 0.3rem;
}
html::-webkit-scrollbar-track {
  background: transparent;
}
html::-webkit-scrollbar-thumb {
  background: var(--main-color);
  border-radius: 5rem;
}
body {
  background: var(--bg);
}
section {
  padding: 2rem 7%;
}
.heading {
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  padding-bottom: 3.5rem;
  font-size: 4rem;
}
.heading span {
  color: var(--main-color);
  text-transform: uppercase;
}
header {
  position: fixed;
  width: 100%;
  top: 0;
  right: 0;
  z-index: 1000;
  padding: 15px 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s ease;
  background: black;
}
.logo img {
  width: 7%;
  height: 10%;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: flex;
}
.logo h1 {
  width: 75%;
  height: auto;
  color: #ffc1da;
  font-size: 3rem;
}
.logo h1 span {
  width: 75%;
  height: auto;
  color: #4d55cc;
  font-size: 3rem;
}
.navlist {
  display: flex;
  list-style: none;
}
.navbar ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  text-align: center;
  list-style: none;
  flex-grow: 1;
}
.navbar ul li {
  padding-left: 26%;
}
.navbar .logo {
  margin-left: 0.8%;
  display: -webkit-inline-box;
}
.navlist a {
  display: contents;
  margin: 0 55px;
  color: #fff;
  font-size: 2.5rem;
  transition: all 0.6s ease;
  font-weight: 700;
}
.navlist a:hover {
  color: var(--main-color);
}
.right-content {
  display: flex;
  align-items: center;
  color: #fff;
}
.nav-btn {
  display: inline-block;
  padding: 5px 10px;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 7px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.6s ease;
}
.nav-btn:hover {
  transform: translateY(-3px);
  border: 2px solid var(--main-color);
  color: var(--main-color);
}

#menu-icon {
  font-size: 30px;
  z-index: 10001;
  cursor: pointer;
  margin-left: 30px;
  display: none;
}
@media (max-width: 1770px) {
  header {
    padding: 0% 3%;
  }
}
@media (max-width: 1370px) {
  section {
    padding: 0.4%;
  }
}
@media (max-width: 1150px) {
  .btn1 {
    padding: 5px 10px;
  }
}
@media (max-width: 950px) {
  #menu-icon {
    display: block;
  }
  .navlist {
    position: absolute;
    width: 100%;
    height: 100vh;
    padding: 100px 50px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 100%;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(30px);
    transition: all 0.6s ease-in-out;
  }
  .navlist.open {
    left: 0px;
  }
  .navbar ul {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: center;
    list-style: none;
    flex-grow: 1;
  }
  .navbar ul li {
    padding: 2%;
  }
}
@media (max-width: 920px) {
  .home {
    grid-template-columns: 1fr;
    height: auto;
  }
  .home-text {
    padding-top: 130px;
  }
  .home-img {
    height: 300px;
    width: 300px;
    margin: 0 auto;
  }
  .hero-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}
@media (max-width: 570px) {
  .home {
    height: 100vh;
  }
  .home-img {
    height: 170px;
    width: 170px;
    margin: 0 auto;
  }
}
@media (max-width: 440px) {
  .home-text h5 {
    font-size: 15px;
  }
  .home-img {
    height: 130px;
    width: 130px;
    margin: 0 auto;
  }
}
@media (max-width: 400px) {
  .home-img {
    height: 100px;
    width: 100px;
    margin: 0 auto;
  }
}
.home {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url(https://www.solidbackgrounds.com/images/3840x2160/3840x2160-black-solid-color-background.jpg);
  background-size: cover;
  background-position: center;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 2rem;
  color: #ffc1da;
}
.home-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 50%;
  padding: 20px;
}
.home-text h1 {
  font-size: 5.2rem;
  font-weight: 900;
  margin: 15px 0;
  margin-left: 50px;
}
.home-text h1:nth-child(1) {
  color: transparent;
  -webkit-text-stroke: 1px #ffc1da;
}
.home-text h1 span {
  color: #4d55cc;
}
.home-text p {
  width: 90%;
  font-size: 2.5rem;
  font-weight: 200;
  margin: 15px 0;
  margin-left: 50px;
  color: #4d55cc;
}
.wrapper {
  display: inline-flex;
}
.wrapper .static-text {
  color: #fff;
  font-size: 2.8rem;
  font-weight: 200;
  margin-left: 50px;
}
.wrapper .dynamic-text {
  color: white;
  margin-left: 10%;
  /* height: 40%; */
  line-height: 120%;
  overflow: hidden;
  font-size: 300%;
}
.amazon {
  color: white;
  font-weight: bold;
  font-style: italic;
}

.noon {
  color: yellow;
  font-weight: bold;
  font-style: italic;
}

.carrefour {
  color: blue;
  font-weight: bold;
  font-style: italic;
}

.main-home {
  display: flex;
  align-items: center;
}
.btn2 {
  margin-top: 10px;
  display: inline-block;
  padding: 10px 15px;
  background: transparent;
  border: 2px solid var(--main-color);
  border-radius: 7px;
  color: var(--main-color);
  font-size: 15px;
  font-weight: 600;
  transition: all 0.6s ease;
  margin-left: 50px;
}
.btn2:hover {
  transform: scale(0.9);
}
.logo-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 30px;
  gap: 250px;
  background-color: #cfcfcf;
  flex-wrap: wrap;
}

.logo-section img {
  max-width: 150px;
  height: auto;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.logo-section img:hover {
  transform: scale(1.05);
}

/* about section starts  */
.about .row {
  display: flex;
  align-items: center;
  background: var(--black);
  flex-wrap: wrap;
}
.about .row .image {
  flex: 1 1 15rem;
}
.about .row .image img {
  width: 100%;
}
.about .row .content {
  flex: 1 1 45rem;
  padding: 2rem;
}
.about .row .content h3 {
  font-size: 3rem;
  color: #fff;
}
.about .row .content p {
  font-size: 1.6rem;
  color: #ccc;
  padding: 1rem 0;
  line-height: 1.8;
}
.btn {
  display: inline-block;
  padding: 10px 10px;
  background: transparent;
  border: 2px solid var(--main-color);
  border-radius: 7px;
  color: var(--main-color);
  font-size: 15px;
  font-weight: 600;
  transition: all 0.6s ease;
  margin-top: 17px;
}
.btn:hover {
  background: var(--main-color);
  color: black;
  transform: scale(0.9);
}
.menu .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(40rem, 1fr));
  gap: 1.5rem;
}
.menu .box-container .box1 {
  display: block;
}
.menu .box-container .box2 {
  display: block;
}
.menu .box-container .box1 img {
  width: 85%;
  height: 59%;
  padding: 2%;
}
.menu .box-container .box2 img {
  width: 98%;
  padding: 2%;
}
.menu .box-container .box1 span h3 {
  color: rgb(185, 185, 185);
  font-size: 180%;
  font-style: italic;
  padding-right: 8%;
  padding-top: 2%;
}
.menu .box-container .box2 span h3 {
  color: rgb(185, 185, 185);
  font-size: 180%;
  font-style: italic;
  padding-right: 8%;
  padding-top: 2%;
}
.menu .box-container .box {
  padding: 5rem;
  text-align: center;
  border: var(--border);
  border-radius: 2%;
}
.menu .box-container .box img {
  height: 20rem;
}
.menu .box-container .box h3 {
  color: #fff;
  font-size: 1.5rem;
  padding: 1.9rem 0;
}
.menu .box-container .box .price {
  color: #fff;
  font-size: 2.5rem;
  padding: 1.7rem 0;
}
.menu .box-container .box .price span {
  font-size: 1.5rem;
  text-decoration: line-through;
}
.menu .box-container .box:hover {
  background: #fff;
  cursor: pointer;
}
.menu .box-container .box:hover > * {
  color: var(--black);
}
.contact .row {
  display: flex;
  background: var(--black);
  flex-wrap: wrap;
  gap: 1rem;
}
.contact .row .map {
  flex: 1 1 45rem;
  width: 100%;
  object-fit: cover;
}
.contact .row form {
  flex: 1 1 45rem;
  padding: 5rem 2rem;
  text-align: center;
}
.contact .row form h3 {
  text-transform: uppercase;
  font-size: 3.5rem;
  color: #fff;
}
.contact .row form .inputBox {
  display: flex;
  align-items: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
  background: var(--bg);
  border: var(--border);
}
.contact .row form .inputBox span {
  color: #fff;
  font-size: 2rem;
  padding-left: 2rem;
}
.contact .row form .inputBox input {
  width: 100%;
  padding: 2rem;
  font-size: 1.7rem;
  color: #fff;
  text-transform: none;
  background: none;
}
.footer {
  background: var(--black);
  text-align: center;
}
.footer .share {
  padding: 0rem 0;
}
.footer .share a {
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  font-size: 2rem;
  color: #fff;
  border: var(--border);
  margin: 3rem;
  border-radius: 50%;
}
.footer .share a:hover {
  background-color: var(--main-color);
  color: black;
}
.footer .links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 2rem 0;
  gap: 1rem;
}
.footer .links a {
  margin: 10px;
  padding: 1rem 2rem;
  color: #fff;
  border: var(--border);
  font-size: 2rem;
  border-radius: 7px;
  font-weight: 600;
}
.footer .links a:hover {
  background-color: var(--main-color);
  color: black;
  transform: scale(0.9);
}
.footer .credit {
  font-size: 2rem;
  color: #fff;
  font-weight: lighter;
  padding: 1.5rem;
}
.footer .credit span {
  color: var(--main-color);
}
.btm_line{
  color: wheat;
}

/* Animation section starts  */
#autoShow {
  animation: autoShowanime;
  animation-timeline: view(70% 5%);
}

@keyframes autoShowanime {
  from {
    opacity: 0;
    transform: translateY(200px) scale(0.3);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
