
@import url(responsive.css);
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}
body {
  overflow-x: hidden;
}
::root {
  --text-color: rgb(33, 29, 29);
  --decoration: none;
  --center: 20px auto;
  --fontsize-large: 30px;
  --txtsm: 12px;
  --shadow: -5px 5px 5px grey;
}
a {
  text-decoration: var(--decoration);
  color: black;
}
nav.navbar {
  width: 100%;
  display: flex;
  flex-direction: row;
  position: fixed;
  top: 0;
  left: 0;
  background-color: transparent;
  box-shadow: 0px 0px 10px grey;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  z-index: 10000000;
}

nav.navbar .container {
  width: 90%;
  margin: 20px auto;
  display: flex;
  justify-content: space-between;
  align-items: end;
}

nav .container .navlinks {
  width: fit-content;
}
.navlinks ul {
  list-style-type: none;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 40px;
}

.navlinks ul li a {
  font-weight: 600;
  transition: 0.3s ease-in-out;
}
.navlinks ul li a::after {
  content: "";
  width: 0%;
  height: 2px;
  background-color: black;
  display: block;
  transition: 0.3s ease-in-out;
}
.navlinks ul li a:hover::after {
  width: 100%;
}

.navlinks ul li a:hover {
  color: aqua;
}

/*menu btn*/

button.menu-btn {
  display: none;
  background: transparent;
  border: none;
  outline: none;
  width: 30px;
  cursor: pointer;
  z-index: 99999;
}
button.menu-btn div.btn-line {
  background-color: gray;
  width: 100%;
  height: 2px;
  margin-bottom: 5px;
}

/*mobile menu*/

div.mobile-menu {
  width: 200px;
  background-color: rgb(216, 169, 169);
  z-index: 2;
  position: fixed;
  color: white;
  border-radius: 5px;
  right: -300px;
  top: 0px;
  transition: 0.3s ease-in-out;
  height: 100vh;
  display: none;
}
.mobile-menu.right {
  right: 0;
}
div.mobile-menu ul {
  list-style-type: none;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  justify-content: right;
  align-content: center;
  gap: 20px;
  color: white;
  padding: 20px 0;
  text-align: right;
}
div.mobile-menu ul li {
  width: 80%;
  text-align: center;
  margin: auto;
  height: fit-content;
}
div.mobile-menu ul li a {
  font-weight: 600;
  width: 100%;
}

div.mobile-menu ul li.cart-btn a {
  color: white;
  width: 100%;
  height: 100%;
}

div.mobile-menu ul li.cart-btn {
  background-color: black;
  color: white;
  width: 50%;
  padding: 5px 20px;
  color: white;
  border-radius: 2px;
}

/* HERO SECTION */
section.hero-page {
  margin-top: 70px;
}

.hero-page .container {
  display: flex;
  /* background:linear-gradient(rgba(96, 66, 66, 0.7), rgba(0,0,0,0.7)) ,url(images/heropic.jpg);*/
  background: url(images/heropic.jpg);
  background-position: 90% 30%;
  height: 550px;
  justify-content: center;
  align-content: center;
  flex-direction: column;
  align-items: start;
  background-repeat: no-repeat;
  background-size: contain;
}
.hero-page .container .hero-text {
  display: flex;
  flex-direction: column;
  padding: 5px 40px;
  margin-top: 100px;
  margin-bottom: auto;
  gap: 20px;
  width: 50%;
}

.hero-text span {
  opacity: 0.7;
}
.hero-text h2 {
  font-size: 50px;
  word-spacing: 1px;
}
.hero-text .cta {
  margin-top: 30px;
}

.hero-text .cta a {
  border: 1px solid black;
  padding: 10px 20px;
  margin-right: 20px;
  background-color: black;
  color: white;
  border-radius: 3px;
}
.hero-text .cta a:first-of-type {
  transition: 0.3s ease;
}
.hero-text .cta a:first-of-type:hover {
  background-color: grey;
  color: black;
  border: 1px solid white;
  border-radius: 0;
}
.hero-text .cta a:last-of-type {
  background-color: white;
  text-align: center;
  border: none;
  color: black;
  border-bottom: 1px solid black;
  border-radius: 0;
  font-weight: 600;
  transition: 0.3s ease;
}
.hero-text .cta a:last-of-type:hover {
  background-color: black;
  color: white;
}
.hero-page .container .banner-image {
  width: 50%;
  overflow: hidden;
  height: 40%;
}

