


@import url(responsive.css);


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}
body{
    height:fit-content;
}
nav {
  width: 100%;
  display: flex;
  position: relative;
  margin: auto;
  margin-bottom: 0;
}
nav a {
  text-decoration: none;
  color: black;
}

nav.top .container {
  display: flex;
  width: 90%;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  flex-wrap: nowrap;
  margin: 10px auto;
}

/*  mobile menu button  */

button.menu {
  z-index: 100;
  width: fit-content;
  padding: 5px 30px;
  background-color: black;
  border: none;
  color: white;
  border-radius: 3px;
  position: absolute;
  left: 5px;
  cursor: pointer;
  display: none;
}
nav.top .container .logo {
  font-size: 15px;
}

nav.top .container .contact {
  width: fit-content;
}

nav.top .container .contact a {
  background-color: black;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  transition: 0.3s ease;
}

nav.top .container .contact a:hover {
  opacity: 0.9;
  background-color: rgb(52, 44, 44);
}

/* navlinks */

nav.navlinks {
  width: 80%;
  margin: 0 auto;
  /*box-shadow: 0px -1px 15px grey ;*/
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}

nav.navlinks button {
  background-color: black;
  width: 100%;
  position: absolute;
  color: white;
  border: none;
  cursor: pointer;
  padding: 10px 0;
  display: none;
  bottom: 0;
}

nav.navlinks ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 50px;
  align-items: center;
  width: fit-content;
}

nav.navlinks ul li {
  width: 100px;
  text-align: center;
}

nav.navlinks ul li a {
  transition: 0.3s ease;
  width: 100%;
  height: 100%;
  display: block;
  font-weight: 100;
}

nav.navlinks ul li a::after {
  content: "";
  background-color: black;
  color: black;
  display: block;
  height: 2px;
  width: 0px;
  transition: 0.3s ease;
  margin-top: 5px;
}

nav.navlinks ul li a:hover::after {
  width: 100%;
}

/*  HERO PAGE   */

