@import url("https://fonts.googleapis.com/css2?family=Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap");

/* Preloader */
#preloader{

  background: #fff url(../Images/loader.gif) no-repeat center center;
  background-size: 30%;
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 100;
}



/* Scroll Bar */

/* width */
::-webkit-scrollbar {
  width: 6px;

}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #f9e4d9;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #ff511c;
  border-radius: 10px;
}







* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Spartan", sans-serif;
}

body {
  background: #ffeae021;
}

h1 {
  font-size: 50px;
  line-height: 64px;
  color: #222;
}

h2 {
  font-size: 46px;
  line-height: 54px;
  color: #222;
  padding-top: 10px;
}

h4 {
  font-size: 20px;
  color: #222;
}

h6 {
  font-weight: 700;
  font-size: 12px;
}

p {
  font-size: 16px;
  color: #465b52;
  padding-bottom: 10px;
}

.section-p1 {
  padding: 40px 80px;
}

.section-m1 {
  margin: 40px 0;
}

body {
  width: 100%;
}

/* Header Start */

#header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 80px;
  background: #f9e4d9;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  z-index: 99;
  position: sticky;
  top: 0;
  left: 0;
}

#header .logo{
  width: 100%;
  height: 50px;
}


#navbar {
  display: flex;
  align-items: center;
  justify-content: center;
}

#navbar li {
  list-style: none;
  padding: 0 20px;
  position: relative;
}

#navbar li a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  transition: 0.3s ease;
}

#navbar li a:hover,
#navbar li a.active {
  color: #ff511c;
}

#navbar li a.active::after,
#navbar li a:hover::after {
  content: "";
  width: 30%;
  height: 2px;
  background: #ff511c;
  position: absolute;
  bottom: -4px;
  left: 20px;
}

#mobile {
  display: none;
  align-items: center;
}

#close {
  display: none;
}

/* Home Page */

#hero {
  /* background-image: url("../Images/hero4.png"); */
  background: #ffeae0;
  width: 100%;
  height: 90vh;
  background-size: cover;
  background-position: top 25% right 0;
  padding: 0 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
}

#hero h4 {
  padding-bottom: 15px;
}
#hero h1 {
  color: #ff511c;
}


#hero button {
  color: #088178;
  border: 0;
  padding: 14px 80px 14px 65px;

  background: -webkit-linear-gradient(
    0deg,
    rgba(214, 109, 28, 0.785) 0%,
    rgb(222, 159, 10) 100%
  );
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  background-repeat: no-repeat;
  font-weight: 700;
  font-size: 15px;
}

#hero img {
  position: absolute;
  top: 30%;
  right: 60px;
  transform: translateY(-50%);
  width: 350px;
  animation: rotate 10s linear infinite;
  overflow: hidden;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#feature {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

#feature .fe-box {
  width: 180px;
  text-align: center;
  padding: 25px 15px;
  box-shadow: 20px 20px 34px rgba(0, 0, 0, 0.03);
  border: 1px solid #cce7d0;
  border-radius: 20px;
  margin: 15px 0;
}

#feature .fe-box:hover {
  box-shadow: 10px 10px 54px rgba(70, 62, 221, 0.1);
}

#feature .fe-box img {
  /* height: 100px; */
  width: 100px;
  /* margin-bottom:10px; */
}

#feature .fe-box h6 {
  display: inline-block;
  padding: 9px 40px 6px 40px;
  line-height: 1;
  border-radius: 4px;
  color: #088178;
  background-color: #fddde4;
}

#product1 {
  text-align: center;
}

#product1 .pro-container {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  flex-wrap: wrap;
}

#product1 .pro {
  width: 23%;
  min-width: 250px;
  padding: 10px 12px;
  border: 1px solid #cce7d0;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 20px 20px 30px rgba(0, 0 0, 0.02);
  margin: 15px 0;
  transition: 0.2s ease;
}

#product1 .pro:hover {
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.06);
}

#product1 .pro img {
  width: 100%;
  border-radius: 20px;
}

#product1 .pro .des {
  text-align: start;
  padding: 10px 0;
}

#product1 .pro .des span {
  color: #606063;
  font-size: 12px;
}

#product1 .pro .des h5 {
  padding-top: 7px;
  color: #1a1a1a;
  font-size: 14px;
}

#product1 .pro .des i {
  font-size: 12px;
  color: rgb(245, 181, 25);
}

#banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-image: url("../Images/banner1.jpg");
  width: 100%;
  height: 40vh;
  background-size: cover;
  background-position: center;
}

#banner h4 {
  color: #fff;
}

#banner h2 {
  color: #fff;
  font-size: 30px;
  padding: 10px 0;
}

