
* {
  font-family: sans-serif;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
:root {
  background-color: black;
}

/*NAVIGATION BAR */

.main {
  display: flex;
  align-items: center;
  background-color: white;
  padding: 10px 20px;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
}
.brand img {
  max-height: 100px;
  width: auto;
}
.brand h1 {
  font-size: 20px;
  margin-left: 10px;
}
.nav ul {
  display: flex;
  margin-left: auto;
  list-style: none;
  gap: 20px;
}
.nav ul li a {
  text-decoration: none;
  color: black;
  font-size: 20px;
  margin: 0 20px;
  padding: 15px 20px;
  transition: 0.5s ease;  
}
.nav ul li:hover {
  background-color: black;
  padding: 20px 25px;
  transition: 0.5s ease;
}
.nav ul li a:hover {
  color: white;
}
.cart {
  order: 3;
  position: relative;
  margin-left: 10px;
}
.cart a {
  background-color: transparent;
  color: black;
  padding: 0;
  position: relative;
  display: inline-block;
}
.cart i {
  font-size: 22px;
}
#cart-count {
  position: absolute;
  top: -18px;
  right: 0;
  transform: translateX(50%);
  background: red;
  color: white;
  font-size: 12px;
  padding: 3px 6px;
  border-radius: 50%;
  font-weight: bold;
  line-height: 1;
}
.menu {
  display: none;
}


/* HOME SECTION*/

.container {
  display: flex;
  align-items: center;
  padding: 30px;
  width: 100%;
}
.left {
  display: flex;
  align-items: center;
  gap: 30px;
}
.image {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.left img {
  height: auto;
  width: 700px;
}
.left .shopBtn {
  margin-top: 20px;
  font-size: 20px;
  background-color: orange;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  transition: 0.5s ease;
}
.left input:hover {
  background-color: green;
  color: white;
  transition: 0.5s ease;
}
.right {
  max-width: 800px
}
.right h2 {
  font-size: 50px;
  color: white;
}
.right p {
  color: white;
  font-size: 30px;
  margin-bottom: 10px;
  padding: 10px 0;
}

/*ABOUT SECTION */

.about-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 20px;
    background-color: white;
}
.about-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}
.about-left {
    flex: 1;
}
.about-left h2 {
    font-size: 50px;
    text-align: left;
    margin-bottom: 10px;
}
.about-left p {
    font-size: 20px;
    line-height: 1.6;
}
.about-right {
    flex: 1;
    display: flex;
    justify-content: center;
}
.about-right img {
    height: auto;
    width: 700px;
}
.youtube {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}
.youtube iframe {
    width: 100%;
    max-width: 560px;
    height: 315px;
}

/*SERVICES SECTION*/

.services {
  width: 100%;
  text-align: center;
  margin:20px 0;
}
.services h2 {
  font-size: 50px;
  color: white;
}
.card {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.card-item {
  background-color: white;
  width: calc(33.33% - 20px);
  padding: 20px;
}
.card-item img {
  width: 100%;
  height: auto;
}
.card-item p {
  text-align: center;
  font-size: 15px;
  margin: 10px 0;
}
.card-item input {
  display: block;
  margin: 10px auto;
  background-color: red;
  color: white;
  padding: 10px 20px;
  font-size: 18px;
  border: none;
  cursor: pointer;
}
/*CONTACT SECTION*/

.contact{
  display: flex;
  justify-content: center;
  font-size: 50px;
  color: white;
  width: 100%;
  padding: 20px 0;
  margin: 10px 0;
}
.list-item {
  width: 200px;              
}
.list-item ul {
  list-style: none;
  text-align: center;         
}
.list-item ul li {
  margin-bottom: 10px;
}
.list-item li a {
  color: white;
  text-decoration: none;
}
#form-message {
    margin-top: 10px;
    padding: 10px;
    display: none;
    color: white;
    font-weight: bold;
}

.success {
    background-color: green;
}

.error {
    background-color: red;
}
.form {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.form > div {
  flex: 1;
}
.input-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 400px;
}
.input-form input,
.input-form textarea {
  width: 100%;
  padding: 10px;
  margin: 10px;
  box-sizing: border-box;
}
.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  background-color: red;
  color: white;
  padding: 10px;
}
.submit-btn:hover {
  background-color: green;
}