/* BRIDGE SECTION */
section.bridge {
  width: 100%;
  text-align: center;
  height: 500px;
  margin-top: 50px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)),
    url(images/section-bridge.jpg);
  background-position: center bottom;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 50px;
  margin-bottom: 50px;
}

.bridge h1 {
  color: white;
  font-size: 60px;
}

.bridge a {
  background-color: orange;
  padding: 10px 50px;
}
/*PRODUCTS*/

section.products {
  width: 100%;
  margin: 0;
  box-sizing: border-box;
  padding-bottom: 70px;
  overflow: hidden;
}

.products .container {
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-bottom: 20px;
}

.products .container .heading {
  width: fit-content;
}
.heading h1 {
  font-size: 30px;
  text-align: center;
}
.heading h1::after {
  content: "";
  width: 100px;
  height: 2px;
  background-color: grey;
  display: block;
  margin: auto;
  margin-top: 10px;
}
.products .container .product-container {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  margin-top: 20px;
  justify-content: center;
}
.products .container .product-container .card {
  width: 200px;
  overflow: hidden;
  height: 300px;
  position: relative;
  text-align: center;
  box-shadow: 0 0 20px 3px rgb(221, 214, 214);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  align-content: center;
  padding-bottom: 10px;
  margin: 0;
}
.products .container .product-container .card img {
  width: 100%;
  height: 200px !important;
  border-radius: 3px;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.products .container .product-container .card img:hover {
  transform: scale(0.75);
  z-index: 100;
}

.products .container .product-container .card .card-desc {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  margin-top: 10px;
}

.products .container .product-container .card .card-desc h2 {
  font-size: 15px;
  font-family: cursive;
}

.products .container .product-container .card .card-desc p {
  color: red;
}
.products .container .product-container .card .card-desc p span {
  color: grey;
  text-decoration: line-through;
  font-style: oblique;
}
.products .container .product-container .card .reduction {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 50px;
  background-color: red;
  font-size: 10px;
  padding: 5px 0;
  color: white;
  border-radius: 3px;
}

.products .container .product-container .card .add {
  padding: 5px 20px;
  font-size: 12px;
  border-radius: 3px;
  cursor: pointer;
}

.products .container .morebtn {
  background-color: black;
  position: absolute;
  right: 20px;
  margin-top: 10px;
  color: white;
  top: 100%;
  padding: 10px 30px;
  background-color: white;
  color: black;
  box-shadow: -5px 5px 5px grey;
  box-sizing: border-box;
  background-color: rgb(226, 72, 72);
  color: white;
  border-radius: 3px;
}

/*  TESTIMONIALS STYLING    */

section.testimonials {
  width: 100%;
  padding: 0 50px 50px;
}

.testimonials .container {
  width: 80%;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  justify-content: center;
  align-content: center;
}

.testimonials .container .testimonial-holder {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  align-content: center;
  gap: 20px;
}

.testimonials .container .testimonial-holder .person {
  width: 400px;
  overflow: hidden;
  display: flex;
  gap: 10px;
  box-shadow: 0px 5px 10px rgb(153, 148, 138);
  padding: 10px 20px;
  border-radius: 3px;
}

.testimonials .container .testimonial-holder .person img {
  width: 50px;
  height: 50px;
  border-radius: 5px;
  object-fit: cover;
}

.testimonials .container .testimonial-holder .person .info {
  text-align: justify;
}

/*  BLOG SECTION    */
section.blogs {
  width: 100%;
  margin-bottom: 50px;
}
.blogs .container {
  width: 80%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
  gap: 40px;
}

.blogs .container .blog-container {
  width: 100%;
  display: flex;
  gap: 50px;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
}
.blogs .container .blog-container .blog-post {
  position: relative;
  width: 300px;
  overflow: hidden;
  box-shadow: 0 5px 10px grey;
  border-radius: 5px;
  height: fit-content;
}
.blogs .container .blog-container .blog-post img {
  height: 250px;
  object-fit: cover;
  width: 100%;
}
.blogs .container .blog-container .blog-post .text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 20px 20px;
  gap: 20px;
  background-color: transparent;
  transform: translateY(-20px);
}
.blogs .container .blog-container .blog-post .text-container h2 {
  font-family: cursive;
  padding: 5px 20px;
  border-radius: 3px;
  background-color: white;
  color: orange;
}