#banner h2 span {
  color: #ef3636;
}

button.normal {
  font-size: 14px;
  font-weight: 600;
  padding: 15px 30px;
  color: #000;
  background-color: #fff;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  outline: none;
  transition: 0.2s;
}

#banner button:hover {
  background: #ef3636;
  color: #fff;
}

#sm-banner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#sm-banner .banner-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-image: url("../Images/cafe.jpg");
  min-width: 530px;
  height: 50vh;
  background-size: cover;
  background-position: center;
  padding: 30px;
}

#sm-banner .banner-box2 {
  background-image: url("../Images/clubs.jpg");
}

#sm-banner .banner-box2 h4 {
  color: #ffffff;
}
#sm-banner .banner-box2 h2 {
  color: #ffffff;
}
#sm-banner .banner-box2 span {
  color: #ffffff;
}

#sm-banner h2 {
  color: #050505;
  font-size: 28px;
  font-weight: 800;
}

#sm-banner span {
  color: #050505;
  font-size: 14px;
  font-weight: 500;
  padding-bottom: 15px;
}

footer {
  background: #ffeae0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  height: 62vh;
}

footer .col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
}

footer .logo {
  margin-bottom: 30px;
  width: 200px;
  height: 60px;
  
}

/* .section-p1 .logo{
  width: 200px;
  height: 36px;
} */

footer h4 {
  font-size: 14px;
  padding-bottom: 20px;
}

footer p {
  font-size: 13px;
  margin: 0 0 8px 0;
}

footer a {
  font-size: 13px;
  text-decoration: none;
  color: #222;
  margin-bottom: 10px;
}

.app {
  width: 100px;
  margin-bottom: 10px;
}

footer .follow i {
  color: #465b52;
  padding-right: 4px;
  cursor: pointer;
}

footer .install img {
  margin: 10px 0 15px 0;
}

footer .follow i:hover,
footer a:hover {
  color: #ff511c;
}

footer .copyright {
  width: 100%;
  text-align: center;
  
}


footer .copyright p {
  
  font-weight: bold;
  color: #000;
}


/* Shop Page */

#page-header{
  background-image: url("../Images/b4.jpg");
  width: 100%;
  height: 40vh;
  background-size: cover ;
  justify-content: center;
  text-align: left;
  padding-left: 100px;
  padding-top: 50px;
  flex-direction: column;
}



#page-header h2,
#page-header p{

  color: #ffffff;
  padding: 10px;
  
}

#pagination{
  text-align: center;
}

#pagination a{
  text-decoration: none;
  background-color: #ef3636 ;
  padding: 15px 20px;
  border-radius: 4px;
  color: #fff;
  font-weight: 600;
}

#pagination a i{
  font-size: 16px;
  font-weight: 600;
}



/* About Us page */


.common-heading-about{
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: -40px;
  text-transform: capitalize;
  margin-left: 40%;
  margin-top: 10px;

}

.about-us{
  padding: 80px 0px;
}