/*FOOTER SECTION*/

.footer-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  padding: 20px;
}
.footer p {
  font-size: 25px;
  color: white;
}
.footer a {
  font-size: 25px;
  color: white;
  text-decoration: none;
}

/* MEDIA QUERY FOR TABLET */

@media screen and (max-width: 1024px) {
  *{
    max-width: 100%;
  }
  /* NAVIGATION SECTION */

  .nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
  .brand {
    order: 1;
    display: flex;
    align-items: center;
    flex: 1;
  }
  .brand img {
    max-height: 60px;
    width: auto;
  }

  .brand h1 {
    font-size: 14px;
    margin-left: 10px;
    text-align: center;
  }
  .menu {
    display: block;
    order: 3;
    margin-left: 10px;
    cursor: pointer;
  }
  .menu i {
    font-size: 25px;
    margin: 10px;
  }
  .cart {
    order: 2;
    margin-left: 10px;
  }
  .nav ul {
    order: 4;
    width: 100%;
    flex-direction: column;
    display: none;
    align-items: center;
    margin-top: 10px;
  }
  .nav ul li {
    margin: 10px 0;
    text-align: center;
  }

  /* HOME SECTION */

  .left {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  .image img {
    height: 500px;
    width: auto;
  }
  .right h2 {
    font-size: 60px;
    text-align: center;
    margin: 10px 0;
  }
  .right p {
    font-size: 35px;
    text-align: center;
    margin: 10px 0;
  }

/* ABOUT SECTION*/

  .about-top {
    display: flex;
    flex-direction: column;
    }

    .about-left h2 {
        text-align: center;
        font-size: 60px;
    }
    .about-left p {
      text-align: center;
      font-size: 30px;
      margin-top: 20px;
    }
    .about-right {
    margin-top: 20px;
    }
    .about-right img {
        height: 500px;
        width: auto;
    }
    .youtube h2 {
      font-size: 40px;
      align-items: center;
    }

/* SERVICES SECTION */

  .card {   
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  .card-item {
    background-color: white;
    width: calc(50% - 20px);
    padding: 20px;
    width: 100%;
    margin: 0 20px;
  }
  .card-item p {
    margin: 30px 0;
  }

  .services {
    width: 100%;
    text-align: center;
    margin:20px 0;
  }
  .services h2 {
    font-size: 50px;
    color: white;
  }
  .card-item {
    
  }
  .card-item img {
    width: 100%;
    height: auto;
  }
  .card-item p {
    text-align: center;
    font-size: 15px;
    margin: 10px 0;
  }
  .card-item input {
    display: block;
    margin: 10px auto;
    background-color: red;
    color: white;
    padding: 10px 20px;
    font-size: 18px;
    border: none;
    cursor: pointer;
  }

/* CONTACT SECTION */

  .form {
    flex-direction: column;
    align-items: center;
  }
  .input-form {
    width: 100%;
    max-width: 500px;
  }
  .form input,
  .form textarea,
  .form button {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: none;
    outline: none;
    border border-radius: 5px;
  }
  .submit-btn {
    font-size: 20px;
    font-weight: bold;
    background-color: red;
    color: white;
    padding: 10px;
  }
  .list-item ul {
    list-style: none;
    padding: 0;
  }

.contact{
  display: flex;
  justify-content: center;
  font-size: 50px;
  color: white;
  width: 100%;
  padding: 20px 0;
  margin: 10px 0;
}
.list-item {
 width: 100%;          
 text-align: center;
}
.list-item ul {
  list-style: none;
  text-align: center;         
}
.list-item li {
  margin: 10px 0;            
}
.list-item li a {
  color: white;
  text-decoration: none;
  font-size: 25px;
  padding: 20px;
}
#form-message {
    margin-top: 10px;
    padding: 10px;
    display: none;
    color: white;
    font-weight: bold;
}

.success {
    background-color: green;
}

.error {
    background-color: red;
}
.form {
  
}

.form > div {
  flex: 1;
}

  /*FOOTER SECTION*/

.footer-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  padding: 20px;
}
.footer p {
  font-size: 20px;
  color: white;
  text-align: center;
}
.footer a {
  font-size: 20px;
  color: white;
  text-decoration: none;
  }
}