section.hero{
    width: 100%;
    margin-top: 50px;
    color: white;
}
section.hero .container {
    width: 80%;
    margin: 10px auto;
    height: 80vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url(images/trolley.jpeg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    border-radius: 5px;
}

section.hero .container .text {
    text-align: center;
    margin-bottom: 50px;
    width: 80%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

section.hero .container .text h2{
    font-size: 40px;
    color: blanchedalmond;
}

section.hero .container .cta {
    display: flex;
    width: 50%;
    margin:0px auto;
    justify-content: space-around;
}

section.hero .container .cta a{
    color: white;
    text-decoration: none;
    background-color: black;
    padding: 5px 20px;
    border-radius: 3px;
    transition: 0.3s ease;
    font-weight: 600;
}
section.hero .container .cta a:hover {
    background-color: white;
    color: black;
}

section.hero .container .cta a:last-of-type{
    background-color: white;
    color:black;
}
section.hero .container .cta a:last-of-type:hover {
    background-color: black;
    color: white;
}

section.hero .container .line {
    width: 50%;
    height:1px;
    background-color:grey;
    margin:20px auto;
    margin-top: 100px;

}

/*  SELLING SYLING  */

section.selling {
    width: 100%;
    margin-top: 40px;
    margin-bottom: 40px;
    
}
.selling .container {
    width: 80%;
    margin: 20px auto;
    display: flex;
    box-sizing: border-box;
    border-radius: 5px;
   
}
.selling .container img {
    width: 80%;
    object-fit: contain;
    border-radius: 5px;
    margin-top: -0px;
}
.selling .container .text-container{
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 80%;
    margin-right: 0;
    box-sizing: border-box;
    padding: 20px 0 0 20px;
}
.selling .container .text-container h2{
    font-size: 40px;
    text-align: center;
    color: grey;
}
.selling .container .text-container p{
    width: 60%;
}
.selling .container .text-container .benefits {
  margin-left: 0px;
}
.selling .container .text-container .benefits p{
    font-weight: 600;
}
.selling .container .text-container .benefits ul {
    list-style: none;
    margin-top: 10px;
    display: grid;
    gap: 5px;
}
.selling .container .text-container .cta{
   margin: 10px auto;
    width: fit-content;
}

.selling .container .text-container .cta a{
    text-decoration: none;
    background-color: grey;
    padding: 10px 40px;
    color: white;
}

/*  BUYING STYLES   */

section.buying{
    width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
}

.buying .container {
    width: 80%;
    margin:10px auto;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 20px;
}

.buying .container img {
    width: 50%;
    border-radius: 5px;
}

.buying .container .textwrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.buying .container .textwrap h2 {
    font-size: 40px;
    color: grey;
}

.buying .container .textwrap .cta a{
    text-decoration: none;
    background-color: grey;
    color: white;
    padding: 5px 30px;
    border-radius: 2px;
}

.title{
    width: 100%;
}
.title h2{
    font-size: 50px;
    width: 50%;
    text-align: center;
    margin: auto;
    margin-bottom: 50px;
    color: grey;
}
.title h2::after {
    content: "";
    display: block;
    height: 1px;
    background-color: black;
    color: black;
    width: 100%;
    line-height: 0;
    margin-top: 0;
}

/*  products styling*/

div.products {
    width: 100%;
    overflow: hidden;
    margin-bottom: 50px;
    height: fit-content;
}
.products .wrapper {
    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;
    align-content:center;
    gap:20px;
    height: fit-content;
}
.products .container{
    display:grid;
    width: 80%;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin: 0 auto;
    justify-items: center;
    gap: 20px;
    align-items: center;
}

.products .container .item {
    width: 250px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: center;
    background-color: wheat;
    border-radius: 5px;
    position: relative;

}
.products .container .item a.image-link {
    width: 100%;
    overflow: hidden;
    display: block;
    height: 200px;
    border-radius: 5px;
}

.products .container .item a.image-link img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    transition: 0.3s ease;
    overflow: hidden;
}

.products .container .item a.image-link img:hover {
    scale: 1.24;
}

.products .container .item .name-price {
    width: 90%;
    text-align: center;
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
    background-color: wheat;
    margin-top: -20px;
    border-radius: 3px;
    z-index: 100;
}
.products .container .item .name-price p:not(p.price){
    color: orange;
    padding-top: 5px;
    font-size: 18px;
}
.products .container .item .name-price p.price {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}
.products .container .item .name-price p.price s {
    font-size: 12px;
    color: grey;
    font-style: italic;
}

.products .container .item .action {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
    align-items: center;
}

.products .container .item .action span:first-of-type{
    color: orange;
    font-size: 20px;
}

.products .container .item .action span:last-of-type a{
    color: white;
    background-color: black;
    padding: 3px 20px;
    text-decoration: none;
    border-radius: 2px;
    font-size: 12px;
    transition: 0.3s ease;
}

.products .container .item .action span:last-of-type a:hover {
    background-color: grey;
    color: black;
}

.products .wrapper .cta {
    width: fit-content;
    margin-left: auto;
    margin-right: 10px;
}

.products .wrapper .cta a{
    text-decoration: none;
    background-color:white;
    color: black;
    box-shadow: -1px 5px 5px grey;
    padding: 10px 30px;
    text-align: center;

}

section.contactUs {
    width: 100%;
}

.contactUs .container {
    width: 80%;
    overflow-x: hidden;
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.contactUs .container .banner {
    width: 50%;
    overflow: hidden;
}

.contactUs .container .banner img {
    width: 100%;
    border-radius: 5px;
    height: 500px;
    object-fit: cover;
}

.contactUs .container .form {
    width: fit-content;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.contactUs .container .form form#myForm {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
    
}

.contactUs .container .form form#myForm .names {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.contactUs .container .form form#myForm .names input{
    border: none;
    background-color: black;
    color: white;
    padding: 10px 30px;
    text-align: center;
    outline: none;
    border-radius: 3px;
}

.contactUs .container .form form#myForm .cmts {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: center;
    width: 100%;
    text-align: center;
}

.contactUs .container .form form#myForm .cmts input {
    border: none;
    background-color: black;
    color: white;
    border-radius: 3px;
    outline: none;
    padding:10px 30px ;
    text-align: center;
}

.contactUs .container .form form#myForm .cmts textarea {
    resize: none;
    height: 150px;
    width: 450px;
    border: none;
    text-align: center;
    color: black;
    background-color: antiquewhite;
    outline: none;
}

.contactUs .container .form form#myForm .cmts textarea:focus{
    border: none;
}
.contactUs .container .form form#myForm input[type = 'submit'] {
    background-color: black;
    border-radius: 3px;
    cursor: pointer;
    margin-top: 10px;
}
.contactUs .container .form  .socials {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 50px;
}
.contactUs .container .form  .socials a {
    width: 50px;
    overflow: hidden;
}

.contactUs .container .form  .socials a img{
    width: 50px;
}

footer {
    background-color:black;
    padding: 10px 0;
}

footer .container {
    display:flex;
    justify-content:space-evenly;
    align-items:center;
}

footer .container ul {
    list-style-type:none;
    
}
footer .container ul li a {
    color: grey;
    text-decoration: none;
}


footer .container .location iframe {
    width:200px;
    height: 100px;
}