.container_about{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.row{
  display: flex;
  flex-wrap: wrap;
}

.flex{
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 20px;
}

.about-us h2{
  font-size: 45px;
  margin-bottom: 20px;
  color: #333;
}

.about-us h3{
  font-size: 22px;
  color: #888;
  margin-bottom: 8px;
}

.about-us p{
  font-size: 18px;
  line-height: 1.5;
  color: #333;
  margin-bottom: 10px;
}

.about-us img{
  display: block;
  max-width: 100%;
  height: 400px;
  margin: 0 auto;
  border-radius: 20px;
}

.social-links{
  margin-bottom: 20px;
}

.social-links a{
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  margin-right: 10px;
  color: #fff;
  background-color: #333;
  box-shadow: 0 2px 5px rgb(0,0,0,0.3);
  transition: all 0.4s ease;
}

.social-links a:hover{
  transform: translateY(-3px);
}

.btn{
  text-decoration: none;
  color: #fff;
  display: inline-block;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 5px;
  background-color: #333;
  box-shadow: 0 2px 5px rgb(0,0,0,0.3);

  transition: all 0.4s ease;
}
.btn:hover{
  transform: translateY(-3px);

}




/* Contact as page */

.common-heading {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: capitalize;
  margin-left: 40%;
  margin-top: 10px;
  
}


.container {
  display: flex;
}

.map-container {
  flex: 1;
  margin-right: 20px;
  margin-left: 100px ;
  margin-top: 10px; 
}

.form-container {
  flex: 1;
  
}

iframe {
  width: 100%;
  height: 450px;
  border: 0;
}

form{
  display: flex;
  flex-direction: column;
  padding: 2vw 4vw;
  width: 90%;
  max-width: 500px;
  border-radius: 10px;
}

form h3{

  color: #000;
  font-weight: 800;
  margin-bottom: 20px;
}

form input, form textarea{

  border: 0;
  margin: 10px 0;
  padding: 20px;
  outline: none;
  background: #f5f5f5;
  font-size: 16px;
}

form button{
  padding: 15px;
  background: #ff511c;
  color: #fff;
  font-size: 18px;
  border: 0;
  outline: none;
  cursor: pointer;
  width: 150px;
  margin: 20px auto 0;
  border-radius: 30px;

}


/* End of contact page */






@media screen and (max-width: 799px) {

  .section-p1{
    padding: 40px 40px;
  }

  #navbar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    right: -300px;
    height: 100vh;
    width: 300px;
    background-color: #e3e6f3;
    box-shadow: 0 40px 60px rgba(0, 0, 0, 0.1);
    padding: 80px 0 0 10px;
    transition: 0.3s;
  }

  #navbar.active {
    right: 0px;
  }

  #navbar li {
    margin-bottom: 25px;
  }

  #mobile {
    display: flex;
    align-items: center;
  }

  #mobile {
    color: #1a1a1a;
    font-size: 24px;
    padding-left: 20px;
  }

  #close {
    display: initial;
    position: absolute;
    top: 30px;
    left: 30px;
    color: #222;
    font-size: 24px;
  }

  #hero {

    height: 90vh;
    padding: 0 80px;
    background-position: top 30% right 30%;
  }

  #hero img {
    position: absolute;
    top: -9%;
    /* right: 0px; */
    transform: translateY(-50%);
    width: 350px;
    animation: rotate 10s linear infinite;
    overflow: hidden;
  }

  #feature{
    justify-content: center;
  }
  #feature .fe-box {
   
    margin: 15px 15px;
  }


  #product1 .pro-
  {
    justify-content: center;
  }

  #product1 .pro{
    margin: 15px 10px;
  }

  #banner{
    height: 20vh;
  }
  #sm-banner .banner-box{
    min-width: 100%;
    height: 30vh;
  }

  .row{
    flex-direction: column;
  }
  .flex{
    max-width: 100%;
  }
  .about-us h2{
    font-size: 31px;
  }
  .about-us p{
    font-size: 16px;
  }

  .social-links a{
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    margin-right: 5px;
  }
  .btn{
    font-size: 16px;
    padding: 8px 16px;
    margin-bottom:30px ;
  }


  /* Contact Us */
  .common-heading {
    font-size: 2rem; /* Decrease font size for smaller screens */
    text-align: center;
  }

  /* Container */
  .container {
    flex-direction: column; /* Stack elements vertically on smaller screens */
  }

  /* Map Container */
  .map-container {
    margin: 0; /* Remove margin for smaller screens */
  }

  /* Form Container */
  .form-container {
    margin-top: 20px;
  }

  /* Form Styling */
  form {
    width: 100%; /* Full width for the form on smaller screens */
    max-width: none; /* Remove max-width */
  }

  form button {
    width: 100%; /* Full width button for smaller screens */
  }



  /* Footer */
  footer {
    background: #ffeae0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    height: 90vh;
  }


}



@media screen and (min-width: 428px) {
  /* Adjust styles for screens with a minimum width of 428px (iPhone 13 Pro Max) */

  #header .logo{
  width: 100%;
  height: 35px;
}
  /* Common Heading */
  .common-heading {
    font-size: 2.5rem; /* Increase font size for larger screens */
    margin-bottom: 1.5rem; /* Increase spacing */
  }

  /* Form Styling */
  form {
    padding: 2vw 4vw; /* Adjust padding for larger screens */
  }

  form h3 {
    font-size: 24px; /* Increase font size for larger screens */
  }

  form input,
  form textarea {
    padding: 24px; /* Increase padding for larger screens */
  }

  form button {
    padding: 18px; /* Decrease button padding slightly for larger screens */
  }
  
}





@media (max-width: 477px){

  .section-p1{
    padding: 20px;
  }

  #header{
    padding: 10px 30px;
  }

  h1{
    font-size: 50px;
   
  }
  
  h2{
    font-size: 32px;
  }

  #hero{
    padding: 0 20px;
    background-position: 55%;
  }

  #feature{
    justify-content: space-between;
  }

  #feature .fe-box{
    width: 155px;
    margin: 0 0 15px 0;
  }

  #product1 .pro{
    width: 100%;
  }

  #banner{
    height: 40vh;
  }

  #sm-banner .banner-box{
    height: 40vh;
  }

  footer .copyright{
    text-align: start;
  }

}





/* Common Styling */
.container_about {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

/* Rest of your CSS remains the same */