.blogs .container .blog-container .blog-post .text-container p {
  text-align: center;
  word-break: break-all;
  text-align-last: left;
}
.blogs .container .blog-container .blog-post .text-container a {
  background-color: orange;
  padding: 5px 20px;
  color: white;
}
.blogs .container .nav-dots {
  width: 200px;
  background-color: transparent;
  display: flex;
  gap: 50px;
}
.blogs .container .nav-dots .dots {
  background-color: grey;
  width: 100px;
  height: 20px;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 50%;
  transition: 0.3s ease;
}
.blogs .container .nav-dots .dots:hover {
  opacity: 0.7;
}

/*  scrolling bars  */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-thumb {
  background-color: grey;
  height: 20px;
}
::-webkit-scrollbar-track {
  background-color: transparent;
}

/*  contact     us  styles  */
section.contact-us {
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-bottom: 50px;
}
.contact-us .container {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgb(0, 0, 0)),
    url(images/item6.jpg);
  height: 100%;
  background-position: center;
  background-size: cover;
  background-attachment: scroll;
  background-repeat: no-repeat;
  width: 90%;
  margin: auto;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  gap: 50px;
  padding-bottom: 20px;
}
div.form {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}
.form form.myForm {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  color: grey;
}

.form form.myForm .input-elements {
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: center;
  gap: 20px;
}
.form form.myForm .comments {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  gap: 30px;
}

.form form.myForm input {
  width: 400px;
  padding: 10px 30px;
  text-align: center;
  border: none;
  outline: none;
  font-weight: 600;
  font-family: cursive;
  border-radius: 3px;
}

.form form.myForm textarea {
  width: 500px;
  resize: none;
  height: 200px;
  border: none;
  outline: none;
  text-align: center;
  border-radius: 3px;
  font-weight: 600;
  color: rgb(41, 29, 29);
}

.form form.myForm button {
  width: 200px;
  padding: 10px 20px;
  border: none;
  outline: none;
  border-radius: 3px;
  font-weight: 600;
  cursor: pointer;
  background-color: aqua;
}
.container .socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-direction: column;
}

.socials h2 {
  color: white;
}

.socials .platforms {
    width: 100%;
  display: flex;
  gap: 100px;
}
.socials .platforms a {
  color: black;
  background-color: white;
  padding: 10px 20px;
  border-radius: 3px;
  font-weight: 600;
  transition: 0.3s ease;
}

.socials .platforms a:hover{
    background-color: grey;
    color: white;
}

section.footer {
  width: 100%;
  background-color: black;
  color: white;
  padding: 0;
  margin: 0;
}

.footer .container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  text-align: center;
  align-content: center;
  flex-wrap: wrap;
}

.footer .container .policies {
  display: flex;
  padding: 0 30px;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.footer .container .policies a {
  color: grey;
}

.footer .container .newsletter {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px 0;
  justify-content: center;
  align-items: center;
}

.footer .container .newsletter p:first-of-type {
  color: rgb(228, 158, 68);
  font-weight: 600;
  margin-left: 45px;
}
.footer .container .newsletter p:nth-of-type(2) input {
  border: none;
  outline: none;
  padding: 5px 20px;
  border-radius: 3px;
  text-align: center;
}

.footer .container .newsletter p:nth-of-type(3) input {
  padding: 5px 30px;
  border: none;
  outline: none;
  border-radius: 3px;
  font-weight: 600;
  cursor: pointer;
  margin: 0 auto;
  margin-left: 50px;
}

.footer .container .location {
  text-align: center;
}
.footer .container .location .town {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