/*MEDIA QUERY FOR PHONE */

@media screen and (max-width: 768px) {

  * {
    max-width: 100%;
  }

/* NAVIGATION SECTION */

  .nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
  .brand {
    order: 1;
    display: flex;
    align-items: center;
    flex: 1;
  }
  .brand img {
    max-height: 45px;
    width: auto;
  }

  .brand h1 {
    font-size: 14px;
    margin-left: 10px;
    text-align: center;
  }
  .menu {
    display: block;
    order: 3;
    margin-left: 10px;
    cursor: pointer;
  }
  .menu i {
    font-size: 25px;
    margin: 10px;
  }
  .cart {
    order: 2;
    margin-left: 10px;
  }
  .nav ul {
    order: 4;
    width: 100%;
    flex-direction: column;
    display: none;
    align-items: center;
    margin-top: 10px;
  }
  .nav ul li {
    margin: 10px 0;
    text-align: center;
  }

/* HOME SECTION */

  .left {
    display: flex;
    flex-wrap: wrap;
  }

  .image img {
    height: 300px;
    width: auto;
  }
  .right h2 {
    font-size: 34px;
    margin: 10px 0;
  }
  .right p {
    font-size: 25px;
    margin: 10px 0;
  }

/* ABOUT SECTION*/

  .about-top {
    display: flex;
    flex-direction: column;
    }

    .about-left h2 {
        text-align: center;
        font-size: 25px;
    }
    .about-left p {
      text-align: center;
      font-size: 20px;
    }
    .about-right {
    margin-top: 20px;
    }
    .about-right img {
        height: 300px;
        width: auto;
    }

/* SERVICES SECTION */

  .services {
    text-align: center;
    margin:20px 0;
  }
   .services h2 {
    font-size: 50px;
    color: white;
  }
  .card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
     gap: 20px;
  }
  .card-item {
    background-color: white;
    padding: 20px;
    width: 100%;
    margin: 0 20px;
  }
  .card-item p {
    text-align: center;
    font-size: 15px;
    margin: 10px 0;
    margin: 30px 0;
  }
  .card-item img {
    width: 100%;
    height: auto;
  }
  .card-item input {
    display: block;
    margin: 10px auto;
    background-color: red;
    color: white;
    padding: 10px 20px;
    font-size: 18px;
    border: none;
    cursor: pointer;
  }

/* CONTACT SECTION */
  
  .contact-container {
    padding: 20px 10px;
  }
  .contact{
    display: flex;
    justify-content: center;
    font-size: 50px;
    color: white;
    width: 100%;
    padding: 20px 0;
    margin: 10px 0;
  }
  .list-item {
    display: flex;
    justify-content: center;    
    align-items: center;             
}
  .list-item ul {
    list-style: none;         
    text-align: center;  
  }
  .list-item li {
  margin: 10px 0;            
  }
.list-item li a {
  color: white;
  text-decoration: none;
  font-size: 20px;
  }
  .form {
    margin: 0 10px;
    gap: 15px;
  }
  .input-form {
   width: 100%;
  }
  .input-form input,
  .input-form textarea {
    width: 100%;
    padding: 12px;
    border: none;
    outline: none;
  }
  .form input,
  .form textarea
  .form button {
    width: 100%;
    margin-bottom: 10px;
  }

#form-message {
    margin-top: 10px;
    padding: 10px;
    display: none;
    color: white;
    font-weight: bold;
}

.success {
    background-color: green;
}

.error {
    background-color: red;
}
.form {
  display: flex;
  gap: 20px;
}

.form > div {
  flex: 1;
}

.input-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 0 20px;
}

.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  background-color: red;
  color: white;
  padding: 10px;
}

/* FOOTER SECTION */
  .footer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    padding: 20px;
  }
  .footer p {
    font-size: 15px;
    color: white;
    text-align: center;
  }

.footer a {
  font-size: 15px;
  color: white;
  text-decoration: none;
  }
}